You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by "90yangkang (via GitHub)" <gi...@apache.org> on 2023/06/08 10:02:06 UTC

[GitHub] [shardingsphere] 90yangkang opened a new issue, #26199: I have a problem while to use shardingspherejdbc,I hope it can be resolved。

90yangkang opened a new issue, #26199:
URL: https://github.com/apache/shardingsphere/issues/26199

    I use  shardingsphere JDBC 5.3.2
   **Question Description:**
   ### 1. I can execute the program normally in the idea,But when I package the program and execute it on the server, there are exceptions,error log :
    java.lang.RuntimeException: Failed to get driver instance for jdbcUrl=jdbc:mysql://test:3306/bt_mall_wey?useUnicode=true&characterEncoding=utf-8&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
           at com.zaxxer.hikari.util.DriverDataSource.<init>(DriverDataSource.java:114)
           at com.zaxxer.hikari.pool.PoolBase.initializeDataSource(PoolBase.java:325)
           at com.zaxxer.hikari.pool.PoolBase.<init>(PoolBase.java:114)
           at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:108)
           at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
           at org.apache.shardingsphere.infra.datasource.state.DataSourceStateManager.checkState(DataSourceStateManager.java:84)
           at org.apache.shardingsphere.infra.datasource.state.DataSourceStateManager.initState(DataSourceStateManager.java:79)
           at org.apache.shardingsphere.infra.datasource.state.DataSourceStateManager.lambda$initStates$0(DataSourceStateManager.java:70)
           at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:684)
           at org.apache.shardingsphere.infra.datasource.state.DataSourceStateManager.initStates(DataSourceStateManager.java:70)
           at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.lambda$checkDataSourceStates$4(MetaDataContextsFactory.java:114)
           at java.base/java.util.HashMap.forEach(HashMap.java:1336)
           at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.checkDataSourceStates(MetaDataContextsFactory.java:112)
           at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.create(MetaDataContextsFactory.java:87)
           at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.create(MetaDataContextsFactory.java:68)
           at org.apache.shardingsphere.mode.manager.standalone.StandaloneContextManagerBuilder.build(StandaloneContextManagerBuilder.java:53)
           at org.apache.shardingsphere.driver.jdbc.core.datasource.ShardingSphereDataSource.createContextManager(ShardingSphereDataSource.java:77)
           at org.apache.shardingsphere.driver.jdbc.core.datasource.ShardingSphereDataSource.<init>(ShardingSphereDataSource.java:65)
           at org.apache.shardingsphere.driver.api.ShardingSphereDataSourceFactory.createDataSource(ShardingSphereDataSourceFactory.java:93)
           at org.apache.shardingsphere.driver.api.yaml.YamlShardingSphereDataSourceFactory.createDataSource(YamlShardingSphereDataSourceFactory.java:153)
           at org.apache.shardingsphere.driver.api.yaml.YamlShardingSphereDataSourceFactory.createDataSource(YamlShardingSphereDataSourceFactory.java:95)
           at org.apache.shardingsphere.driver.jdbc.core.driver.DriverDataSourceCache.createDataSource(DriverDataSourceCache.java:51)
           at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1705)
           at org.apache.shardingsphere.driver.jdbc.core.driver.DriverDataSourceCache.get(DriverDataSourceCache.java:45)
           at org.apache.shardingsphere.driver.ShardingSphereDriver.connect(ShardingSphereDriver.java:51)
           at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:121)
           at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:358)
           at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
           at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:477)
           at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:560)
           at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
           at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
           at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:159)
           at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:117)
           at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:80)
           at org.mybatis.spring.transaction.SpringManagedTransaction.openConnection(SpringManagedTransaction.java:80)
           at org.mybatis.spring.transaction.SpringManagedTransaction.getConnection(SpringManagedTransaction.java:67)
           at org.apache.ibatis.executor.BaseExecutor.getConnection(BaseExecutor.java:337)
           at org.apache.ibatis.executor.SimpleExecutor.prepareStatement(SimpleExecutor.java:86)
           at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:62)
           at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325)
           at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
           at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
           at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)
           at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62)
           at com.sun.proxy.$Proxy353.query(Unknown Source)
           at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151)
           at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145)
           at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
           at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76)
           at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
           at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
           at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
           at java.base/java.lang.reflect.Method.invoke(Method.java:566)
           at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427)
           at com.sun.proxy.$Proxy175.selectOne(Unknown Source)
           at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)
           at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:89)
           at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
           at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
           at com.sun.proxy.$Proxy215.getPageDataPutByMarker(Unknown Source)
           at bt.mall.framework.modules.scene.serviceimpl.PageDataPutServiceImpl.getPageDataPutByMarker(PageDataPutServiceImpl.java:85)
           at bt.mall.framework.modules.scene.serviceimpl.PageDataPutServiceImpl$$FastClassBySpringCGLIB$$d96ce8f.invoke(<generated>)
           at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
           at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:689)
           at bt.mall.framework.modules.scene.serviceimpl.PageDataPutServiceImpl$$EnhancerBySpringCGLIB$$455bf50.getPageDataPutByMarker(<generated>)
           at bt.mall.buyer.api.controller.other.PageDataPutController.getPageDataPutByMarker(PageDataPutController.java:34)
           at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
           at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
           at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
           at java.base/java.lang.reflect.Method.invoke(Method.java:566)
           at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
           at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)
           at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)
           at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895)
           at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808)
           at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
           at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067)
           at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)
           at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
           at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
           at javax.servlet.http.HttpServlet.service(HttpServlet.java:655)
           at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
           at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)
           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)
           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
           at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
           at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327)
           at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115)
           at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81)
           at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)
           at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119)
           at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:113)
           at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)
           at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126)
           at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81)
           at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)
           at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105)
           at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)
           at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149)
           at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)
           at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
           at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)
           at bt.mall.buyer.api.security.BuyerAuthenticationFilter.doFilterInternal(BuyerAuthenticationFilter.java:73)
           at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
           at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)
           at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103)
           at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89)
           at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)
           at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)
           at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
           at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)
           at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90)
           at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75)
           at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
           at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)
           at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110)
           at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80)
           at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)
           at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55)
           at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
           at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336)
           at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211)
           at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)
           at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
           at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)
           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
           at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
           at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
           at com.yomahub.tlog.web.filter.ReplaceStreamFilter.doFilter(ReplaceStreamFilter.java:38)
           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
           at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
           at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
           at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:97)
           at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
           at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
           at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
           at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)
           at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)
           at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:540)
           at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)
           at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
           at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)
           at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:357)
           at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382)
           at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
           at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:895)
           at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1722)
           at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
           at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)
           at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
           at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
           at java.base/java.lang.Thread.run(Thread.java:834)
   Caused by: java.sql.SQLException: No suitable driver
           at java.sql/java.sql.DriverManager.getDriver(DriverManager.java:298)
           at com.zaxxer.hikari.util.DriverDataSource.<init>(DriverDataSource.java:106)
           ... 164 common frames omitted
   Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@421a0f30]
   
   
   ### 2. sharding.yaml  This configuration file,Can it be written together with the application's configuration file? Using the properties file ?
   


-- 
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.

To unsubscribe, e-mail: notifications-unsubscribe@shardingsphere.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [shardingsphere] RaigorJiang commented on issue #26199: I have a problem while to use shardingspherejdbc,I hope it can be resolved。

Posted by "RaigorJiang (via GitHub)" <gi...@apache.org>.
RaigorJiang commented on issue #26199:
URL: https://github.com/apache/shardingsphere/issues/26199#issuecomment-1582525879

   @90yangkang 
   1. According to the error message, the MySQL driver cannot be found.
   2. Yes, ShardingSphere-JDBC requires a separate yaml file, you can specify the path in application.yaml or properties, refer to:
   https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-jdbc/yaml-config/jdbc-driver/spring-boot/


-- 
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.

To unsubscribe, e-mail: notifications-unsubscribe@shardingsphere.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [shardingsphere] RaigorJiang commented on issue #26199: I have a problem while to use shardingspherejdbc,I hope it can be resolved。

Posted by "RaigorJiang (via GitHub)" <gi...@apache.org>.
RaigorJiang commented on issue #26199:
URL: https://github.com/apache/shardingsphere/issues/26199#issuecomment-1587053170

   @90yangkang 
   You can use absolutepath, please refer to https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-jdbc/yaml-config/jdbc-driver/
   
   ```xml
   jdbc:shardingsphere:absolutepath:/path/to/config.yaml
   ```


-- 
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.

To unsubscribe, e-mail: notifications-unsubscribe@shardingsphere.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [shardingsphere] 90yangkang commented on issue #26199: I have a problem while to use shardingspherejdbc,I hope it can be resolved。

Posted by "90yangkang (via GitHub)" <gi...@apache.org>.
90yangkang commented on issue #26199:
URL: https://github.com/apache/shardingsphere/issues/26199#issuecomment-1584154245

   > @90yangkang
   > 
   > 1. According to the error message, the MySQL driver cannot be found.
   > 2. Yes, ShardingSphere-JDBC requires a separate yaml file, you can specify the path in application.yaml or properties, refer to:
   >    https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-jdbc/yaml-config/jdbc-driver/spring-boot/
   
   @RaigorJiang   Thank you for your reply. I have already understood these two questions.
   I am currently encountering a new issue. My program's configuration file is in the config folder,when running the program, throw a error.  application properties  sharding config content si ![image](https://github.com/apache/shardingsphere/assets/35477514/c22a081b-f266-482f-992d-993e46222076)
   
   error log : 
   ![image](https://github.com/apache/shardingsphere/assets/35477514/d630e51e-92e5-4ea4-aea8-8b55c40aef92)
   
   The sharding configuration file only allowed to be in resources folder ?
   
   


-- 
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.

To unsubscribe, e-mail: notifications-unsubscribe@shardingsphere.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [shardingsphere] 90yangkang commented on issue #26199: I have a problem while to use shardingspherejdbc,I hope it can be resolved。

Posted by "90yangkang (via GitHub)" <gi...@apache.org>.
90yangkang commented on issue #26199:
URL: https://github.com/apache/shardingsphere/issues/26199#issuecomment-1586752019

   @RaigorJiang @TeslaCN  i need help :-) 


-- 
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.

To unsubscribe, e-mail: notifications-unsubscribe@shardingsphere.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org