2023-09-24 21:22:11 +00:00
|
|
|
package shell
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-09-24 22:26:49 +00:00
|
|
|
"encoding/json"
|
2023-09-24 21:22:11 +00:00
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/mq_pb"
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2023-12-11 20:05:54 +00:00
|
|
|
Commands = append(Commands, &commandMqTopicConfigure{})
|
2023-09-24 21:22:11 +00:00
|
|
|
}
|
|
|
|
|
2023-12-11 20:05:54 +00:00
|
|
|
type commandMqTopicConfigure struct {
|
2023-09-24 21:22:11 +00:00
|
|
|
}
|
|
|
|
|
2023-12-11 20:05:54 +00:00
|
|
|
func (c *commandMqTopicConfigure) Name() string {
|
|
|
|
return "mq.topic.configure"
|
2023-09-24 21:22:11 +00:00
|
|
|
}
|
|
|
|
|
2023-12-11 20:05:54 +00:00
|
|
|
func (c *commandMqTopicConfigure) Help() string {
|
|
|
|
return `configure a topic with a given name
|
2023-09-24 21:22:11 +00:00
|
|
|
|
|
|
|
Example:
|
2023-12-11 20:05:54 +00:00
|
|
|
mq.topic.configure -namespace <namespace> -topic <topic_name> -partition_count <partition_count>
|
2023-09-24 21:22:11 +00:00
|
|
|
`
|
|
|
|
}
|
|
|
|
|
2023-12-11 20:05:54 +00:00
|
|
|
func (c *commandMqTopicConfigure) Do(args []string, commandEnv *CommandEnv, writer io.Writer) error {
|
2023-09-24 21:22:11 +00:00
|
|
|
|
|
|
|
// parse parameters
|
|
|
|
mqCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
|
|
|
|
namespace := mqCommand.String("namespace", "", "namespace name")
|
|
|
|
topicName := mqCommand.String("topic", "", "topic name")
|
|
|
|
partitionCount := mqCommand.Int("partitionCount", 6, "partition count")
|
|
|
|
if err := mqCommand.Parse(args); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// find the broker balancer
|
|
|
|
brokerBalancer, err := findBrokerBalancer(commandEnv)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Fprintf(writer, "current balancer: %s\n", brokerBalancer)
|
|
|
|
|
|
|
|
// create topic
|
|
|
|
return pb.WithBrokerGrpcClient(false, brokerBalancer, commandEnv.option.GrpcDialOption, func(client mq_pb.SeaweedMessagingClient) error {
|
2023-09-26 22:17:33 +00:00
|
|
|
resp, err := client.ConfigureTopic(context.Background(), &mq_pb.ConfigureTopicRequest{
|
2023-09-24 21:22:11 +00:00
|
|
|
Topic: &mq_pb.Topic{
|
|
|
|
Namespace: *namespace,
|
|
|
|
Name: *topicName,
|
|
|
|
},
|
|
|
|
PartitionCount: int32(*partitionCount),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-09-24 22:26:49 +00:00
|
|
|
output, _ := json.MarshalIndent(resp, "", " ")
|
|
|
|
fmt.Fprintf(writer, "response:\n%+v\n", string(output))
|
2023-09-24 21:22:11 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|