mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
3cd28420f1
This patch makes compile milvus under windows(MSYS), including: - some cpp adaptation for compile under msys/gcc-10.3 - install toolchain scripts for setup from MinGW/MSYS `scripts/install_deps_msys.sh` - adaptation for POSIX API use in golang * using gofrs/flock instead of syscall.Flock * using x/exp/mmap instead of syscall.Mmap - introducing github actions for build milvus.exe under windows/MSYS - rocksdb's patch for MSYS - adaptation for compile knowhere under windows - a windows package script for pack zip file, `scripts/package_windows.sh` issue #7706 Signed-off-by: Ji Bin <matrixji@live.com> |
||
---|---|---|
.. | ||
allocator_test.go | ||
allocator.go | ||
channel_manager_factory.go | ||
channel_manager_test.go | ||
channel_manager.go | ||
channel_store_test.go | ||
channel_store.go | ||
cluster_test.go | ||
cluster.go | ||
compaction_policy_test.go | ||
compaction_policy.go | ||
compaction_test.go | ||
compaction_trigger_test.go | ||
compaction_trigger.go | ||
compaction.go | ||
errors_test.go | ||
errors.go | ||
garbage_collector_test.go | ||
garbage_collector.go | ||
handler.go | ||
meta_test.go | ||
meta.go | ||
metrics_info_test.go | ||
metrics_info.go | ||
mock_test.go | ||
OWNERS | ||
policy_test.go | ||
policy.go | ||
README.md | ||
segment_allocation_policy_test.go | ||
segment_allocation_policy.go | ||
segment_info.go | ||
segment_manager_test.go | ||
segment_manager.go | ||
server_test.go | ||
server.go | ||
services.go | ||
session_manager.go | ||
session.go | ||
util_test.go | ||
util.go |
Data Coordinator
Data cooridnator(datacoord for short) is the component to organize DataNodes and segments allocations.
Dependency
- KV store: a kv store has all the meta info datacoord needs to operate. (etcd)
- Message stream: a message stream to communicate statistics information with data nodes. (Pulsar)
- Root Coordinator: timestamp, id and meta source.
- Data Node(s): could be an instance or a cluster, actual worker group handles data modification operations.