You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by GitBox <gi...@apache.org> on 2020/01/10 02:04:35 UTC

[GitHub] [servicecomb-java-chassis] mayf94 opened a new issue #1519: Unhandled exception to service ConfigQueryService schema application

mayf94 opened a new issue #1519: Unhandled exception to service ConfigQueryService schema application
URL: https://github.com/apache/servicecomb-java-chassis/issues/1519
 
 
   ARM环境下,当业务在启动CSE,加载Schema时候,报了Unhandled exception to service ConfigQueryService schema application这个错误,随后就关闭了Servicecomb,求助是什么原因,代码没有问题,在其他环境运行正常。

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [servicecomb-java-chassis] liubao68 commented on issue #1519: Unhandled exception to service ConfigQueryService schema application

Posted by GitBox <gi...@apache.org>.
liubao68 commented on issue #1519: Unhandled exception to service ConfigQueryService schema application
URL: https://github.com/apache/servicecomb-java-chassis/issues/1519#issuecomment-572856171
 
 
   Can you attach the stack trace to see what the error is ?

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [servicecomb-java-chassis] mayf94 commented on issue #1519: Unhandled exception to service ConfigQueryService schema application

Posted by GitBox <gi...@apache.org>.
mayf94 commented on issue #1519: Unhandled exception to service ConfigQueryService schema application
URL: https://github.com/apache/servicecomb-java-chassis/issues/1519#issuecomment-572858176
 
 
   > Can you attach the stack trace to see what the error is ?
   
   2020-01-10 11:24:29.357|INFO |[main]||create CtClass cse.gen.XXXX.BlackItem in classLoader sun.misc.Launcher$AppClassLoader@12a3a380.
   2020-01-10 11:24:29.358|ERROR|[main]||[SchemaMeta:77]|Unhandled exception to service ConfigQueryService schema application
   2020-01-10 11:24:29.359|INFO |[main]||[SCBEngine:274]|ServiceComb is closing now...
   2020-01-10 11:24:29.359|INFO |[main]||[SCBEngine:165]|BootListener org.apache.servicecomb.XXXXX.RestEngineSchemaListener succeed to process BEFORE_CLOSE.
   2020-01-10 11:24:29.359|INFO |[main]||[SCBEngine:165]|BootListener org.apache.servicecomb.XXXXX.ProducerProviderManager succeed to process BEFORE_CLOSE.
   2020-01-10 11:24:29.361|INFO |[main]||[RemoteServiceRegistry:80]|service center task is shutdown.
   2020-01-10 11:24:29.361|INFO |[main]||[VertxUtils:193]|Closing vertx registry.
   2020-01-10 11:24:29.361|INFO |[main]||[VertxUtils:197]|Vertx registry not exist.
   2020-01-10 11:24:29.361|INFO |[main]||[VertxUtils:193]|Closing vertx config-center.
   2020-01-10 11:24:29.361|INFO |[main]||[VertxUtils:197]|Vertx config-center not exist.
   2020-01-10 11:24:29.361|INFO |[main]||[VertxUtils:193]|Closing vertx transport.
   2020-01-10 11:24:29.390|INFO |[vert.x-eventloop-thread-16]||[VertxUtils:204]|Success to close vertx transport.
   
   that's all i have..

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [servicecomb-java-chassis] mayf94 commented on issue #1519: Unhandled exception to service ConfigQueryService schema application

Posted by GitBox <gi...@apache.org>.
mayf94 commented on issue #1519: Unhandled exception to service ConfigQueryService schema application
URL: https://github.com/apache/servicecomb-java-chassis/issues/1519#issuecomment-572857401
 
 
   > Can you attach the stack trace to see what the error is ?
   
   ![image](https://user-images.githubusercontent.com/32881735/72123524-81928780-339c-11ea-9c6d-c9cf4802a10a.png)
   that's all I have...

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [servicecomb-java-chassis] mayf94 removed a comment on issue #1519: Unhandled exception to service ConfigQueryService schema application

Posted by GitBox <gi...@apache.org>.
mayf94 removed a comment on issue #1519: Unhandled exception to service ConfigQueryService schema application
URL: https://github.com/apache/servicecomb-java-chassis/issues/1519#issuecomment-572857401
 
 
   > Can you attach the stack trace to see what the error is ?
   
   ![image](https://user-images.githubusercontent.com/32881735/72123524-81928780-339c-11ea-9c6d-c9cf4802a10a.png)
   that's all I have...

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [servicecomb-java-chassis] mayf94 commented on issue #1519: Unhandled exception to service ConfigQueryService schema application

Posted by GitBox <gi...@apache.org>.
mayf94 commented on issue #1519: Unhandled exception to service ConfigQueryService schema application
URL: https://github.com/apache/servicecomb-java-chassis/issues/1519#issuecomment-572908638
 
 
   > I find the code where the exception is thrown
   > 
   > ```
   >   public SchemaMeta(MicroserviceMeta microserviceMeta, String schemaId, Swagger swagger) {
   >     this.microserviceMeta = microserviceMeta;
   >     this.schemaId = schemaId;
   >     this.swagger = swagger;
   >     this.microserviceQualifiedName = microserviceMeta.getMicroserviceName() + "." + schemaId;
   > 
   >     try {
   >       initOperationMetas();
   >     } catch (Throwable e) {
   >       LOGGER.error("Unhandled exception to {}.", microserviceQualifiedName, e);
   >       throw e;
   >     }
   >   }
   > ```
   > 
   > The stack trace is printed. Yours logs seem not complete.
   
   ![image](https://user-images.githubusercontent.com/32881735/72133952-a64b2700-33bd-11ea-924b-517e4d58e805.png)
   csesdk版本问2.3.70,和你那个好像不太一样?这个没有打印e内容,而且这套代码在x86环境上是可以正常运行的

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [servicecomb-java-chassis] liubao68 commented on issue #1519: Unhandled exception to service ConfigQueryService schema application

Posted by GitBox <gi...@apache.org>.
liubao68 commented on issue #1519: Unhandled exception to service ConfigQueryService schema application
URL: https://github.com/apache/servicecomb-java-chassis/issues/1519#issuecomment-573260863
 
 
   Sorry, github will not load images sometimes, I cannot see your logs. Maybe you need to check the related code or debug it to find the exception message

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [servicecomb-java-chassis] liubao68 commented on issue #1519: Unhandled exception to service ConfigQueryService schema application

Posted by GitBox <gi...@apache.org>.
liubao68 commented on issue #1519: Unhandled exception to service ConfigQueryService schema application
URL: https://github.com/apache/servicecomb-java-chassis/issues/1519#issuecomment-572895128
 
 
   I find the code where the exception is thrown
   
   ```
     public SchemaMeta(MicroserviceMeta microserviceMeta, String schemaId, Swagger swagger) {
       this.microserviceMeta = microserviceMeta;
       this.schemaId = schemaId;
       this.swagger = swagger;
       this.microserviceQualifiedName = microserviceMeta.getMicroserviceName() + "." + schemaId;
   
       try {
         initOperationMetas();
       } catch (Throwable e) {
         LOGGER.error("Unhandled exception to {}.", microserviceQualifiedName, e);
         throw e;
       }
     }
   ````
   
   The stack trace is printed. Yours logs seem not complete.
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services