Skip to content

milvus-io/birdwatcher

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b6c4257 · Jan 27, 2025
Nov 4, 2024
Oct 11, 2022
Dec 24, 2024
Dec 24, 2024
Dec 24, 2024
Jun 19, 2024
Oct 16, 2024
Jul 27, 2023
Jun 19, 2024
Jun 19, 2024
Oct 16, 2024
Jun 19, 2024
Sep 9, 2024
Oct 22, 2024
Jun 27, 2024
Jan 27, 2025
Aug 1, 2024
Dec 16, 2022
Jul 5, 2022
Jan 23, 2023
Nov 15, 2023
Jun 27, 2024
Feb 22, 2023
Feb 22, 2023
Feb 22, 2023
Feb 22, 2023
Dec 24, 2024
Aug 12, 2022
Feb 21, 2023
Jan 21, 2025
Jan 21, 2025

Repository files navigation

Birdwatcher

linter status

Debug tool for Milvus 2.0 project. This tool connects to etcd and inspect some status of the Milvus system.

Get Started

Prerequisite

go 1.18 or higher

Install birdwatcher

install with go command

go install github.com/milvus-io/birdwatcher

or download source and run with go command

git clone https://github.com/milvus-io/birdwatcher
cd birdwatcher
go build -o birdwatcher main.go

How to use

connect to etcd

connect to etcd

❯ birdwatcher
# execute connect command, using default config, equal to connect --etcd localhost:2379 --rootPath by-dev
Offline: connect 
Using meta path: by-dev/meta/
✔ Milvus(by-dev): show collection
...

connect to remote instance etcd with other basePath

❯ birdwatcher
Offline: connect --etcd [ip]:[port] --rootPath instanceName
Using meta path: instanceName/meta/
✔ Milvus(instanceName): 

inspect some meta

inspect meta

Milvus(by-dev): show collections
================================================================================
Collection ID: 434393323906469185	Collection Name:gosdk_index_example
Partitions:
 - Partition ID:434393323906469186	Partition Name:_default
Fields:
 - Field ID: 0 	 Field Name: RowID 	 Field Type: Int64
 - Field ID: 1 	 Field Name: Timestamp 	 Field Type: Int64
 - Field ID: 100 	 Field Name: ID 	 Field Type: Int64
	 - Primary Key, AutoID: false
 - Field ID: 101 	 Field Name: Year 	 Field Type: Int32
 - Field ID: 102 	 Field Name: Vector 	 Field Type: FloatVector
	 - Type Param dim: 8
Consistency Level: Strong
✔ Milvus(by-dev): █

backup etcd

inspect meta

Milvus(by-dev): backup
found 37 keys, at revision 533816, starting backup...
Backing up ... 100%(37/37)
backup etcd for prefix by-dev/meta done, stored in file: bw_etcd_ALL.220707-152246.bak.gz

help

And use help command to check other commands.