Replies: 6 comments 11 replies
-
![]() |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
3.3.1版本,我安装完成,worker-server启动成功,但是会自动关闭——bash /bin/start-all.sh启动成功,用bash /bin/dolphinscheduler-daemon.sh start worker-server启动worker-server就不行。就worker节点失败,其它节点正常。我不知道,我这是什么原因导致失败。 Caused by: java.lang.NoClassDefFoundError: org/apache/htrace/core/Tracer$Builder |
Beta Was this translation helpful? Give feedback.
-
看了下,在3.3.x的cp中的缺少了mssql-jdbc-11.2.1.jre8.jar 依赖,所以当你的plugins/datasource-plugins中包含了dolphinscheduler-datasource-azure-sql-3.3.0-alpha.jar的时候,azure datasource里面引了import com.microsoft.sqlserver.jdbc.SQLServerDataSource; |
Beta Was this translation helpful? Give feedback.
-
暂时workaround是,去maven repo 中下载shade jar 放到plugin里面,或者你手动把缺少的小依赖放到$DOLPHINSCHEDULER_HOME/$module/libs/下面 |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Caused by: java.util.ServiceConfigurationError: org.apache.dolphinscheduler.plugin.datasource.api.datasource.DataSourceProcessor: Provider org.apache.dolphins
cheduler.plugin.datasource.azuresql.param.AzureSQLDataSourceProcessor could not be instantiated
at java.util.ServiceLoader.fail(ServiceLoader.java:232)
at java.util.ServiceLoader.access$100(ServiceLoader.java:185)
at java.util.ServiceLoader$LazyIterator.nextService(ServiceLoader.java:384)
at java.util.ServiceLoader$LazyIterator.next(ServiceLoader.java:404)
at java.util.ServiceLoader$1.next(ServiceLoader.java:480)
at java.lang.Iterable.forEach(Iterable.java:74)
at org.apache.dolphinscheduler.plugin.datasource.api.plugin.DataSourceProcessorManager.installProcessor(DataSourceProcessorManager.java:42)
at org.apache.dolphinscheduler.plugin.datasource.api.plugin.DataSourceProcessorProvider.(DataSourceProcessorProvider.java:34)
at org.apache.dolphinscheduler.server.master.MasterServer.initialized(MasterServer.java:126)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.
java:389)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPo
stProcessor.java:333)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostPr
ocessor.java:157)
... 18 common frames omitted
Caused by: java.lang.NoClassDefFoundError: com/microsoft/sqlserver/jdbc/SQLServerException
at java.lang.Class.getDeclaredConstructors0(Native Method)
at java.lang.Class.privateGetDeclaredConstructors(Class.java:2671)
at java.lang.Class.getConstructor0(Class.java:3075)
at java.lang.Class.newInstance(Class.java:412)
at java.util.ServiceLoader$LazyIterator.nextService(ServiceLoader.java:380)
... 31 common frames omitted
Caused by: java.lang.ClassNotFoundException: com.microsoft.sqlserver.jdbc.SQLServerException
at java.net.URLClassLoader.findClass(URLClassLoader.java:387)
at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:352)
at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
... 36 common frames omitted
Beta Was this translation helpful? Give feedback.
All reactions