morningman opened a new pull request, #61: URL: https://github.com/apache/doris-shade/pull/61
## Summary Hive/Hadoop transitively bundle an ancient, unrelocated fastutil (6.5.x). On Doris FE/BE classpaths it shadows the modern `it.unimi.dsi:fastutil(-core)`, so the old `Long2ObjectOpenHashMap` wins and throws `NoSuchMethodError` on `computeIfAbsent(long, Long2ObjectFunction)`. This PR relocates `it.unimi.dsi.fastutil` -> `shade.doris.hive.it.unimi.dsi.fastutil` in the `hive-catalog-shade` shade config so the shaded jar can no longer leak fastutil onto the Doris classpath. Also bumps the version `3.1.1-SNAPSHOT` -> `3.1.2-SNAPSHOT`. ## Test Plan - [ ] CI builds the shaded `hive-catalog-shade` jar - [ ] Verify `it.unimi.dsi.fastutil` classes in the shaded jar are relocated under `shade.doris.hive.` - [ ] Confirm the `NoSuchMethodError` no longer occurs on a Doris FE/BE using a Hive catalog 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
