Skip to content

Releases: zilliztech/zilliz-cli

Zilliz CLI v1.3.1

24 Apr 11:08

Choose a tag to compare

Changed

  • BREAKING (human-readable output only) zilliz cluster metrics and
    zilliz collection metrics now render an inline Braille line chart by
    default instead of the pivot table. Each requested metric gets a block with
    a header (name, unit, granularity, time range), a summary line
    (min / max / avg / last), and a line chart. Pass -o table (or
    --output table) explicitly on either command to restore the pre-existing
    pivot-table layout byte-for-byte. The -o json, -o yaml, -o csv,
    -o text, --query, and --no-header paths are untouched -- scripts
    and programmatic consumers that use any of these are unaffected. Narrow
    terminals (< 40 columns of usable width) fall back to a single-line Unicode
    sparkline, and piped / non-TTY output emits no ANSI color. Resolves
    zilliztech/zilliz-cli#2.

Installation

macOS / Linux:

curl -fsSL https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.sh | sh

Windows (PowerShell):

irm https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.ps1 | iex

Platform Binaries

Platform Architecture Asset
Linux x86_64 zilliz-1.3.1-x86_64-unknown-linux-gnu.tar.gz
Linux aarch64 zilliz-1.3.1-aarch64-unknown-linux-gnu.tar.gz
macOS x86_64 zilliz-1.3.1-x86_64-apple-darwin.tar.gz
macOS aarch64 zilliz-1.3.1-aarch64-apple-darwin.tar.gz
Windows x86_64 zilliz-1.3.1-x86_64-pc-windows-msvc.zip

Zilliz CLI v1.3.0

24 Apr 01:53

Choose a tag to compare

Added

  • zilliz login --cn for authenticating against the CN cloud
    (https://api.cloud.zilliz.com.cn). CN login is API-key only (no
    browser/Auth0 flow); the endpoint is persisted to ~/.zilliz/config so
    subsequent commands target CN without extra flags. zilliz logout and a
    non-CN zilliz login clear the persisted endpoint and return to the Global
    default.

Installation

macOS / Linux:

curl -fsSL https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.sh | sh

Windows (PowerShell):

irm https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.ps1 | iex

Platform Binaries

Platform Architecture Asset
Linux x86_64 zilliz-1.3.0-x86_64-unknown-linux-gnu.tar.gz
Linux aarch64 zilliz-1.3.0-aarch64-unknown-linux-gnu.tar.gz
macOS x86_64 zilliz-1.3.0-x86_64-apple-darwin.tar.gz
macOS aarch64 zilliz-1.3.0-aarch64-apple-darwin.tar.gz
Windows x86_64 zilliz-1.3.0-x86_64-pc-windows-msvc.zip

Zilliz CLI v1.2.1

23 Apr 03:39

Choose a tag to compare

Added

  • zilliz history built-in subcommand for viewing and managing local command
    history. Supports list (default last 50, --limit N, --all), search
    (--keyword <term>, case-insensitive), and clear (--force to skip
    confirmation). Output respects the global --output flag (table, json, yaml,
    csv, text).
  • Local command history logging: every CLI invocation is recorded to a per-user
    JSONL file at ~/.zilliz/history/{user_id}.jsonl (falls back to
    anonymous.jsonl when not logged in). Each record captures the full command
    string, user identity, ISO 8601 timestamp, command type
    (resource/builtin/tui), resource, operation, success status, and error
    message. History recording is best-effort and never affects CLI exit status.
  • AND-combined retention policy: records are pruned only when both the total
    count exceeds 10,000 and the record is older than 3 months. Cleanup runs
    on CLI startup, scoped to the current user's file only.

Dependencies

  • Added fs2 0.4 for cross-platform advisory file locking during history
    writes.

Installation

macOS / Linux:

curl -fsSL https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.sh | sh

Windows (PowerShell):

irm https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.ps1 | iex

Platform Binaries

Platform Architecture Asset
Linux x86_64 zilliz-1.2.1-x86_64-unknown-linux-gnu.tar.gz
Linux aarch64 zilliz-1.2.1-aarch64-unknown-linux-gnu.tar.gz
macOS x86_64 zilliz-1.2.1-x86_64-apple-darwin.tar.gz
macOS aarch64 zilliz-1.2.1-aarch64-apple-darwin.tar.gz
Windows x86_64 zilliz-1.2.1-x86_64-pc-windows-msvc.zip

Zilliz CLI v1.2.0

22 Apr 09:25

Choose a tag to compare

Added

  • zilliz billing download-invoice --invoice-id <ID>: download an invoice PDF
    from Zilliz Cloud. Supports --output-file / -o to specify the destination
    file path (auto-appends .pdf if missing) and --dir / -d to save into a
    directory as <invoiceId>.pdf. Existing files are not overwritten; a (1),
    (2), ... suffix is appended instead. Mirrors the Python CLI implementation
    (#5302).

Fixed

  • Resolve clippy::collapsible_match warnings in examples/generate_plugin.rs
    that caused CI failures on Rust 1.95
    (#5302).

Installation

macOS / Linux:

curl -fsSL https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.sh | sh

Windows (PowerShell):

irm https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.ps1 | iex

Platform Binaries

Platform Architecture Asset
Linux x86_64 zilliz-1.2.0-x86_64-unknown-linux-gnu.tar.gz
Linux aarch64 zilliz-1.2.0-aarch64-unknown-linux-gnu.tar.gz
macOS x86_64 zilliz-1.2.0-x86_64-apple-darwin.tar.gz
macOS aarch64 zilliz-1.2.0-aarch64-apple-darwin.tar.gz
Windows x86_64 zilliz-1.2.0-x86_64-pc-windows-msvc.zip

Zilliz CLI v1.1.0

14 Apr 11:16

Choose a tag to compare

Added

  • zilliz collection metrics -c <collectionName> -m <metricName>: query per-collection metrics against
    POST /v2/clusters/{clusterId}/metrics/query with collectionName in the
    request body. Supports the same time-range / granularity flags as
    cluster metrics.
  • New metric aliases for hybrid-search workloads:
    HYBRID_SEARCH_QPS, HYBRID_SEARCH_LATENCY_AVG,
    HYBRID_SEARCH_LATENCY_P99, HYBRID_SEARCH_FAIL_RATE.

Changed

  • Metric map entries now carry a scope tag (Cluster / Collection / Both).
    zilliz collection metrics rejects cluster-only metrics
    (CU_*, REPLICA_COUNT, STORAGE, COLLECTIONS, SLOW_QUERIES,
    READ_VCU, WRITE_VCU) with a clear error.
  • generate-plugin: the generated collection skill now documents
    zilliz collection metrics (flags, scope rules, hybrid-search aliases), and
    the monitoring skill cross-references it. The generator fails fast if the
    collection overlay omits the ## Collection metrics section or the
    monitoring overlay omits the cross-reference.

Installation

macOS / Linux:

curl -fsSL https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.sh | sh

Windows (PowerShell):

irm https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.ps1 | iex

Platform Binaries

Platform Architecture Asset
Linux x86_64 zilliz-1.1.0-x86_64-unknown-linux-gnu.tar.gz
Linux aarch64 zilliz-1.1.0-aarch64-unknown-linux-gnu.tar.gz
macOS x86_64 zilliz-1.1.0-x86_64-apple-darwin.tar.gz
macOS aarch64 zilliz-1.1.0-aarch64-apple-darwin.tar.gz
Windows x86_64 zilliz-1.1.0-x86_64-pc-windows-msvc.zip

Zilliz CLI v1.0.2

09 Apr 06:13

Choose a tag to compare

Zilliz CLI v1.0.2

Installation

macOS / Linux:

curl -fsSL https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.sh | sh

Windows (PowerShell):

irm https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.ps1 | iex

Platform Binaries

Platform Architecture Asset
Linux x86_64 zilliz-1.0.2-x86_64-unknown-linux-gnu.tar.gz
Linux aarch64 zilliz-1.0.2-aarch64-unknown-linux-gnu.tar.gz
macOS x86_64 zilliz-1.0.2-x86_64-apple-darwin.tar.gz
macOS aarch64 zilliz-1.0.2-aarch64-apple-darwin.tar.gz
Windows x86_64 zilliz-1.0.2-x86_64-pc-windows-msvc.zip

Zilliz CLI v1.0.1

09 Apr 03:54

Choose a tag to compare

Zilliz CLI v1.0.1

Installation

macOS / Linux:

curl -fsSL https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.sh | sh

Windows (PowerShell):

irm https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.ps1 | iex

Platform Binaries

Platform Architecture Asset
Linux x86_64 zilliz-1.0.1-x86_64-unknown-linux-gnu.tar.gz
Linux aarch64 zilliz-1.0.1-aarch64-unknown-linux-gnu.tar.gz
macOS x86_64 zilliz-1.0.1-x86_64-apple-darwin.tar.gz
macOS aarch64 zilliz-1.0.1-aarch64-apple-darwin.tar.gz
Windows x86_64 zilliz-1.0.1-x86_64-pc-windows-msvc.zip

Zilliz CLI v1.0.0

09 Apr 03:18

Choose a tag to compare

Zilliz CLI v1.0.0

Installation

curl -fsSL https://github.com/zilliztech/zilliz-cli/releases/latest/download/install.sh | sh

Platform Binaries

Platform Architecture Asset
Linux x86_64 zilliz-1.0.0-x86_64-unknown-linux-gnu.tar.gz
Linux aarch64 zilliz-1.0.0-aarch64-unknown-linux-gnu.tar.gz
macOS x86_64 zilliz-1.0.0-x86_64-apple-darwin.tar.gz
macOS aarch64 zilliz-1.0.0-aarch64-apple-darwin.tar.gz