when I load community and third-party extensions, I use java -cp "dist/druid/lib/*" -Ddruid.extensions.directory="dist/druid/extensions" -Ddruid.extensions.hadoopDependenciesDir="dist/druid/hadoop-dependencies" org.apache.druid.cli.Main tools pull-deps --no-default-hadoop -c "io.druid.extensions.contrib:druid-orc-extensions:0.12.0"
to load druid-orc-extension ,but the command always return error with can not find or load io.druid.cli.Main. I highly appreciate if someone can help me!!!
I use the imply, any suggestions?
If you're using 0.13.0 it should all be org.apache, like
java \
-cp "dist/druid/lib/*" \
-Ddruid.extensions.directory="dist/druid/extensions" \
-Ddruid.extensions.hadoopDependenciesDir="dist/druid/hadoop-dependencies" \
org.apache.druid.cli.Main tools pull-deps \
--no-default-hadoop \
-c "org.apache.druid.extensions.contrib:druid-orc-extensions:0.13.0-incubating"
thank you gianm 銆倅eah锛寃hen I use 0.13.0锛宼his will work锛宐ut I use imply.io锛宎nd it always return Error: Could not find or load main class io.druid.cli.Main
I using 0.14.2 and When I used this command in my druid distribution: java cat conf/druid/coordinator/jvm.config | xargs -cp conf/druid/_common:conf/druid/coordinator:lib/* org.apache.druid.cli.Main server coordinator
getting same error like could not found or load org.apache.druid.cli.Main.
This issue has been marked as stale due to 280 days of inactivity. It will be closed in 4 weeks if no further activity occurs. If this issue is still relevant, please simply write any comment. Even if closed, you can still revive the issue at any time or discuss it on the [email protected] list. Thank you for your contributions.
This issue has been closed due to lack of activity. If you think that is incorrect, or the issue requires additional review, you can revive the issue at any time.
Most helpful comment
If you're using 0.13.0 it should all be
org.apache, like