Skip to content

Releases: milvus-io/pymilvus

PyMilvus 2.2.9 Release Notes

02 Jun 11:52
932fc82
Compare
Choose a tag to compare
  • JSON support
  • Dynamic schema
  • Partition key
  • Connection management

PyMilvus 2.2.8 Release Notes

28 Apr 13:30
c100783
Compare
Choose a tag to compare

New Features

  1. [FEATURE]: Has an utility function to parse if the connection is to Zilliz cloud or opensource Milvus
>>> utility.get_server_type(using="default")
"milvus"
  1. List indexes by field name #1386
>>> utility.list_indexes(collection_name, field_name=vec_field)
[vec_field_idx]
  1. [FEATURE]: Remove the logic to fill in the default number of shard when create collection
    PyMilvus doesn't set default shard numbers when creating a new collection.
  2. [FEATURE]: PyMilvus supports using env configs
  • Support uri with username and password:
from pymilvus import connections
uri = "https://username:[email protected]:19530"
connections.connect(uri=uri)
  • Support using MIVLUS_URI env to init default connection alias.
// set MILVUS_URI in env
$ export MILVUS_URI=https://username:[email protected]:19530
>>> from pymilvus import connections
>>> connections.connect()
>>> connections.get_connection_addr("default")
{"address": "exampledomain.com:19530", "user": username}
  • Support reading envs from .env file
# .env.example in https://github.com/milvus-io/pymilvus/blob/master/.env.example
# Please copy this file and rename as .env, pymilvus will read .env file if provided

MILVUS_URI=
# MILVUS_URI=https://username:[email protected]:19530

# Milvus connections configs
MILVUS_CONN_ALIAS=default
MILVUS_CONN_TIMEOUT=10

Bug fixes

PyMilvus 2.2.7 Release Notes

18 Apr 03:10
2b3f18d
Compare
Choose a tag to compare

PyMilvus 2.2.6 Release Notes

13 Apr 09:46
989ae07
Compare
Choose a tag to compare

PyMilvus 2.2.5 Release Notes

11 Apr 06:39
e278b75
Compare
Choose a tag to compare

Support python3.11

PyMilvus 2.2.4 Release Notes

29 Mar 13:24
a1c1dbd
Compare
Choose a tag to compare

PyMilvus 2.2.3 Release Notes

17 Mar 11:14
d61b4dc
Compare
Choose a tag to compare

PyMilvus 2.3.0b1 Release Notes

20 Mar 10:33
21934e0
Compare
Choose a tag to compare
Pre-release

Support GPU

PyMilvus v2.2.2 Release

10 Feb 09:46
bcc3343
Compare
Choose a tag to compare

Fix some bugs

PyMilvus 2.2.1 Releases Notes

15 Dec 08:27
635654e
Compare
Choose a tag to compare

Fix some bugs, improve some search performance