daniellavoie opened a new pull request #6758: URL: https://github.com/apache/incubator-pinot/pull/6758
## Description Our internal CI and local builds would encounter a classpath issue on `pinot-hadoop` test phase. ``` java.lang.NoSuchMethodError: com.google.common.cache.CacheBuilder.ticker(Lcom/google/common/base/Ticker;)Lcom/google/common/cache/CacheBuilder; at org.apache.hadoop.security.Groups.<init>(Groups.java:99) ``` The root caused what identified using a `-verbose` jvm args overwrite on the `pinot-hadoop` maven module. ``` [Loaded com.google.common.cache.CacheBuilder from file:/Users/daniellavoie/.m2/repository/org/apache/pinot/pinot-common/0.7.0-SNAPSHOT/pinot-common-0.7.0-SNAPSHOT-shaded.jar] ``` The fix involves relocating the `com.google.common.cache` package of `pinot-common` to `shaded.com.google.common.cache`. Fixes #6757 -- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org