diff options
| author | Chris Lu <chris.lu@uber.com> | 2019-03-16 13:43:16 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@uber.com> | 2019-03-16 13:43:16 -0700 |
| commit | 657dd2e6c93c02f46b10dfd43fb6e9b38c025ece (patch) | |
| tree | c23a093382d5ffd0d39dd69b68fb24050daa7f3e /weed/wdclient/masterclient_collection.go | |
| parent | b92122b885c8fba189f3c503c17478008806fda7 (diff) | |
| download | seaweedfs-657dd2e6c93c02f46b10dfd43fb6e9b38c025ece.tar.xz seaweedfs-657dd2e6c93c02f46b10dfd43fb6e9b38c025ece.zip | |
add shell command to list all collections
Diffstat (limited to 'weed/wdclient/masterclient_collection.go')
| -rw-r--r-- | weed/wdclient/masterclient_collection.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/weed/wdclient/masterclient_collection.go b/weed/wdclient/masterclient_collection.go new file mode 100644 index 000000000..bdf791da0 --- /dev/null +++ b/weed/wdclient/masterclient_collection.go @@ -0,0 +1,23 @@ +package wdclient + +import ( + "context" + "github.com/chrislusf/seaweedfs/weed/pb/master_pb" +) + +func (mc *MasterClient) CollectionDelete(ctx context.Context, collection string) error { + return withMasterClient(ctx, mc.currentMaster, mc.grpcDialOption, func(ctx context.Context, client master_pb.SeaweedClient) error { + _, err := client.CollectionDelete(ctx, &master_pb.CollectionDeleteRequest{ + Name: collection, + }) + return err + }) +} + +func (mc *MasterClient) CollectionList(ctx context.Context) (resp *master_pb.CollectionListResponse, err error) { + err = withMasterClient(ctx, mc.currentMaster, mc.grpcDialOption, func(ctx context.Context, client master_pb.SeaweedClient) error { + resp, err = client.CollectionList(ctx, &master_pb.CollectionListRequest{}) + return err + }) + return +} |
