milvus/internal/master
neza2017 14d4a400dd Load etcd port from etcd
Signed-off-by: neza2017 <yefu.chen@zilliz.com>
2020-11-12 17:15:01 +08:00
..
collection Add the standard of golangci-lint 2020-11-12 12:04:12 +08:00
controller Load etcd port from etcd 2020-11-12 17:15:01 +08:00
id Add the standard of golangci-lint 2020-11-12 12:04:12 +08:00
informer Add tso for master and add timestamp 2020-10-29 09:31:08 +08:00
mock Add the standard of golangci-lint 2020-11-12 12:04:12 +08:00
segment Use type alias 2020-11-04 17:58:43 +08:00
timesync Fix timesync tests 2020-11-12 15:56:23 +08:00
tso Add the standard of golangci-lint 2020-11-12 12:04:12 +08:00
README.md Close pulsar channel 2020-11-12 11:18:23 +08:00
collection_task.go Add the standard of golangci-lint 2020-11-12 12:04:12 +08:00
grpc_service.go Load etcd port from etcd 2020-11-12 17:15:01 +08:00
grpc_service_test.go Load etcd port from etcd 2020-11-12 17:15:01 +08:00
master.go Add the standard of golangci-lint 2020-11-12 12:04:12 +08:00
meta_table.go Add the standard of golangci-lint 2020-11-12 12:04:12 +08:00
meta_table_test.go Load etcd port from etcd 2020-11-12 17:15:01 +08:00
partition_task.go Add the standard of golangci-lint 2020-11-12 12:04:12 +08:00
scheduler.go Close pulsar channel 2020-11-12 11:18:23 +08:00
task.go Close pulsar channel 2020-11-12 11:18:23 +08:00

README.md

How to start a master

Requirements

Start a etcdv3

./etcd -listen-peer-urls=http://192.168.1.10:12380 -advertise-client-urls=http://192.168.1.10:12379 -listen-client-urls http://0.0.0.0:12379,http://0.0.0.0:14001 -initial-advertise-peer-urls=http://192.168.1.10:12380

Start from code

go run cmd/master.go

Start with docker

What rules does master use to write data to kv storage?

1.find the root path variable ETCD_ROOT_PATH which defined in common/config.go 2.add prefix path segment if the resource is a segement 3.add prefix path collection if the resource is a collection 4.add resource uuid

example

if master create a collection with uuid 46e468ee-b34a-419d-85ed-80c56bfa4e90 the corresponding key in etcd is $(ETCD_ROOT_PATH)/collection/46e468ee-b34a-419d-85ed-80c56bfa4e90