Re: Starting out with Kafka

2022-11-13 Thread John Roesler
Glad to hear it! -John On Fri, Nov 11, 2022, at 14:57, vinay deshpande wrote: > Hi John, > Thanks a ton. Things are looking good now. > Even though Scala was present on my machine the ./gradlew compile was > unable to find the Scala classes, on installing Scala plugin on IDE and > then recompilin

Re: Starting out with Kafka

2022-11-11 Thread vinay deshpande
Hi John, Thanks a ton. Things are looking good now. Even though Scala was present on my machine the ./gradlew compile was unable to find the Scala classes, on installing Scala plugin on IDE and then recompiling from terminal the projecting is building fine now. Thanks John and Ziming for helping o

Re: Starting out with Kafka

2022-11-11 Thread John Roesler
Hmm, I assume you did, but just to be sure, did you compile from the terminal before trying to build in idea? There are some generated Java classes that might be getting missed. The compile step is probably something like “compileJava compileScala compileTestJava compileTestScala” from the top

Re: Starting out with Kafka

2022-11-11 Thread vinay deshpande
Hi, I tried both the suggestions given in the previous mail threads, all the unit tests passed except for testMuteOnOOM(). But the issue with IDE persists. I even tried invalidating the cache a few times, deleted the .bin/ and .idea/ folder and built again but there are quite few imports that aren

Re: Starting out with Kafka

2022-11-11 Thread John Roesler
Hello Vinay, One thing I’ve noticed recently is that I have to click the “build” button in intellij before I can use the “run” or “debug” buttons. I’m not sure why. Welcome to the community! -John On Fri, Nov 11, 2022, at 02:47, deng ziming wrote: > Hello, Vinay > Kafka uses gradlew as build t

Starting out with Kafka

2022-11-10 Thread vinay deshpande
Hi All, I have a basic question: I tried importing kafka source code into intellij but there are bunch of imports that IDE cannot find like these: import kafka.api.ApiVersion; import kafka.log.CleanerConfig; import kafka.log.LogConfig; import kafka.log.LogManager; TIA. Thanks, Vinay