gaborgsomogyi commented on issue #26995: [SPARK-30341][SQL] Overflow check for 
interval arithmetic operations
URL: https://github.com/apache/spark/pull/26995#issuecomment-572045251
 
 
   @HeartSaVioR Thanks for pinging. I've had a slight look and seems like it 
may caused by `kafka-clients` 2.4 upgrade. Instead of `ZkUtils` now 
`KafkaZkClient` used to call `getAllBrokersInCluster` which is causing the 
issue:
   ```
   Caused by: sbt.ForkMain$ForkError: 
org.apache.zookeeper.KeeperException$AuthFailedException: KeeperErrorCode = 
AuthFailed for /brokers/ids
        at org.apache.zookeeper.KeeperException.create(KeeperException.java:130)
        at org.apache.zookeeper.KeeperException.create(KeeperException.java:54)
        at 
kafka.zookeeper.AsyncResponse.resultException(ZooKeeperClient.scala:554)
        at kafka.zk.KafkaZkClient.getChildren(KafkaZkClient.scala:719)
        at kafka.zk.KafkaZkClient.getSortedBrokerList(KafkaZkClient.scala:455)
        at 
kafka.zk.KafkaZkClient.getAllBrokersInCluster(KafkaZkClient.scala:404)
        at 
org.apache.spark.sql.kafka010.KafkaTestUtils.$anonfun$setup$3(KafkaTestUtils.scala:293)
        at 
org.scalatest.concurrent.Eventually.makeAValiantAttempt$1(Eventually.scala:395)
        at 
org.scalatest.concurrent.Eventually.tryTryAgain$1(Eventually.scala:409)
        ... 20 more
   ```
   My first guess is that the new API behaves somehow different and/or it may 
contain some bugs.
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to