Replies: 1 comment
-
A plugin isn't simply a jar file, there's also a manifest which is needed. Plugins are usually the Please check with whoever wrote the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I am trying to add jdbc connector (trino-jdbc-450.jar) to a trino running in docker (trinodb/trino:450) but i have the following errors:
trino | 2025-02-06T16:07:23.553Z ERROR main io.trino.server.Server No service providers of type io.trino.spi.Plugin in the classpath: [file:/data/trino/plugin/jdbc/trino-jdbc-450.jar]
trino | java.lang.IllegalStateException: No service providers of type io.trino.spi.Plugin in the classpath: [file:/data/trino/plugin/jdbc/trino-jdbc-450.jar]
trino | at com.google.common.base.Preconditions.checkState(Preconditions.java:838)
trino | at io.trino.server.PluginManager.loadPlugin(PluginManager.java:170)
trino | at io.trino.server.PluginManager.loadPlugin(PluginManager.java:160)
trino | at io.trino.server.ServerPluginsProvider.lambda$loadPlugins$1(ServerPluginsProvider.java:57)
trino | at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317)
trino | at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:572)
trino | at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317)
trino | at com.google.common.util.concurrent.DirectExecutor.execute(DirectExecutor.java:31)
trino | at java.base/java.util.concurrent.ExecutorCompletionService.submit(ExecutorCompletionService.java:186)
trino | at io.trino.util.Executors.executeUntilFailure(Executors.java:46)
trino | at io.trino.server.ServerPluginsProvider.loadPlugins(ServerPluginsProvider.java:52)
trino | at io.trino.server.PluginManager.loadPlugins(PluginManager.java:142)
trino | at io.trino.server.Server.doStart(Server.java:147)
trino | at io.trino.server.Server.lambda$start$0(Server.java:93)
trino | at io.trino.$gen.Trino_450____20250206_160714_1.run(Unknown Source)
trino | at io.trino.server.Server.start(Server.java:93)
trino | at io.trino.server.TrinoServer.main(TrinoServer.java:37)
Am i doing it wrong ? is not possible to add a jdbc connector when running on docker ?
Thank you,
Massi
Beta Was this translation helpful? Give feedback.
All reactions