mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
issue: #43072, #43289 - manage the schema version at recovery storage. - update the schema when creating collection or alter schema. - get schema at write buffer based on version. - recover the schema when upgrading from 2.5. --------- Signed-off-by: chyezh <chyezh@outlook.com>
13 lines
262 B
Go
13 lines
262 B
Go
package streamingnode
|
|
|
|
const (
|
|
MetaPrefix = "streamingnode-meta"
|
|
|
|
DirectoryWAL = "wal"
|
|
DirectorySegmentAssign = "segment-assign"
|
|
DirectoryVChannel = "vchannel"
|
|
DirectorySchema = "schema"
|
|
|
|
KeyConsumeCheckpoint = "consume-checkpoint"
|
|
)
|