Skip to content

Releases: milvus-io/milvus-lite

Release 2.4.11

30 Dec 08:51
6a06843
Compare
Choose a tag to compare

What's Changed

  • Delete some third-party dependencies in #222 #226 #236
  • Support Android @Presburger in #229
  • Support IVF_FLAT index by @junjiejiangjjj in #234
    After creating the IVF_FLAT index, the index will be built when the data exceeds 100,000
    example:
from pymilvus import MilvusClient, DataType

# 1. Set up a Milvus client
client = MilvusClient(
    uri="./milvus_demo.db"
)

# 2. Create schema
# 2.1. Create schema
schema = MilvusClient.create_schema(
    auto_id=False,
    enable_dynamic_field=True,
)

# 2.2. Add fields to schema
schema.add_field(field_name="id", datatype=DataType.INT64, is_primary=True)
schema.add_field(field_name="vector", datatype=DataType.FLOAT_VECTOR, dim=5)

# 3. Create collection
client.create_collection(
    collection_name="customized_setup", 
    schema=schema, 
)
# 4.1. Set up the index parameters
index_params = MilvusClient.prepare_index_params()

# 4.2. Add an index on the vector field.
index_params.add_index(
    field_name="vector",
    metric_type="COSINE",
    index_type="IVF_FLAT",
    index_name="vector_index",
    params={ "nlist": 128 }
)

# 4.3. Create an index file
client.create_index(
    collection_name="customized_setup",
    index_params=index_params
)
  • Fix some bugs

New Contributors

Full Changelog: v2.4.10...v2.4.11

Release 2.4.10

06 Sep 03:51
b4a06f0
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.4.9...v2.4.10

v2.4.9

09 Aug 07:27
77ef99b
Compare
Choose a tag to compare

What's Changed

  • Fix some bugs

Full Changelog: v2.4.8...v2.4.9

Release 2.4.8

03 Jul 03:21
86303b6
Compare
Choose a tag to compare

What's Changed

  • Supports hybrid_search
  • Supports range_search
  • Add migration tool can dump milvus-lite data into a json file, which can be imported into milvus and Zilliz Cloud(the fully managed cloud service for Milvus).

The following example dumps all data from demo_collection collection that's stored in ./milvus_demo.db (Milvus Lite database file)

milvus-lite dump -d ./milvus_demo.db -c demo_collection -p ./data_dir
# ./milvus_demo.db: milvus lite db file
# demo_collection: collection that need to be dumped
#./data_dir : dump file storage dir

Full Changelog: v2.4.7...v2.4.8

Release 2.4.8_rc1

20 Jun 03:57
4d1d986
Compare
Choose a tag to compare

What's Changed

Support hybrid search

Full Changelog: v2.4.7...v2.4.8_rc1

Release 2.4.7

06 Jun 06:39
c08feae
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.4.6...v2.4.7

Release 2.4.6

27 May 09:47
52cd917
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.4.5...v2.4.6

Release 2.4.5

21 May 03:26
89a57e9
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.4.4...v2.4.5

Release v2.4.4

16 May 02:49
49ce8eb
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.4.3...v2.4.4

Release v2.4.3

13 May 11:19
618bd80
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.4.2...v2.4.3