topic_metadata.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. package kazoo
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "strconv"
  6. "github.com/samuel/go-zookeeper/zk"
  7. )
  8. // Topic interacts with Kafka's topic metadata in Zookeeper.
  9. type Topic struct {
  10. Name string
  11. kz *Kazoo
  12. }
  13. // TopicList is a type that implements the sortable interface for a list of Topic instances.
  14. type TopicList []*Topic
  15. // Partition interacts with Kafka's partition metadata in Zookeeper.
  16. type Partition struct {
  17. topic *Topic
  18. ID int32
  19. Replicas []int32
  20. }
  21. // PartitionList is a type that implements the sortable interface for a list of Partition instances
  22. type PartitionList []*Partition
  23. // Topics returns a list of all registered Kafka topics.
  24. func (kz *Kazoo) Topics() (TopicList, error) {
  25. root := fmt.Sprintf("%s/brokers/topics", kz.conf.Chroot)
  26. children, _, err := kz.conn.Children(root)
  27. if err != nil {
  28. return nil, err
  29. }
  30. result := make(TopicList, 0, len(children))
  31. for _, name := range children {
  32. result = append(result, kz.Topic(name))
  33. }
  34. return result, nil
  35. }
  36. // WatchTopics returns a list of all registered Kafka topics, and
  37. // watches that list for changes.
  38. func (kz *Kazoo) WatchTopics() (TopicList, <-chan zk.Event, error) {
  39. root := fmt.Sprintf("%s/brokers/topics", kz.conf.Chroot)
  40. children, _, c, err := kz.conn.ChildrenW(root)
  41. if err != nil {
  42. return nil, nil, err
  43. }
  44. result := make(TopicList, 0, len(children))
  45. for _, name := range children {
  46. result = append(result, kz.Topic(name))
  47. }
  48. return result, c, nil
  49. }
  50. // Topic returns a Topic instance for a given topic name
  51. func (kz *Kazoo) Topic(topic string) *Topic {
  52. return &Topic{Name: topic, kz: kz}
  53. }
  54. // Exists returns true if the topic exists on the Kafka cluster.
  55. func (t *Topic) Exists() (bool, error) {
  56. return t.kz.exists(fmt.Sprintf("%s/brokers/topics/%s", t.kz.conf.Chroot, t.Name))
  57. }
  58. // Partitions returns a list of all partitions for the topic.
  59. func (t *Topic) Partitions() (PartitionList, error) {
  60. node := fmt.Sprintf("%s/brokers/topics/%s", t.kz.conf.Chroot, t.Name)
  61. value, _, err := t.kz.conn.Get(node)
  62. if err != nil {
  63. return nil, err
  64. }
  65. return t.parsePartitions(value)
  66. }
  67. // WatchPartitions returns a list of all partitions for the topic, and watches the topic for changes.
  68. func (t *Topic) WatchPartitions() (PartitionList, <-chan zk.Event, error) {
  69. node := fmt.Sprintf("%s/brokers/topics/%s", t.kz.conf.Chroot, t.Name)
  70. value, _, c, err := t.kz.conn.GetW(node)
  71. if err != nil {
  72. return nil, nil, err
  73. }
  74. list, err := t.parsePartitions(value)
  75. return list, c, err
  76. }
  77. // parsePartitions pases the JSON representation of the partitions
  78. // that is stored as data on the topic node in Zookeeper.
  79. func (t *Topic) parsePartitions(value []byte) (PartitionList, error) {
  80. type topicMetadata struct {
  81. Partitions map[string][]int32 `json:"partitions"`
  82. }
  83. var tm topicMetadata
  84. if err := json.Unmarshal(value, &tm); err != nil {
  85. return nil, err
  86. }
  87. result := make(PartitionList, len(tm.Partitions))
  88. for partitionNumber, replicas := range tm.Partitions {
  89. partitionID, err := strconv.ParseInt(partitionNumber, 10, 32)
  90. if err != nil {
  91. return nil, err
  92. }
  93. replicaIDs := make([]int32, 0, len(replicas))
  94. for _, r := range replicas {
  95. replicaIDs = append(replicaIDs, int32(r))
  96. }
  97. result[partitionID] = t.Partition(int32(partitionID), replicaIDs)
  98. }
  99. return result, nil
  100. }
  101. // Partition returns a Partition instance for the topic.
  102. func (t *Topic) Partition(id int32, replicas []int32) *Partition {
  103. return &Partition{ID: id, Replicas: replicas, topic: t}
  104. }
  105. // Config returns topic-level configuration settings as a map.
  106. func (t *Topic) Config() (map[string]string, error) {
  107. value, _, err := t.kz.conn.Get(fmt.Sprintf("%s/config/topics/%s", t.kz.conf.Chroot, t.Name))
  108. if err != nil {
  109. return nil, err
  110. }
  111. var topicConfig struct {
  112. ConfigMap map[string]string `json:"config"`
  113. }
  114. if err := json.Unmarshal(value, &topicConfig); err != nil {
  115. return nil, err
  116. }
  117. return topicConfig.ConfigMap, nil
  118. }
  119. // Topic returns the Topic of this partition.
  120. func (p *Partition) Topic() *Topic {
  121. return p.topic
  122. }
  123. // Key returns a unique identifier for the partition, using the form "topic/partition".
  124. func (p *Partition) Key() string {
  125. return fmt.Sprintf("%s/%d", p.topic.Name, p.ID)
  126. }
  127. // PreferredReplica returns the preferred replica for this partition.
  128. func (p *Partition) PreferredReplica() int32 {
  129. if len(p.Replicas) > 0 {
  130. return p.Replicas[0]
  131. } else {
  132. return -1
  133. }
  134. }
  135. // Leader returns the broker ID of the broker that is currently the leader for the partition.
  136. func (p *Partition) Leader() (int32, error) {
  137. if state, err := p.state(); err != nil {
  138. return -1, err
  139. } else {
  140. return state.Leader, nil
  141. }
  142. }
  143. // ISR returns the broker IDs of the current in-sync replica set for the partition
  144. func (p *Partition) ISR() ([]int32, error) {
  145. if state, err := p.state(); err != nil {
  146. return nil, err
  147. } else {
  148. return state.ISR, nil
  149. }
  150. }
  151. func (p *Partition) UnderReplicated() (bool, error) {
  152. if state, err := p.state(); err != nil {
  153. return false, err
  154. } else {
  155. return len(state.ISR) < len(p.Replicas), nil
  156. }
  157. }
  158. func (p *Partition) UsesPreferredReplica() (bool, error) {
  159. if state, err := p.state(); err != nil {
  160. return false, err
  161. } else {
  162. return len(state.ISR) > 0 && state.ISR[0] == p.Replicas[0], nil
  163. }
  164. }
  165. // partitionState represents the partition state as it is stored as JSON
  166. // in Zookeeper on the partition's state node.
  167. type partitionState struct {
  168. Leader int32 `json:"leader"`
  169. ISR []int32 `json:"isr"`
  170. }
  171. // state retrieves and parses the partition State
  172. func (p *Partition) state() (partitionState, error) {
  173. var state partitionState
  174. node := fmt.Sprintf("%s/brokers/topics/%s/partitions/%d/state", p.topic.kz.conf.Chroot, p.topic.Name, p.ID)
  175. value, _, err := p.topic.kz.conn.Get(node)
  176. if err != nil {
  177. return state, err
  178. }
  179. if err := json.Unmarshal(value, &state); err != nil {
  180. return state, err
  181. }
  182. return state, nil
  183. }
  184. // Find returns the topic with the given name if it exists in the topic list,
  185. // and will return `nil` otherwise.
  186. func (tl TopicList) Find(name string) *Topic {
  187. for _, topic := range tl {
  188. if topic.Name == name {
  189. return topic
  190. }
  191. }
  192. return nil
  193. }
  194. func (tl TopicList) Len() int {
  195. return len(tl)
  196. }
  197. func (tl TopicList) Less(i, j int) bool {
  198. return tl[i].Name < tl[j].Name
  199. }
  200. func (tl TopicList) Swap(i, j int) {
  201. tl[i], tl[j] = tl[j], tl[i]
  202. }
  203. func (pl PartitionList) Len() int {
  204. return len(pl)
  205. }
  206. func (pl PartitionList) Less(i, j int) bool {
  207. return pl[i].topic.Name < pl[j].topic.Name || (pl[i].topic.Name == pl[j].topic.Name && pl[i].ID < pl[j].ID)
  208. }
  209. func (pl PartitionList) Swap(i, j int) {
  210. pl[i], pl[j] = pl[j], pl[i]
  211. }