aboutsummaryrefslogtreecommitdiff
path: root/weed/messaging/msgclient/config.go
blob: 2b9eba1a8c96b5b750e22bf33ebe635bb83e2b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package msgclient

import (
	"context"
	"log"

	"github.com/chrislusf/seaweedfs/weed/messaging/broker"
	"github.com/chrislusf/seaweedfs/weed/pb"
	"github.com/chrislusf/seaweedfs/weed/pb/messaging_pb"
)

func (mc *MessagingClient) configureTopic(tp broker.TopicPartition) error {

	return mc.withAnyBroker(func(client messaging_pb.SeaweedMessagingClient) error {
		_, err := client.ConfigureTopic(context.Background(),
			&messaging_pb.ConfigureTopicRequest{
				Namespace: tp.Namespace,
				Topic:     tp.Topic,
				Configuration: &messaging_pb.TopicConfiguration{
					PartitionCount: 0,
					Collection:     "",
					Replication:    "",
					IsTransient:    false,
					Partitoning:    0,
				},
			})
		return err
	})

}

func (mc *MessagingClient) DeleteTopic(namespace, topic string) error {

	return mc.withAnyBroker(func(client messaging_pb.SeaweedMessagingClient) error {
		_, err := client.DeleteTopic(context.Background(),
			&messaging_pb.DeleteTopicRequest{
				Namespace: namespace,
				Topic:     topic,
			})
		return err
	})
}

func (mc *MessagingClient) withAnyBroker(fn func(client messaging_pb.SeaweedMessagingClient) error) error {

	var lastErr error
	for _, broker := range mc.bootstrapBrokers {
		grpcConnection, err := pb.GrpcDial(context.Background(), broker, mc.grpcDialOption)
		if err != nil {
			log.Printf("dial broker %s: %v", broker, err)
			continue
		}
		defer grpcConnection.Close()

		err = fn(messaging_pb.NewSeaweedMessagingClient(grpcConnection))
		if err == nil {
			return nil
		}
		lastErr = err
	}

	return lastErr
}