Skip to main content
Version: User Guides (Cloud)

June 2026 Release Notes

2026-06-17

Enhancements

  • Restore to a specific major version — When restoring a cluster from a backup created within the last 30 days, you can now choose which Milvus major version to restore to. For example, restore a 2.5.x backup to a new 2.5.x cluster instead of being forced to upgrade to 2.6.x — critical for disaster recovery scenarios where version consistency matters. For details, refer to Restore from Backup Files and Use Recycle Bin.

  • Description field for clusters, projects, and API keys — You can now add and update a description for your clusters, projects, and API keys via RESTful API, making it easier to organize and identify resources at scale.

  • Multi-vector search in the Console — The Search page in the Zilliz Cloud Console now supports multi-vector search, allowing you to run hybrid searches across multiple vector fields directly from the UI.

2026-06-03

Nullable Vector

Vector fields now support the nullable attribute, making it possible to add a new vector field to an existing collection — a capability many customers have been waiting for. With nullable vectors, you can evolve your schema by adding vector columns after collection creation, then backfill embeddings at your own pace while the collection remains fully operational.

📘Notes

Nullable Vector requires the latest Milvus 2.6.x version on Serving Clusters. On-Demand Clusters running Milvus 3.0.x already support this feature.

This applies to all six vector types — FLOAT_VECTOR, FLOAT16_VECTOR, BFLOAT16_VECTOR, INT8_VECTOR, BINARY_VECTOR, and SPARSE_FLOAT_VECTOR. Key highlights:

  • Add vector fields to existing collections — Use AddCollectionField to add new nullable vector columns online without rebuilding existing data. Existing entities start with NULL vectors and can be backfilled incrementally.

  • Automatic search exclusion — NULL vectors are automatically skipped during vector index building and search with no impact on retrieval quality.

  • Near-zero storage — NULL vectors consume effectively no storage, making it cost-efficient to store entities where embeddings are not yet available.

  • Full workflow coverage — Nullable vectors are supported across Create Collection, Add Field, Data Preview, Import, Backup & Restore, and Migration workflows.

For details, refer to Nullable Fields and Add Fields to an Existing Collection.

Enhancements

  • On-Demand Compute supports Private Endpoint — On-Demand Compute now supports Private Endpoint for secure, private network access to your on-demand search workloads. The setup follows the same workflow as Serving Clusters. For details, refer to Set up a PrivateLink (AWS).

  • Enhanced Data Preview — The Data Preview page now supports upsert for editing individual records in place, one-click insertion of 10, 50, or 100 sample records, and infinite paging for smoother navigation through large datasets.

  • Collection Creation: Redesigned fields section — A more intuitive layout for field configuration, making schema setup faster and easier. For details, refer to the Create a collection - Collection schema section in Manage Collections (Console).