yyar edited a comment on issue #4162: URL: https://github.com/apache/hudi/issues/4162#issuecomment-989664124
@xushiyan I found a cause of this problem when I'm using sbt. [The embedded-kafka library](https://github.com/embeddedkafka/embedded-kafka) for testing kafka streaming had been caused this problem. I removed this line in my test dependency and my test had been changed to be ok. ```sbt "io.github.embeddedkafka" %% "embedded-kafka" % "2.4.1" % "test", ``` I think dependency libraries in embedded-kafka can cause this problem and same library may been used in spark 3.2. Can you please explain this problem occurs when using spark 3.2 at code level? (added) After excluding avro library in embedded-kafka, my unit test had been ok which contains embedded-kafka library. Could a specific version of avro library cause this problem? -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
