-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
81 changed files
with
6,634 additions
and
5,147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ | |
**/__pycache__/* | ||
**/.pytest_cache/* | ||
server/cdc | ||
**/milvus-cdc-build/* | ||
**/milvus-cdc-build/* | ||
*.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
package api | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb" | ||
"github.com/milvus-io/milvus-proto/go-api/v2/milvuspb" | ||
"github.com/milvus-io/milvus-proto/go-api/v2/msgpb" | ||
"github.com/milvus-io/milvus-sdk-go/v2/entity" | ||
"github.com/milvus-io/milvus/pkg/log" | ||
) | ||
|
||
type DataHandler interface { | ||
CreateCollection(ctx context.Context, param *CreateCollectionParam) error | ||
DropCollection(ctx context.Context, param *DropCollectionParam) error | ||
Insert(ctx context.Context, param *InsertParam) error | ||
Delete(ctx context.Context, param *DeleteParam) error | ||
CreatePartition(ctx context.Context, param *CreatePartitionParam) error | ||
DropPartition(ctx context.Context, param *DropPartitionParam) error | ||
|
||
CreateIndex(ctx context.Context, param *CreateIndexParam) error | ||
DropIndex(ctx context.Context, param *DropIndexParam) error | ||
LoadCollection(ctx context.Context, param *LoadCollectionParam) error | ||
ReleaseCollection(ctx context.Context, param *ReleaseCollectionParam) error | ||
CreateDatabase(ctx context.Context, param *CreateDataBaseParam) error | ||
DropDatabase(ctx context.Context, param *DropDataBaseParam) error | ||
|
||
ReplicateMessage(ctx context.Context, param *ReplicateMessageParam) error | ||
// NOTE: please add the implements for the DataHandlerWrapper class when adding new interfaces | ||
} | ||
|
||
type DefaultDataHandler struct{} | ||
|
||
func (d *DefaultDataHandler) CreateCollection(ctx context.Context, param *CreateCollectionParam) error { | ||
log.Warn("CreateCollection is not implemented, please check it") | ||
return nil | ||
} | ||
|
||
func (d *DefaultDataHandler) DropCollection(ctx context.Context, param *DropCollectionParam) error { | ||
log.Warn("DropCollection is not implemented, please check it") | ||
return nil | ||
} | ||
|
||
func (d *DefaultDataHandler) Insert(ctx context.Context, param *InsertParam) error { | ||
log.Warn("Insert is not implemented, please check it") | ||
return nil | ||
} | ||
|
||
func (d *DefaultDataHandler) Delete(ctx context.Context, param *DeleteParam) error { | ||
log.Warn("Delete is not implemented, please check it") | ||
return nil | ||
} | ||
|
||
func (d *DefaultDataHandler) CreatePartition(ctx context.Context, param *CreatePartitionParam) error { | ||
log.Warn("CreatePartition is not implemented, please check it") | ||
return nil | ||
} | ||
|
||
func (d *DefaultDataHandler) DropPartition(ctx context.Context, param *DropPartitionParam) error { | ||
log.Warn("DropPartition is not implemented, please check it") | ||
return nil | ||
} | ||
|
||
func (d *DefaultDataHandler) CreateIndex(ctx context.Context, param *CreateIndexParam) error { | ||
log.Warn("CreateIndex is not implemented, please check it") | ||
return nil | ||
} | ||
|
||
func (d *DefaultDataHandler) DropIndex(ctx context.Context, param *DropIndexParam) error { | ||
log.Warn("DropIndex is not implemented, please check it") | ||
return nil | ||
} | ||
|
||
func (d *DefaultDataHandler) LoadCollection(ctx context.Context, param *LoadCollectionParam) error { | ||
log.Warn("LoadCollection is not implemented, please check it") | ||
return nil | ||
} | ||
|
||
func (d *DefaultDataHandler) ReleaseCollection(ctx context.Context, param *ReleaseCollectionParam) error { | ||
log.Warn("ReleaseCollection is not implemented, please check it") | ||
return nil | ||
} | ||
|
||
func (d *DefaultDataHandler) CreateDatabase(ctx context.Context, param *CreateDataBaseParam) error { | ||
log.Warn("CreateDatabase is not implemented, please check it") | ||
return nil | ||
} | ||
|
||
func (d *DefaultDataHandler) DropDatabase(ctx context.Context, param *DropDataBaseParam) error { | ||
log.Warn("DropDatabase is not implemented, please check it") | ||
return nil | ||
} | ||
|
||
func (d *DefaultDataHandler) ReplicateMessage(ctx context.Context, param *ReplicateMessageParam) error { | ||
log.Warn("Replicate is not implemented, please check it") | ||
return nil | ||
} | ||
|
||
type CreateCollectionParam struct { | ||
Schema *entity.Schema | ||
ShardsNum int32 | ||
ConsistencyLevel commonpb.ConsistencyLevel | ||
Properties []*commonpb.KeyValuePair | ||
} | ||
|
||
type DropCollectionParam struct { | ||
CollectionName string | ||
} | ||
|
||
type InsertParam struct { | ||
CollectionName string | ||
PartitionName string | ||
Columns []entity.Column | ||
} | ||
|
||
type DeleteParam struct { | ||
CollectionName string | ||
PartitionName string | ||
Column entity.Column | ||
} | ||
|
||
type CreatePartitionParam struct { | ||
CollectionName string | ||
PartitionName string | ||
} | ||
|
||
type DropPartitionParam struct { | ||
CollectionName string | ||
PartitionName string | ||
} | ||
|
||
type CreateIndexParam struct { | ||
milvuspb.CreateIndexRequest | ||
} | ||
|
||
type DropIndexParam struct { | ||
milvuspb.DropIndexRequest | ||
} | ||
|
||
type LoadCollectionParam struct { | ||
milvuspb.LoadCollectionRequest | ||
} | ||
|
||
type ReleaseCollectionParam struct { | ||
milvuspb.ReleaseCollectionRequest | ||
} | ||
|
||
type CreateDataBaseParam struct { | ||
milvuspb.CreateDatabaseRequest | ||
} | ||
|
||
type DropDataBaseParam struct { | ||
milvuspb.DropDatabaseRequest | ||
} | ||
|
||
type ReplicateMessageParam struct { | ||
ChannelName string | ||
BeginTs, EndTs uint64 | ||
MsgsBytes [][]byte | ||
StartPositions, EndPositions []*msgpb.MsgPosition | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package api | ||
|
||
type MessageManager interface { | ||
ReplicateMessage(message *ReplicateMessage) | ||
Close(channelName string) | ||
} | ||
|
||
type ReplicateMessage struct { | ||
Param *ReplicateMessageParam | ||
SuccessFunc func(param *ReplicateMessageParam) | ||
FailFunc func(param *ReplicateMessageParam, err error) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package api | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/zilliztech/milvus-cdc/core/pb" | ||
) | ||
|
||
// MetaOp meta operation | ||
type MetaOp interface { | ||
// WatchCollection its implementation should make sure it's only called once. The WatchPartition is same | ||
WatchCollection(ctx context.Context, filter CollectionFilter) | ||
WatchPartition(ctx context.Context, filter PartitionFilter) | ||
|
||
// SubscribeCollectionEvent an event only is consumed once. The SubscribePartitionEvent is same | ||
// TODO need to consider the many target, maybe try the method a meta op corresponds to a target | ||
SubscribeCollectionEvent(taskID string, consumer CollectionEventConsumer) | ||
SubscribePartitionEvent(taskID string, consumer PartitionEventConsumer) | ||
UnsubscribeEvent(taskID string, eventType WatchEventType) | ||
|
||
GetAllCollection(ctx context.Context, filter CollectionFilter) ([]*pb.CollectionInfo, error) | ||
GetCollectionNameByID(ctx context.Context, id int64) string | ||
} | ||
|
||
// CollectionFilter the filter will be used before the collection is filled the schema info | ||
type CollectionFilter func(*pb.CollectionInfo) bool | ||
|
||
type PartitionFilter func(info *pb.PartitionInfo) bool | ||
|
||
type CollectionEventConsumer CollectionFilter | ||
|
||
type PartitionEventConsumer PartitionFilter | ||
|
||
type WatchEventType int | ||
|
||
const ( | ||
CollectionEventType WatchEventType = iota + 1 | ||
PartitionEventType | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package api | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/milvus-io/milvus/pkg/log" | ||
) | ||
|
||
type Reader interface { | ||
StartRead(ctx context.Context) | ||
QuitRead(ctx context.Context) | ||
GetChannelChan() <-chan string | ||
} | ||
|
||
// DefaultReader All CDCReader implements should combine it | ||
type DefaultReader struct{} | ||
|
||
// StartRead the return value is nil, | ||
// and if you receive the data from the nil chan, will block forever, not panic | ||
func (d *DefaultReader) StartRead(ctx context.Context) { | ||
log.Warn("StartRead is not implemented, please check it") | ||
} | ||
|
||
func (d *DefaultReader) QuitRead(ctx context.Context) { | ||
log.Warn("QuitRead is not implemented, please check it") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package api | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/milvus-io/milvus-proto/go-api/v2/msgpb" | ||
"github.com/milvus-io/milvus/pkg/mq/msgstream" | ||
|
||
"github.com/zilliztech/milvus-cdc/core/model" | ||
"github.com/zilliztech/milvus-cdc/core/pb" | ||
) | ||
|
||
// ChannelManager a target must promise a manager | ||
type ChannelManager interface { | ||
StartReadCollection(ctx context.Context, info *pb.CollectionInfo, seekPositions []*msgpb.MsgPosition) error | ||
|
||
StopReadCollection(ctx context.Context, info *pb.CollectionInfo) error | ||
|
||
GetChannelChan() <-chan string | ||
GetMsgChan(pChannel string) <-chan *msgstream.MsgPack | ||
GetEventChan() <-chan *ReplicateAPIEvent | ||
} | ||
|
||
type TargetAPI interface { | ||
GetCollectionInfo(ctx context.Context, collectionName string) (*model.CollectionInfo, error) | ||
} | ||
|
||
type ReplicateAPIEvent struct { | ||
EventType ReplicateAPIEventType | ||
CollectionInfo *pb.CollectionInfo | ||
PartitionInfo *pb.PartitionInfo | ||
} | ||
|
||
type ReplicateAPIEventType int | ||
|
||
const ( | ||
ReplicateCreateCollection = iota + 1 | ||
ReplicateDropCollection | ||
ReplicateCreatePartition | ||
ReplicateDropPartition | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package api | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb" | ||
"github.com/milvus-io/milvus/pkg/mq/msgstream" | ||
) | ||
|
||
type Writer interface { | ||
HandleReplicateAPIEvent(ctx context.Context, apiEvent *ReplicateAPIEvent) error | ||
HandleReplicateMessage(ctx context.Context, channelName string, msgPack *msgstream.MsgPack) (*commonpb.KeyDataPair, error) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.