91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

kafka high-level consumer 多線程訪

發布時間:2020-06-09 04:07:32 來源:網絡 閱讀:712 作者:jndsdsoft 欄目:移動開發

在使用kafka high-level的consumer,使用多線程消費數據時報錯,簡單分析一下原因下載 ,ConsumerIterator取不到消息時會阻塞,并且將內部狀態置為FAILED,當其他線程訪問時就會拋出異常。

 

 

Java代碼  kafka high-level consumer 多線程訪

  1.  def hasNext(): Boolean = {  

  2.     if(state == FAILED)         //處于FAILED狀態時,另外線程訪問會直接異常  

  3.       throw new IllegalStateException("Iterator is in failed state")  

  4.     state match {  

  5.       case DONE => false  

  6.       case READY => true  

  7.       case _ => maybeComputeNext()  

  8.     }  

  9.   }  

  10.   

  11.   

  12.   def maybeComputeNext(): Boolean = {  

  13.     state = FAILED              //重置了狀態  

  14.     nextItem = Some(makeNext())          

  15.     if(state == DONE) {  

  16.       false  

  17.     } else {  

  18.       state = READY  

  19.       true  

  20.     }  

  21.   }  

  22.   下載

  23.   

  24. protected def makeNext(): MessageAndMetadata[K, V] = {  

  25.     var currentDataChunk: FetchedDataChunk = null  

  26.     // if we don't have an iterator, get one  

  27.     var localCurrent = current.get()  

  28.     if(localCurrent == null || !localCurrent.hasNext) {  

  29.       if (consumerTimeoutMs < 0)  

  30.         currentDataChunk = channel.take             //channel是BlockingQueue這里會阻塞  

  31.   

  32.       else {  

  33.         currentDataChunk = channel.poll(consumerTimeoutMs, TimeUnit.MILLISECONDS)  

  34.         if (currentDataChunk == null) {  

  35.           // reset state to make the iterator re-iterable  

  36.           resetState()  

  37.           throw new ConsumerTimeoutException  

  38.         }  

  39.       }  

  40. //省略部分代碼  

  41. }  


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乾安县| 辉南县| 正安县| 梓潼县| 扶余县| 中牟县| 江山市| 昌平区| 甘谷县| 青州市| 滦平县| 蕉岭县| 鹤岗市| 沾益县| 兴安县| 芮城县| 铜鼓县| 纳雍县| 乌拉特后旗| 铁岭县| 石门县| 衡东县| 福海县| 西宁市| 额敏县| 永胜县| 曲水县| 美姑县| 衡山县| 延寿县| 湾仔区| 聂荣县| 明溪县| 五台县| 陆川县| 信丰县| 若羌县| 福建省| 额敏县| 宝应县| 玉龙|