Skip to content

Latest commit

 

History

History
64 lines (50 loc) · 2.83 KB

Milvus.md

File metadata and controls

64 lines (50 loc) · 2.83 KB

Milvus

Milvus connector

Description

Write data from milvus to Milvus or Zilliz Cloud

Key Features

Source Options

Name Type Required Default Description
url String Yes - The URL to connect to Milvus or Zilliz Cloud.
token String Yes - User:password
database String Yes default Read data from which database.
collections List No - If set, will read collections, otherwise will read all collections under database.

Sink Options

Name Type Required Default Description
url String Yes - The URL to connect to Milvus or Zilliz Cloud.
token String Yes - User:password
database String No - Write data to which database, default is source database.
schema_save_mode enum No CREATE_SCHEMA_WHEN_NOT_EXIST Auto create table when table not exist.
enable_auto_id boolean No false Primary key column enable autoId.
enable_upsert boolean No false Upsert data not insert.
enable_dynamic_field boolean No true Enable create table with dynamic field.
batch_size int No 1000 Write batch size.

Task Example

env {
  parallelism = 1
  job.mode = "BATCH"
}

source {
  Milvus {
  url="https://in01-***.aws-us-west-2.vectordb.zillizcloud.com:19530"
  token="***"
  database="default"
  collections=["medium_articles"]
  batch_size=100
  }
}

sink {
  Milvus {
  url="https://in01-***.aws-us-west-2.vectordb.zillizcloud.com:19542"
  token="***"
  database="default"
  batch_size=10
  }
}