SpringBootAPI在使用spark缓存数据时崩溃

xwbd5t1u  于 2021-05-27  发布在  Spark
关注(0)|答案(0)|浏览(347)

我正在运行一个springboot应用程序,需要使用spark在内存中缓存一些数据。
如果我先启动api,然后缓存数据,就可以了。
但是如果我先缓存数据,然后启动api,在这种情况下,应用程序在启动api时崩溃。
下面是错误和一小段代码:

  1. . ____ _ __ _ _
  2. /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
  3. ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
  4. \\/ ___)| |_)| | | | | || (_| | ) ) ) )
  5. ' |____| .__|_| |_|_| |_\__, | / / / /
  6. =========|_|==============|___/=/_/_/_/
  7. :: Spring Boot :: (v2.0.5.RELEASE)
  8. 2020-09-08 17:57:51.344 INFO 2866 --- [ main] com.app.api.ApiStart : Starting ApiStart v1.0-SNAPSHOT on my-vm1 with PID 2866 (/home/app/AscBasicInfoDev-1.0-SNAPSHOT.jar started by app in /home/app/)
  9. 2020-09-08 17:57:51.345 INFO 2866 --- [ main] com.app.api.ApiStart : No active profile set, falling back to default profiles: default
  10. 2020-09-08 17:57:51.851 INFO 2866 --- [ main] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@372f7bc: startup date [Tue Sep 08 17:57:51 UTC 2020]; root of context hierarchy
  11. 2020-09-08 17:57:53.182 INFO 2866 --- [ main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
  12. 2020-09-08 17:57:53.937 INFO 2866 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
  13. 2020-09-08 17:57:53.989 INFO 2866 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  14. 2020-09-08 17:57:53.989 INFO 2866 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.34
  15. 2020-09-08 17:57:54.010 INFO 2866 --- [ost-startStop-1] o.a.catalina.core.AprLifecycleListener : The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib]
  16. 2020-09-08 17:57:54.053 ERROR 2866 --- [cat-startStop-1] org.apache.catalina.core.ContainerBase : A child container failed during start
  17. java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]
  18. at java.util.concurrent.FutureTask.report(FutureTask.java:122) [na:1.8.0_261]
  19. at java.util.concurrent.FutureTask.get(FutureTask.java:192) [na:1.8.0_261]
  20. at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:942) ~[tomcat-embed-core-8.5.34.jar!/:8.5.34]
  21. at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:872) [tomcat-embed-core-8.5.34.jar!/:8.5.34]
  22. at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150) [tomcat-embed-core-8.5.34.jar!/:8.5.34]
  23. at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1420) [tomcat-embed-core-8.5.34.jar!/:8.5.34]
  24. at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1410) [tomcat-embed-core-8.5.34.jar!/:8.5.34]
  25. at java.util.concurrent.FutureTask.run(FutureTask.java:266) [na:1.8.0_261]
  26. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [na:1.8.0_261]
  27. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [na:1.8.0_261]
  28. at java.lang.Thread.run(Thread.java:748) [na:1.8.0_261]
  29. Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]
  30. at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167) [tomcat-embed-core-8.5.34.jar!/:8.5.34]
  31. ... 6 common frames omitted
  32. Caused by: org.apache.catalina.LifecycleException: Failed to initialize component [org.apache.catalina.webresources.StandardRoot@138f2be]
  33. at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:112) [tomcat-embed-core-8.5.34.jar!/:8.5.34]
  34. at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:140) [tomcat-embed-core-8.5.34.jar!/:8.5.34]
  35. at org.apache.catalina.core.StandardContext.resourcesStart(StandardContext.java:4907) ~[tomcat-embed-core-8.5.34.jar!/:8.5.34]
  36. at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5042) ~[tomcat-embed-core-8.5.34.jar!/:8.5.34]
  37. at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150) [tomcat-embed-core-8.5.34.jar!/:8.5.34]
  38. ... 6 common frames omitted
  39. Caused by: java.lang.Error: factory already defined
  40. at java.net.URL.setURLStreamHandlerFactory(URL.java:1134) ~[na:1.8.0_261]
  41. at org.apache.catalina.webresources.TomcatURLStreamHandlerFactory.<init>(TomcatURLStreamHandlerFactory.java:130) ~[tomcat-embed-core-8.5.34.jar!/:8.5.34]
  42. at org.apache.catalina.webresources.TomcatURLStreamHandlerFactory.getInstanceInternal(TomcatURLStreamHandlerFactory.java:53) ~[tomcat-embed-core-8.5.34.jar!/:8.5.34]
  43. at org.apache.catalina.webresources.TomcatURLStreamHandlerFactory.register(TomcatURLStreamHandlerFactory.java:77) ~[tomcat-embed-core-8.5.34.jar!/:8.5.34]
  44. at org.apache.catalina.webresources.StandardRoot.registerURLStreamHandlerFactory(StandardRoot.java:699) ~[tomcat-embed-core-8.5.34.jar!/:8.5.34]
  45. at org.apache.catalina.webresources.StandardRoot.initInternal(StandardRoot.java:682) ~[tomcat-embed-core-8.5.34.jar!/:8.5.34]
  46. at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:107) [tomcat-embed-core-8.5.34.jar!/:8.5.34]
  47. ... 10 common frames omitted
  1. // This will create a sparksession
  2. SparkConnect sparkConnect = new SparkConnect();
  3. sparkConnect.createSparkSession();
  4. // This will run spark.sql() and cache some data and fetch the count
  5. // If this is called after SpringApplication.run, then also it works fine
  6. sparkConnect.cacheDataset();
  7. // This will start the springboot api
  8. // This is where application crashes
  9. SpringApplication.run(ApiStart.class, args);

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题