Skip to main content

Milvus

Introduction

Milvus is a vector database for storing and searching embeddings.

This connector is currently in development. At this time, it supports credential validation (testing the connection), but does not yet support loading data.

Setup

Before configuring the connector, you’ll need:

  • A Milvus endpoint URL (for example, your Milvus instance base URL).
  • An API token with permission to access the Milvus VectorDB API.

Authentication

The connector authenticates using:

  • Bearer token authentication (an API token)
  • Requests are sent to your Milvus endpoint

During credential validation, the connector calls the Milvus API endpoint:

  • POST /v2/vectordb/collections/list

Configuration fields

FieldTypeRequiredDescription
endpointstringYesBase URL for your Milvus instance.
tokenstringYesAPI token used as a Bearer token for authentication.

Streams

This connector does not currently expose streams for extraction.

Limitations

  • Destination loading is not yet supported. Runs will fail if you attempt to load data, as the connector is still under development.