client.go 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876
  1. package sarama
  2. import (
  3. "math/rand"
  4. "sort"
  5. "sync"
  6. "time"
  7. )
  8. // Client is a generic Kafka client. It manages connections to one or more Kafka brokers.
  9. // You MUST call Close() on a client to avoid leaks, it will not be garbage-collected
  10. // automatically when it passes out of scope. It is safe to share a client amongst many
  11. // users, however Kafka will process requests from a single client strictly in serial,
  12. // so it is generally more efficient to use the default one client per producer/consumer.
  13. type Client interface {
  14. // Config returns the Config struct of the client. This struct should not be
  15. // altered after it has been created.
  16. Config() *Config
  17. // Controller returns the cluster controller broker. Requires Kafka 0.10 or higher.
  18. Controller() (*Broker, error)
  19. // Brokers returns the current set of active brokers as retrieved from cluster metadata.
  20. Brokers() []*Broker
  21. // Topics returns the set of available topics as retrieved from cluster metadata.
  22. Topics() ([]string, error)
  23. // Partitions returns the sorted list of all partition IDs for the given topic.
  24. Partitions(topic string) ([]int32, error)
  25. // WritablePartitions returns the sorted list of all writable partition IDs for
  26. // the given topic, where "writable" means "having a valid leader accepting
  27. // writes".
  28. WritablePartitions(topic string) ([]int32, error)
  29. // Leader returns the broker object that is the leader of the current
  30. // topic/partition, as determined by querying the cluster metadata.
  31. Leader(topic string, partitionID int32) (*Broker, error)
  32. // Replicas returns the set of all replica IDs for the given partition.
  33. Replicas(topic string, partitionID int32) ([]int32, error)
  34. // InSyncReplicas returns the set of all in-sync replica IDs for the given
  35. // partition. In-sync replicas are replicas which are fully caught up with
  36. // the partition leader.
  37. InSyncReplicas(topic string, partitionID int32) ([]int32, error)
  38. // RefreshMetadata takes a list of topics and queries the cluster to refresh the
  39. // available metadata for those topics. If no topics are provided, it will refresh
  40. // metadata for all topics.
  41. RefreshMetadata(topics ...string) error
  42. // GetOffset queries the cluster to get the most recent available offset at the
  43. // given time (in milliseconds) on the topic/partition combination.
  44. // Time should be OffsetOldest for the earliest available offset,
  45. // OffsetNewest for the offset of the message that will be produced next, or a time.
  46. GetOffset(topic string, partitionID int32, time int64) (int64, error)
  47. // Coordinator returns the coordinating broker for a consumer group. It will
  48. // return a locally cached value if it's available. You can call
  49. // RefreshCoordinator to update the cached value. This function only works on
  50. // Kafka 0.8.2 and higher.
  51. Coordinator(consumerGroup string) (*Broker, error)
  52. // RefreshCoordinator retrieves the coordinator for a consumer group and stores it
  53. // in local cache. This function only works on Kafka 0.8.2 and higher.
  54. RefreshCoordinator(consumerGroup string) error
  55. // Close shuts down all broker connections managed by this client. It is required
  56. // to call this function before a client object passes out of scope, as it will
  57. // otherwise leak memory. You must close any Producers or Consumers using a client
  58. // before you close the client.
  59. Close() error
  60. // Closed returns true if the client has already had Close called on it
  61. Closed() bool
  62. }
  63. const (
  64. // OffsetNewest stands for the log head offset, i.e. the offset that will be
  65. // assigned to the next message that will be produced to the partition. You
  66. // can send this to a client's GetOffset method to get this offset, or when
  67. // calling ConsumePartition to start consuming new messages.
  68. OffsetNewest int64 = -1
  69. // OffsetOldest stands for the oldest offset available on the broker for a
  70. // partition. You can send this to a client's GetOffset method to get this
  71. // offset, or when calling ConsumePartition to start consuming from the
  72. // oldest offset that is still available on the broker.
  73. OffsetOldest int64 = -2
  74. )
  75. type client struct {
  76. conf *Config
  77. closer, closed chan none // for shutting down background metadata updater
  78. // the broker addresses given to us through the constructor are not guaranteed to be returned in
  79. // the cluster metadata (I *think* it only returns brokers who are currently leading partitions?)
  80. // so we store them separately
  81. seedBrokers []*Broker
  82. deadSeeds []*Broker
  83. controllerID int32 // cluster controller broker id
  84. brokers map[int32]*Broker // maps broker ids to brokers
  85. metadata map[string]map[int32]*PartitionMetadata // maps topics to partition ids to metadata
  86. metadataTopics map[string]none // topics that need to collect metadata
  87. coordinators map[string]int32 // Maps consumer group names to coordinating broker IDs
  88. // If the number of partitions is large, we can get some churn calling cachedPartitions,
  89. // so the result is cached. It is important to update this value whenever metadata is changed
  90. cachedPartitionsResults map[string][maxPartitionIndex][]int32
  91. lock sync.RWMutex // protects access to the maps that hold cluster state.
  92. }
  93. // NewClient creates a new Client. It connects to one of the given broker addresses
  94. // and uses that broker to automatically fetch metadata on the rest of the kafka cluster. If metadata cannot
  95. // be retrieved from any of the given broker addresses, the client is not created.
  96. func NewClient(addrs []string, conf *Config) (Client, error) {
  97. Logger.Println("Initializing new client")
  98. if conf == nil {
  99. conf = NewConfig()
  100. }
  101. if err := conf.Validate(); err != nil {
  102. return nil, err
  103. }
  104. if len(addrs) < 1 {
  105. return nil, ConfigurationError("You must provide at least one broker address")
  106. }
  107. client := &client{
  108. conf: conf,
  109. closer: make(chan none),
  110. closed: make(chan none),
  111. brokers: make(map[int32]*Broker),
  112. metadata: make(map[string]map[int32]*PartitionMetadata),
  113. metadataTopics: make(map[string]none),
  114. cachedPartitionsResults: make(map[string][maxPartitionIndex][]int32),
  115. coordinators: make(map[string]int32),
  116. }
  117. random := rand.New(rand.NewSource(time.Now().UnixNano()))
  118. for _, index := range random.Perm(len(addrs)) {
  119. client.seedBrokers = append(client.seedBrokers, NewBroker(addrs[index]))
  120. }
  121. if conf.Metadata.Full {
  122. // do an initial fetch of all cluster metadata by specifying an empty list of topics
  123. err := client.RefreshMetadata()
  124. switch err {
  125. case nil:
  126. break
  127. case ErrLeaderNotAvailable, ErrReplicaNotAvailable, ErrTopicAuthorizationFailed, ErrClusterAuthorizationFailed:
  128. // indicates that maybe part of the cluster is down, but is not fatal to creating the client
  129. Logger.Println(err)
  130. default:
  131. close(client.closed) // we haven't started the background updater yet, so we have to do this manually
  132. _ = client.Close()
  133. return nil, err
  134. }
  135. }
  136. go withRecover(client.backgroundMetadataUpdater)
  137. Logger.Println("Successfully initialized new client")
  138. return client, nil
  139. }
  140. func (client *client) Config() *Config {
  141. return client.conf
  142. }
  143. func (client *client) Brokers() []*Broker {
  144. client.lock.RLock()
  145. defer client.lock.RUnlock()
  146. brokers := make([]*Broker, 0)
  147. for _, broker := range client.brokers {
  148. brokers = append(brokers, broker)
  149. }
  150. return brokers
  151. }
  152. func (client *client) Close() error {
  153. if client.Closed() {
  154. // Chances are this is being called from a defer() and the error will go unobserved
  155. // so we go ahead and log the event in this case.
  156. Logger.Printf("Close() called on already closed client")
  157. return ErrClosedClient
  158. }
  159. // shutdown and wait for the background thread before we take the lock, to avoid races
  160. close(client.closer)
  161. <-client.closed
  162. client.lock.Lock()
  163. defer client.lock.Unlock()
  164. Logger.Println("Closing Client")
  165. for _, broker := range client.brokers {
  166. safeAsyncClose(broker)
  167. }
  168. for _, broker := range client.seedBrokers {
  169. safeAsyncClose(broker)
  170. }
  171. client.brokers = nil
  172. client.metadata = nil
  173. client.metadataTopics = nil
  174. return nil
  175. }
  176. func (client *client) Closed() bool {
  177. return client.brokers == nil
  178. }
  179. func (client *client) Topics() ([]string, error) {
  180. if client.Closed() {
  181. return nil, ErrClosedClient
  182. }
  183. client.lock.RLock()
  184. defer client.lock.RUnlock()
  185. ret := make([]string, 0, len(client.metadata))
  186. for topic := range client.metadata {
  187. ret = append(ret, topic)
  188. }
  189. return ret, nil
  190. }
  191. func (client *client) MetadataTopics() ([]string, error) {
  192. if client.Closed() {
  193. return nil, ErrClosedClient
  194. }
  195. client.lock.RLock()
  196. defer client.lock.RUnlock()
  197. ret := make([]string, 0, len(client.metadataTopics))
  198. for topic := range client.metadataTopics {
  199. ret = append(ret, topic)
  200. }
  201. return ret, nil
  202. }
  203. func (client *client) Partitions(topic string) ([]int32, error) {
  204. if client.Closed() {
  205. return nil, ErrClosedClient
  206. }
  207. partitions := client.cachedPartitions(topic, allPartitions)
  208. if len(partitions) == 0 {
  209. err := client.RefreshMetadata(topic)
  210. if err != nil {
  211. return nil, err
  212. }
  213. partitions = client.cachedPartitions(topic, allPartitions)
  214. }
  215. if partitions == nil {
  216. return nil, ErrUnknownTopicOrPartition
  217. }
  218. return partitions, nil
  219. }
  220. func (client *client) WritablePartitions(topic string) ([]int32, error) {
  221. if client.Closed() {
  222. return nil, ErrClosedClient
  223. }
  224. partitions := client.cachedPartitions(topic, writablePartitions)
  225. // len==0 catches when it's nil (no such topic) and the odd case when every single
  226. // partition is undergoing leader election simultaneously. Callers have to be able to handle
  227. // this function returning an empty slice (which is a valid return value) but catching it
  228. // here the first time (note we *don't* catch it below where we return ErrUnknownTopicOrPartition) triggers
  229. // a metadata refresh as a nicety so callers can just try again and don't have to manually
  230. // trigger a refresh (otherwise they'd just keep getting a stale cached copy).
  231. if len(partitions) == 0 {
  232. err := client.RefreshMetadata(topic)
  233. if err != nil {
  234. return nil, err
  235. }
  236. partitions = client.cachedPartitions(topic, writablePartitions)
  237. }
  238. if partitions == nil {
  239. return nil, ErrUnknownTopicOrPartition
  240. }
  241. return partitions, nil
  242. }
  243. func (client *client) Replicas(topic string, partitionID int32) ([]int32, error) {
  244. if client.Closed() {
  245. return nil, ErrClosedClient
  246. }
  247. metadata := client.cachedMetadata(topic, partitionID)
  248. if metadata == nil {
  249. err := client.RefreshMetadata(topic)
  250. if err != nil {
  251. return nil, err
  252. }
  253. metadata = client.cachedMetadata(topic, partitionID)
  254. }
  255. if metadata == nil {
  256. return nil, ErrUnknownTopicOrPartition
  257. }
  258. if metadata.Err == ErrReplicaNotAvailable {
  259. return dupInt32Slice(metadata.Replicas), metadata.Err
  260. }
  261. return dupInt32Slice(metadata.Replicas), nil
  262. }
  263. func (client *client) InSyncReplicas(topic string, partitionID int32) ([]int32, error) {
  264. if client.Closed() {
  265. return nil, ErrClosedClient
  266. }
  267. metadata := client.cachedMetadata(topic, partitionID)
  268. if metadata == nil {
  269. err := client.RefreshMetadata(topic)
  270. if err != nil {
  271. return nil, err
  272. }
  273. metadata = client.cachedMetadata(topic, partitionID)
  274. }
  275. if metadata == nil {
  276. return nil, ErrUnknownTopicOrPartition
  277. }
  278. if metadata.Err == ErrReplicaNotAvailable {
  279. return dupInt32Slice(metadata.Isr), metadata.Err
  280. }
  281. return dupInt32Slice(metadata.Isr), nil
  282. }
  283. func (client *client) Leader(topic string, partitionID int32) (*Broker, error) {
  284. if client.Closed() {
  285. return nil, ErrClosedClient
  286. }
  287. leader, err := client.cachedLeader(topic, partitionID)
  288. if leader == nil {
  289. err = client.RefreshMetadata(topic)
  290. if err != nil {
  291. return nil, err
  292. }
  293. leader, err = client.cachedLeader(topic, partitionID)
  294. }
  295. return leader, err
  296. }
  297. func (client *client) RefreshMetadata(topics ...string) error {
  298. if client.Closed() {
  299. return ErrClosedClient
  300. }
  301. // Prior to 0.8.2, Kafka will throw exceptions on an empty topic and not return a proper
  302. // error. This handles the case by returning an error instead of sending it
  303. // off to Kafka. See: https://github.com/Shopify/sarama/pull/38#issuecomment-26362310
  304. for _, topic := range topics {
  305. if len(topic) == 0 {
  306. return ErrInvalidTopic // this is the error that 0.8.2 and later correctly return
  307. }
  308. }
  309. return client.tryRefreshMetadata(topics, client.conf.Metadata.Retry.Max)
  310. }
  311. func (client *client) GetOffset(topic string, partitionID int32, time int64) (int64, error) {
  312. if client.Closed() {
  313. return -1, ErrClosedClient
  314. }
  315. offset, err := client.getOffset(topic, partitionID, time)
  316. if err != nil {
  317. if err := client.RefreshMetadata(topic); err != nil {
  318. return -1, err
  319. }
  320. return client.getOffset(topic, partitionID, time)
  321. }
  322. return offset, err
  323. }
  324. func (client *client) Controller() (*Broker, error) {
  325. if client.Closed() {
  326. return nil, ErrClosedClient
  327. }
  328. if !client.conf.Version.IsAtLeast(V0_10_0_0) {
  329. return nil, ErrUnsupportedVersion
  330. }
  331. controller := client.cachedController()
  332. if controller == nil {
  333. if err := client.refreshMetadata(); err != nil {
  334. return nil, err
  335. }
  336. controller = client.cachedController()
  337. }
  338. if controller == nil {
  339. return nil, ErrControllerNotAvailable
  340. }
  341. _ = controller.Open(client.conf)
  342. return controller, nil
  343. }
  344. func (client *client) Coordinator(consumerGroup string) (*Broker, error) {
  345. if client.Closed() {
  346. return nil, ErrClosedClient
  347. }
  348. coordinator := client.cachedCoordinator(consumerGroup)
  349. if coordinator == nil {
  350. if err := client.RefreshCoordinator(consumerGroup); err != nil {
  351. return nil, err
  352. }
  353. coordinator = client.cachedCoordinator(consumerGroup)
  354. }
  355. if coordinator == nil {
  356. return nil, ErrConsumerCoordinatorNotAvailable
  357. }
  358. _ = coordinator.Open(client.conf)
  359. return coordinator, nil
  360. }
  361. func (client *client) RefreshCoordinator(consumerGroup string) error {
  362. if client.Closed() {
  363. return ErrClosedClient
  364. }
  365. response, err := client.getConsumerMetadata(consumerGroup, client.conf.Metadata.Retry.Max)
  366. if err != nil {
  367. return err
  368. }
  369. client.lock.Lock()
  370. defer client.lock.Unlock()
  371. client.registerBroker(response.Coordinator)
  372. client.coordinators[consumerGroup] = response.Coordinator.ID()
  373. return nil
  374. }
  375. // private broker management helpers
  376. // registerBroker makes sure a broker received by a Metadata or Coordinator request is registered
  377. // in the brokers map. It returns the broker that is registered, which may be the provided broker,
  378. // or a previously registered Broker instance. You must hold the write lock before calling this function.
  379. func (client *client) registerBroker(broker *Broker) {
  380. if client.brokers[broker.ID()] == nil {
  381. client.brokers[broker.ID()] = broker
  382. Logger.Printf("client/brokers registered new broker #%d at %s", broker.ID(), broker.Addr())
  383. } else if broker.Addr() != client.brokers[broker.ID()].Addr() {
  384. safeAsyncClose(client.brokers[broker.ID()])
  385. client.brokers[broker.ID()] = broker
  386. Logger.Printf("client/brokers replaced registered broker #%d with %s", broker.ID(), broker.Addr())
  387. }
  388. }
  389. // deregisterBroker removes a broker from the seedsBroker list, and if it's
  390. // not the seedbroker, removes it from brokers map completely.
  391. func (client *client) deregisterBroker(broker *Broker) {
  392. client.lock.Lock()
  393. defer client.lock.Unlock()
  394. if len(client.seedBrokers) > 0 && broker == client.seedBrokers[0] {
  395. client.deadSeeds = append(client.deadSeeds, broker)
  396. client.seedBrokers = client.seedBrokers[1:]
  397. } else {
  398. // we do this so that our loop in `tryRefreshMetadata` doesn't go on forever,
  399. // but we really shouldn't have to; once that loop is made better this case can be
  400. // removed, and the function generally can be renamed from `deregisterBroker` to
  401. // `nextSeedBroker` or something
  402. Logger.Printf("client/brokers deregistered broker #%d at %s", broker.ID(), broker.Addr())
  403. delete(client.brokers, broker.ID())
  404. }
  405. }
  406. func (client *client) resurrectDeadBrokers() {
  407. client.lock.Lock()
  408. defer client.lock.Unlock()
  409. Logger.Printf("client/brokers resurrecting %d dead seed brokers", len(client.deadSeeds))
  410. client.seedBrokers = append(client.seedBrokers, client.deadSeeds...)
  411. client.deadSeeds = nil
  412. }
  413. func (client *client) any() *Broker {
  414. client.lock.RLock()
  415. defer client.lock.RUnlock()
  416. if len(client.seedBrokers) > 0 {
  417. _ = client.seedBrokers[0].Open(client.conf)
  418. return client.seedBrokers[0]
  419. }
  420. // not guaranteed to be random *or* deterministic
  421. for _, broker := range client.brokers {
  422. _ = broker.Open(client.conf)
  423. return broker
  424. }
  425. return nil
  426. }
  427. // private caching/lazy metadata helpers
  428. type partitionType int
  429. const (
  430. allPartitions partitionType = iota
  431. writablePartitions
  432. // If you add any more types, update the partition cache in update()
  433. // Ensure this is the last partition type value
  434. maxPartitionIndex
  435. )
  436. func (client *client) cachedMetadata(topic string, partitionID int32) *PartitionMetadata {
  437. client.lock.RLock()
  438. defer client.lock.RUnlock()
  439. partitions := client.metadata[topic]
  440. if partitions != nil {
  441. return partitions[partitionID]
  442. }
  443. return nil
  444. }
  445. func (client *client) cachedPartitions(topic string, partitionSet partitionType) []int32 {
  446. client.lock.RLock()
  447. defer client.lock.RUnlock()
  448. partitions, exists := client.cachedPartitionsResults[topic]
  449. if !exists {
  450. return nil
  451. }
  452. return partitions[partitionSet]
  453. }
  454. func (client *client) setPartitionCache(topic string, partitionSet partitionType) []int32 {
  455. partitions := client.metadata[topic]
  456. if partitions == nil {
  457. return nil
  458. }
  459. ret := make([]int32, 0, len(partitions))
  460. for _, partition := range partitions {
  461. if partitionSet == writablePartitions && partition.Err == ErrLeaderNotAvailable {
  462. continue
  463. }
  464. ret = append(ret, partition.ID)
  465. }
  466. sort.Sort(int32Slice(ret))
  467. return ret
  468. }
  469. func (client *client) cachedLeader(topic string, partitionID int32) (*Broker, error) {
  470. client.lock.RLock()
  471. defer client.lock.RUnlock()
  472. partitions := client.metadata[topic]
  473. if partitions != nil {
  474. metadata, ok := partitions[partitionID]
  475. if ok {
  476. if metadata.Err == ErrLeaderNotAvailable {
  477. return nil, ErrLeaderNotAvailable
  478. }
  479. b := client.brokers[metadata.Leader]
  480. if b == nil {
  481. return nil, ErrLeaderNotAvailable
  482. }
  483. _ = b.Open(client.conf)
  484. return b, nil
  485. }
  486. }
  487. return nil, ErrUnknownTopicOrPartition
  488. }
  489. func (client *client) getOffset(topic string, partitionID int32, time int64) (int64, error) {
  490. broker, err := client.Leader(topic, partitionID)
  491. if err != nil {
  492. return -1, err
  493. }
  494. request := &OffsetRequest{}
  495. if client.conf.Version.IsAtLeast(V0_10_1_0) {
  496. request.Version = 1
  497. }
  498. request.AddBlock(topic, partitionID, time, 1)
  499. response, err := broker.GetAvailableOffsets(request)
  500. if err != nil {
  501. _ = broker.Close()
  502. return -1, err
  503. }
  504. block := response.GetBlock(topic, partitionID)
  505. if block == nil {
  506. _ = broker.Close()
  507. return -1, ErrIncompleteResponse
  508. }
  509. if block.Err != ErrNoError {
  510. return -1, block.Err
  511. }
  512. if len(block.Offsets) != 1 {
  513. return -1, ErrOffsetOutOfRange
  514. }
  515. return block.Offsets[0], nil
  516. }
  517. // core metadata update logic
  518. func (client *client) backgroundMetadataUpdater() {
  519. defer close(client.closed)
  520. if client.conf.Metadata.RefreshFrequency == time.Duration(0) {
  521. return
  522. }
  523. ticker := time.NewTicker(client.conf.Metadata.RefreshFrequency)
  524. defer ticker.Stop()
  525. for {
  526. select {
  527. case <-ticker.C:
  528. if err := client.refreshMetadata(); err != nil {
  529. Logger.Println("Client background metadata update:", err)
  530. }
  531. case <-client.closer:
  532. return
  533. }
  534. }
  535. }
  536. func (client *client) refreshMetadata() error {
  537. topics := []string{}
  538. if !client.conf.Metadata.Full {
  539. if specificTopics, err := client.MetadataTopics(); err != nil {
  540. return err
  541. } else if len(specificTopics) == 0 {
  542. return ErrNoTopicsToUpdateMetadata
  543. } else {
  544. topics = specificTopics
  545. }
  546. }
  547. if err := client.RefreshMetadata(topics...); err != nil {
  548. return err
  549. }
  550. return nil
  551. }
  552. func (client *client) tryRefreshMetadata(topics []string, attemptsRemaining int) error {
  553. retry := func(err error) error {
  554. if attemptsRemaining > 0 {
  555. Logger.Printf("client/metadata retrying after %dms... (%d attempts remaining)\n", client.conf.Metadata.Retry.Backoff/time.Millisecond, attemptsRemaining)
  556. time.Sleep(client.conf.Metadata.Retry.Backoff)
  557. return client.tryRefreshMetadata(topics, attemptsRemaining-1)
  558. }
  559. return err
  560. }
  561. for broker := client.any(); broker != nil; broker = client.any() {
  562. if len(topics) > 0 {
  563. Logger.Printf("client/metadata fetching metadata for %v from broker %s\n", topics, broker.addr)
  564. } else {
  565. Logger.Printf("client/metadata fetching metadata for all topics from broker %s\n", broker.addr)
  566. }
  567. req := &MetadataRequest{Topics: topics}
  568. if client.conf.Version.IsAtLeast(V0_10_0_0) {
  569. req.Version = 1
  570. }
  571. response, err := broker.GetMetadata(req)
  572. switch err.(type) {
  573. case nil:
  574. allKnownMetaData := len(topics) == 0
  575. // valid response, use it
  576. shouldRetry, err := client.updateMetadata(response, allKnownMetaData)
  577. if shouldRetry {
  578. Logger.Println("client/metadata found some partitions to be leaderless")
  579. return retry(err) // note: err can be nil
  580. }
  581. return err
  582. case PacketEncodingError:
  583. // didn't even send, return the error
  584. return err
  585. default:
  586. // some other error, remove that broker and try again
  587. Logger.Println("client/metadata got error from broker while fetching metadata:", err)
  588. _ = broker.Close()
  589. client.deregisterBroker(broker)
  590. }
  591. }
  592. Logger.Println("client/metadata no available broker to send metadata request to")
  593. client.resurrectDeadBrokers()
  594. return retry(ErrOutOfBrokers)
  595. }
  596. // if no fatal error, returns a list of topics that need retrying due to ErrLeaderNotAvailable
  597. func (client *client) updateMetadata(data *MetadataResponse, allKnownMetaData bool) (retry bool, err error) {
  598. client.lock.Lock()
  599. defer client.lock.Unlock()
  600. // For all the brokers we received:
  601. // - if it is a new ID, save it
  602. // - if it is an existing ID, but the address we have is stale, discard the old one and save it
  603. // - otherwise ignore it, replacing our existing one would just bounce the connection
  604. for _, broker := range data.Brokers {
  605. client.registerBroker(broker)
  606. }
  607. client.controllerID = data.ControllerID
  608. if allKnownMetaData {
  609. client.metadata = make(map[string]map[int32]*PartitionMetadata)
  610. client.metadataTopics = make(map[string]none)
  611. client.cachedPartitionsResults = make(map[string][maxPartitionIndex][]int32)
  612. }
  613. for _, topic := range data.Topics {
  614. // topics must be added firstly to `metadataTopics` to guarantee that all
  615. // requested topics must be recorded to keep them trackable for periodically
  616. // metadata refresh.
  617. if _, exists := client.metadataTopics[topic.Name]; !exists {
  618. client.metadataTopics[topic.Name] = none{}
  619. }
  620. delete(client.metadata, topic.Name)
  621. delete(client.cachedPartitionsResults, topic.Name)
  622. switch topic.Err {
  623. case ErrNoError:
  624. break
  625. case ErrInvalidTopic, ErrTopicAuthorizationFailed: // don't retry, don't store partial results
  626. err = topic.Err
  627. continue
  628. case ErrUnknownTopicOrPartition: // retry, do not store partial partition results
  629. err = topic.Err
  630. retry = true
  631. continue
  632. case ErrLeaderNotAvailable: // retry, but store partial partition results
  633. retry = true
  634. break
  635. default: // don't retry, don't store partial results
  636. Logger.Printf("Unexpected topic-level metadata error: %s", topic.Err)
  637. err = topic.Err
  638. continue
  639. }
  640. client.metadata[topic.Name] = make(map[int32]*PartitionMetadata, len(topic.Partitions))
  641. for _, partition := range topic.Partitions {
  642. client.metadata[topic.Name][partition.ID] = partition
  643. if partition.Err == ErrLeaderNotAvailable {
  644. retry = true
  645. }
  646. }
  647. var partitionCache [maxPartitionIndex][]int32
  648. partitionCache[allPartitions] = client.setPartitionCache(topic.Name, allPartitions)
  649. partitionCache[writablePartitions] = client.setPartitionCache(topic.Name, writablePartitions)
  650. client.cachedPartitionsResults[topic.Name] = partitionCache
  651. }
  652. return
  653. }
  654. func (client *client) cachedCoordinator(consumerGroup string) *Broker {
  655. client.lock.RLock()
  656. defer client.lock.RUnlock()
  657. if coordinatorID, ok := client.coordinators[consumerGroup]; ok {
  658. return client.brokers[coordinatorID]
  659. }
  660. return nil
  661. }
  662. func (client *client) cachedController() *Broker {
  663. client.lock.RLock()
  664. defer client.lock.RUnlock()
  665. return client.brokers[client.controllerID]
  666. }
  667. func (client *client) getConsumerMetadata(consumerGroup string, attemptsRemaining int) (*FindCoordinatorResponse, error) {
  668. retry := func(err error) (*FindCoordinatorResponse, error) {
  669. if attemptsRemaining > 0 {
  670. Logger.Printf("client/coordinator retrying after %dms... (%d attempts remaining)\n", client.conf.Metadata.Retry.Backoff/time.Millisecond, attemptsRemaining)
  671. time.Sleep(client.conf.Metadata.Retry.Backoff)
  672. return client.getConsumerMetadata(consumerGroup, attemptsRemaining-1)
  673. }
  674. return nil, err
  675. }
  676. for broker := client.any(); broker != nil; broker = client.any() {
  677. Logger.Printf("client/coordinator requesting coordinator for consumergroup %s from %s\n", consumerGroup, broker.Addr())
  678. request := new(FindCoordinatorRequest)
  679. request.CoordinatorKey = consumerGroup
  680. request.CoordinatorType = CoordinatorGroup
  681. response, err := broker.FindCoordinator(request)
  682. if err != nil {
  683. Logger.Printf("client/coordinator request to broker %s failed: %s\n", broker.Addr(), err)
  684. switch err.(type) {
  685. case PacketEncodingError:
  686. return nil, err
  687. default:
  688. _ = broker.Close()
  689. client.deregisterBroker(broker)
  690. continue
  691. }
  692. }
  693. switch response.Err {
  694. case ErrNoError:
  695. Logger.Printf("client/coordinator coordinator for consumergroup %s is #%d (%s)\n", consumerGroup, response.Coordinator.ID(), response.Coordinator.Addr())
  696. return response, nil
  697. case ErrConsumerCoordinatorNotAvailable:
  698. Logger.Printf("client/coordinator coordinator for consumer group %s is not available\n", consumerGroup)
  699. // This is very ugly, but this scenario will only happen once per cluster.
  700. // The __consumer_offsets topic only has to be created one time.
  701. // The number of partitions not configurable, but partition 0 should always exist.
  702. if _, err := client.Leader("__consumer_offsets", 0); err != nil {
  703. Logger.Printf("client/coordinator the __consumer_offsets topic is not initialized completely yet. Waiting 2 seconds...\n")
  704. time.Sleep(2 * time.Second)
  705. }
  706. return retry(ErrConsumerCoordinatorNotAvailable)
  707. default:
  708. return nil, response.Err
  709. }
  710. }
  711. Logger.Println("client/coordinator no available broker to send consumer metadata request to")
  712. client.resurrectDeadBrokers()
  713. return retry(ErrOutOfBrokers)
  714. }