[servicecomb-website] branch optimize-java-chassis-release-guide created (now 19ec979)

2019-04-28 Thread wujimin
This is an automated email from the ASF dual-hosted git repository.

wujimin pushed a change to branch optimize-java-chassis-release-guide
in repository https://gitbox.apache.org/repos/asf/servicecomb-website.git.


  at 19ec979  Update release_guide.md

This branch includes the following new commits:

 new 19ec979  Update release_guide.md

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




[servicecomb-website] 01/01: Update release_guide.md

2019-04-28 Thread wujimin
This is an automated email from the ASF dual-hosted git repository.

wujimin pushed a commit to branch optimize-java-chassis-release-guide
in repository https://gitbox.apache.org/repos/asf/servicecomb-website.git

commit 19ec97952b3fbb5e845d13e6c6630f6ec4d36862
Author: wujimin 
AuthorDate: Mon Apr 29 12:19:13 2019 +0800

Update release_guide.md
---
 _developers/cn/release_guide.md | 135 ++--
 1 file changed, 75 insertions(+), 60 deletions(-)

diff --git a/_developers/cn/release_guide.md b/_developers/cn/release_guide.md
index e84bb31..f16a401 100755
--- a/_developers/cn/release_guide.md
+++ b/_developers/cn/release_guide.md
@@ -18,14 +18,14 @@ redirect_from:
 ## 前期准备
 
 1. 项目CI应该是正常的(绿色的)。
-2. 确定相关的项目版本号。
-3. 
因为发版的过程中需要使用[私钥](https://www.apache.org/dev/openpgp.html#generate-key)对[发布版本进行签名](https://www.apache.org/dev/release-signing),请确保签名用密钥对应公钥已经发布到公开公钥服务器。
-4. 熟悉POM文件中版本发行相关的设置。
+2. 确定发布版本号。
+3. 
因为发版的过程中需要使用[密钥](https://www.apache.org/dev/openpgp.html#generate-key)对[发布版本进行签名](https://www.apache.org/dev/release-signing),请确保密钥中的公钥已经发布到公开公钥服务器(https://www.apache.org/dev/openpgp.html#publish-in-web-space)。
+4. 熟悉maven版本发行相关的设置。
 
 ## 配置Maven
 ServiceComb Java-Chassis和Saga使用Maven进行版本发布,我们需要在发布前对Maven进行一些配置。
 
-在使用Maven把发行包发布到仓库之前,我们应当在`~/.m2/settings.xml`文件中配置制品为组群可写的,否则其它开发人员将无法提交相同制品的新SNAPSHOT版本。本项目参考了Maven项目的设定[指南](http://maven.apache.org/developers/committer-settings.html)。请特别注意[加密密码](http://maven.apache.org/guides/mini/guide-encryption.html)。
+在使用Maven把发行包发布到仓库之前,参考了Maven项目的设定[指南](http://maven.apache.org/developers/committer-settings.html)。请特别注意[加密密码](http://maven.apache.org/guides/mini/guide-encryption.html)。
 
 ```
 
@@ -33,33 +33,12 @@ ServiceComb Java-Chassis和Saga使用Maven进行版本发布,我们需要在
   
 
 
-
-
-  apache.snapshots.https
-
-
-
-
-
-  apache.website
-
-  664
-  775
-
 
 
   apache.releases.https
 
 
 
-
-
-  stagingSite 
-
-  664
-  775
-
-
   
   ...
   
@@ -142,73 +121,109 @@ gvt restore
 
 ***准备和校验发行包***
 
-1. 克隆java-chassis代码。
+1. 如果`~/.ssh`中没有GPG密钥文件,则将GPG密钥文件拷贝至`~/.ssh`文件夹。
+
+2. 更新`~/.m2/settings.xml`文件中的GPG密码。
+
+3. 更新`~/.m2/settings.xml`文件中的Apache帐户用户名和密码。
+
+4. 克隆java-chassis代码
 ```
 git clone https://github.com/apache/servicecomb-java-chassis.git
 ```
 
-2. 使用以下perl命令,替换所有pom.xml文件中的版本号并提交改动至本地。
+5. 使用以下perl命令,替换所有pom.xml文件中的版本号并提交改动至本地
 ```
 find . -name 'pom.xml'|xargs perl -pi -e 's/1.0.0-m2-SNAPSHOT/1.0.0-m2/g'
 ```
 
-3. 在master分支上打上准备发布版本的标签。
-
-4. 清理repository.apache.org中所有冗余的发行版。
-
-5. 将GPG密钥文件拷贝至文件夹备用。
-
-6. 更新`~/.m2/settings.xml`文件中的GPG密钥文件路径和密码.
-
-7. 更新设置内Apache帐户用户名和密码。
+6. 在需要release的分支上打上准备发布版本的标签。
 
-8. 运行以下命令。
+7. 运行以下命令
 ```
 mvn deploy -DskipTests -Prelease -Pdistribution -Ppassphrase
 ```
 
-9. 上述命令执行成功,所有的jar包都成功上传至临时仓库后,运行Company Workshop作基本的功能验证。
-
-10. 将临时仓库共享给多人,在不同的机器和环境上进行验证。
+8. 如果执行失败,需要解决问题,从步骤7重新开始。
+   
+9. 如果步骤7命令执行成功,则所有的jar包都已经成功上传至maven临时仓库。  
+   使用apache帐号登录到[Apache Nexus](https://repository.apache.org/),点击“Staging 
Repositories”,搜索“servicecomb”,根据时间找到最近的java-chassis相关的记录,close该条记录,得到maven临时仓库的链接,例如:`https://repository.apache.org/content/repositories/orgapacheservicecomb-1385`
 
-11. 如果验证全部通过,将标签提交至主仓库。
+10. 将release分支以及标签分别push至主仓库。
 
-12. 清理Apache临时仓库。
 
 ***给发行包签名***
 
-13. 从临时仓库下载二进制包和源码包。
-
-14. 生成二进制包和源码包的签名和校验和。
-
-15. 
上传发行包到[Apache发行开发仓库](https://dist.apache.org/repos/dist/dev/servicecomb/servicecomb-java-chassis/).
-.
-
-16. 从SVN下载发行包,验证签名和校验。
+11. 从临时仓库下载二进制包及签名  
+  例如:  
+  
`https://repository.apache.org/content/repositories/orgapacheservicecomb-1385/org/apache/servicecomb/apache-servicecomb-java-chassis-distribution/1.2.0/apache-servicecomb-java-chassis-distribution-1.2.0-bin.zip`
  
+  
`https://repository.apache.org/content/repositories/orgapacheservicecomb-1385/org/apache/servicecomb/apache-servicecomb-java-chassis-distribution/1.2.0/apache-servicecomb-java-chassis-distribution-1.2.0-bin.zip.asc`
+  
+12. 从临时仓库下载源码包及签名  
+  例如:  
+  
`https://repository.apache.org/content/repositories/orgapacheservicecomb-1385/org/apache/servicecomb/apache-servicecomb-java-chassis-distribution/1.2.0/apache-servicecomb-java-chassis-distribution-1.2.0-src.zip`
  
+  
`https://repository.apache.org/content/repositories/orgapacheservicecomb-1385/org/apache/servicecomb/apache-servicecomb-java-chassis-distribution/1.2.0/apache-servicecomb-java-chassis-distribution-1.2.0-src.zip.asc`
+
+13. 生成二进制包和源码包的校验和  
+  例如:  
+  `sha512sum -b apache-servicecomb-java-chassis-distribution-1.2.0-bin.zip > 
apache-servicecomb-java-chassis-distribution-1.2.0-bin.zi.sha512`  
+  `sha512sum -b apache-servicecomb-java-chassis-distribution-1.2.0-src.zip > 
apache-servicecomb-java-chassis-distribution-1.2.0-src.zip.sha512`  
+
+14. 
将步骤11、12、13相关的文件,上传到[Apache开发仓库](https://dist.apache.org/repos/dist/dev/servicecomb/servicecomb-java-chassis/).
  
+  SVN命令:
+  ```
+  svn co 

[GitHub] [servicecomb-pack] Gannalyo commented on issue #216: Duplicated database record when save TxTimeoutEvent

2019-04-28 Thread GitBox
Gannalyo commented on issue #216: Duplicated database record when save 
TxTimeoutEvent
URL: 
https://github.com/apache/servicecomb-pack/issues/216#issuecomment-487435991
 
 
   > Can you try the latest released pack 0.4.0 which has the server side 
cluster?
   > There is only one event scanner started as a master in the cluster, if the 
master node is crashed, the other Alpha instance could be turned into a new 
master to scanne the events.
   
   Okay, I will be try. Thanks!


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:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-pack] zzhangllei edited a comment on issue #455: Failed to get reconnected sender, all alpha server is down.

2019-04-28 Thread GitBox
zzhangllei edited a comment on issue #455: Failed to get reconnected sender, 
all alpha server is down.
URL: 
https://github.com/apache/servicecomb-pack/issues/455#issuecomment-487434331
 
 
   入口
   @SagaStart(timeout = 100)
   @RequestMapping("/helloMsg")
   public String helloMsg(String name , Integer car ) {
   
   asyncUtils.retMsg(name, car);
   asyncUtils.retMsg1(name, car);
   
   return "test";
   }
   
   Util
   @Component
   public class AsyncUtils {
   
   @Resource
   FeignService feignService;
   
   @Resource
   CarService carService;
   
   @Resource
   HotelService hotelService;
   
   public Future retMsg(String name, Integer cars) {
   carService.order();
   return new AsyncResult("test");
   }
   
   public Future retMsg1(String name, Integer rooms) {
   hotelService.order();
   return new AsyncResult("test");
   }
   }
   
   feign
   @FeignClient(value = "car", fallback = CarServiceImpl.class)
   public interface CarService {
   
   //服务中方法的映射路径
   @RequestMapping("/order/{name}/{car}")
   Map order(@PathVariable String name , @PathVariable 
Integer cars) ;
   
   
   //服务中方法的映射路径
   @RequestMapping("/order")
   Map order() ;
   
   }
   子服务
   
   @RequestMapping(path = "/order")
   public CarBooking order() {
   CarBooking carBooking = new CarBooking();
   carBooking.setId(id.incrementAndGet());
   carBooking.setName("zl");
   carBooking.setAmount(2);
   service.order(carBooking);
   return carBooking ;
   }
   
   @Service
   class CarBookingService {
 private Map bookings = new ConcurrentHashMap<>();
   
 @Compensable(timeout = 5  , compensationMethod = "cancel")
 void order(CarBooking booking) {
   System.out.println("预定汽车开始");
   booking.confirm();
   bookings.put(booking.getId(), booking);
 }
   
 void cancel(CarBooking booking) {
   System.out.println("预定汽车取消");
   Integer id = booking.getId();
   if (bookings.containsKey(id)) {
 bookings.get(id).cancel();
   }
 }
   
 Collection getAllBookings() {
   return bookings.values();
 }
   
 void clearAllBookings() {
   bookings.clear();
 }
   }
   


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:
us...@infra.apache.org


With regards,
Apache Git Services


[servicecomb-website] branch master updated (b1d1c6d -> 610bc62)

2019-04-28 Thread ningjiang
This is an automated email from the ASF dual-hosted git repository.

ningjiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-website.git.


from b1d1c6d  rename Contributors  Name
 add 610bc62  Updated the release guide

No new revisions were added by this update.

Summary of changes:
 _developers/cn/release_guide.md | 8 
 _developers/release_guide.md| 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)



[servicecomb-website] branch asf-site updated (9f92c82 -> 0f905fa)

2019-04-28 Thread ningjiang
This is an automated email from the ASF dual-hosted git repository.

ningjiang pushed a change to branch asf-site
in repository https://gitbox.apache.org/repos/asf/servicecomb-website.git.


from 9f92c82  Publish the website
 new 89a83c5  rename  Contributor name
 new b1d1c6d  rename Contributors  Name
 new 610bc62  Updated the release guide
 new 06a84c0  Merge branch 'master' into asf-site
 new 0f905fa  Publish the website

The 981 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 _developers/cn/release_guide.md| 8 
 _developers/release_guide.md   | 4 ++--
 content/cn/developers/release-guide/index.html | 8 
 content/developers/release-guide/index.html| 2 +-
 content/feed.xml   | 2 +-
 5 files changed, 12 insertions(+), 12 deletions(-)



[GitHub] [servicecomb-pack] zzhangllei commented on issue #455: Failed to get reconnected sender, all alpha server is down.

2019-04-28 Thread GitBox
zzhangllei commented on issue #455: Failed to get reconnected sender, all alpha 
server is down.
URL: 
https://github.com/apache/servicecomb-pack/issues/455#issuecomment-487434331
 
 
   入口
   @SagaStart(timeout = 100)
   @RequestMapping("/helloMsg")
   public String helloMsg(String name , Integer car ) {
   
   asyncUtils.retMsg(name, car);
   asyncUtils.retMsg1(name, car);
   
   return "test";
   }
   
   Util
   @Component
   public class AsyncUtils {
   
   @Resource
   FeignService feignService;
   
   @Resource
   CarService carService;
   
   @Resource
   HotelService hotelService;
   
   public Future retMsg(String name, Integer cars) {
   carService.order();
   return new AsyncResult("test");
   }
   
   public Future retMsg1(String name, Integer rooms) {
   hotelService.order();
   return new AsyncResult("test");
   }
   }
   
   feign
   @FeignClient(value = "car", fallback = CarServiceImpl.class)
   public interface CarService {
   
   //服务中方法的映射路径
   @RequestMapping("/order/{name}/{car}")
   Map order(@PathVariable String name , @PathVariable 
Integer cars) ;
   
   
   //服务中方法的映射路径
   @RequestMapping("/order")
   Map order() ;
   
   }
   子服务
   @RequestMapping(path = "/order")
   public CarBooking order() {
   CarBooking booking = new CarBooking();
   booking.setId(id.incrementAndGet());
   booking.setName("zl");
   booking.setAmount(2);
   service.order(booking);
   return booking;
   }
   
   @Service
   class CarBookingService {
 private Map bookings = new ConcurrentHashMap<>();
   
 @Compensable(timeout = 5  , compensationMethod = "cancel")
 void order(CarBooking booking) {
   System.out.println("预定汽车开始");
   booking.confirm();
   bookings.put(booking.getId(), booking);
 }
   
 void cancel(CarBooking booking) {
   System.out.println("预定汽车取消");
   Integer id = booking.getId();
   if (bookings.containsKey(id)) {
 bookings.get(id).cancel();
   }
 }
   
 Collection getAllBookings() {
   return bookings.values();
 }
   
 void clearAllBookings() {
   bookings.clear();
 }
   }
   


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:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-pack] zzhangllei commented on issue #455: Failed to get reconnected sender, all alpha server is down.

2019-04-28 Thread GitBox
zzhangllei commented on issue #455: Failed to get reconnected sender, all alpha 
server is down.
URL: 
https://github.com/apache/servicecomb-pack/issues/455#issuecomment-487433986
 
 
   使用的是
   springboot 2.0.6  
   org.springframework.boot spring-boot-starter-web
   spring cloud Finchley.SR2  
   org.mybatis.spring.boot mybatis-spring-boot-starter 2.0.1
   mysql mysql-connector-java 8.0.15 
   org.springframework.cloud spring-cloud-starter-netflix-eureka-client
   org.springframework.cloud spring-cloud-starter-openfeign
   org.apache.servicecomb.pack omega-spring-starter  0.5.0-SNAPSHOT
   org.apache.servicecomb.pack omega-transport-resttemplate  0.5.0-SNAPSHOT
   com.google.guava guava 20.0


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:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-pack] zzhangllei opened a new issue #455: Failed to get reconnected sender, all alpha server is down.

2019-04-28 Thread GitBox
zzhangllei opened a new issue #455: Failed to get reconnected sender, all alpha 
server is down.
URL: https://github.com/apache/servicecomb-pack/issues/455
 
 
   在入口处 我使用了@SagaStart(timeout = 100) 注解,但是 数据库中 只存在了2毫秒就关闭了事务
   210  feign   feign-172.29.25.97  2019-04-29 09:06:49 SagaStartedEvent
   211  feign   feign-172.29.25.97  2019-04-29 09:06:51   SagaEndedEvent
   之后再进入子事务时 报错
   rg.apache.servicecomb.pack.omega.transaction.OmegaException: Failed to get 
reconnected sender, all alpha server is down.
at 
org.apache.servicecomb.pack.omega.connector.grpc.core.GrpcOnErrorHandler$GrpcRetryContext$1.get(GrpcOnErrorHandler.java:73)
 ~[omega-connector-grpc-0.5.0-SNAPSHOT.jar:0.5.0-SNAPSHOT]
at 
org.apache.servicecomb.pack.omega.connector.grpc.core.GrpcOnErrorHandler$GrpcRetryContext$1.get(GrpcOnErrorHandler.java:67)
 ~[omega-connector-grpc-0.5.0-SNAPSHOT.jar:0.5.0-SNAPSHOT]
at 
org.apache.servicecomb.pack.omega.connector.grpc.core.FastestSender.pick(FastestSender.java:39)
 ~[omega-connector-grpc-0.5.0-SNAPSHOT.jar:0.5.0-SNAPSHOT]
at 
org.apache.servicecomb.pack.omega.connector.grpc.core.LoadBalanceSenderAdapter.pickMessageSender(LoadBalanceSenderAdapter.java:46)
 ~[omega-connector-grpc-0.5.0-SNAPSHOT.jar:0.5.0-SNAPSHOT]
at 
org.apache.servicecomb.pack.omega.connector.grpc.saga.SagaLoadBalanceSender.send(SagaLoadBalanceSender.java:41)
 ~[omega-connector-grpc-0.5.0-SNAPSHOT.jar:0.5.0-SNAPSHOT]
at 
org.apache.servicecomb.pack.omega.transaction.CompensableInterceptor.preIntercept(CompensableInterceptor.java:34)
 ~[omega-transaction-0.5.0-SNAPSHOT.jar:0.5.0-SNAPSHOT]
at 
org.apache.servicecomb.pack.omega.transaction.DefaultRecovery.apply(DefaultRecovery.java:59)
 ~[omega-transaction-0.5.0-SNAPSHOT.jar:0.5.0-SNAPSHOT]
at 
org.apache.servicecomb.pack.omega.transaction.TransactionAspect.advise(TransactionAspect.java:55)
 ~[omega-transaction-0.5.0-SNAPSHOT.jar:0.5.0-SNAPSHOT]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
~[na:1.8.0_181]
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 
~[na:1.8.0_181]
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 ~[na:1.8.0_181]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_181]
at 
org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:644)
 ~[spring-aop-5.0.10.RELEASE.jar:5.0.10.RELEASE]
at 
org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:633)
 ~[spring-aop-5.0.10.RELEASE.jar:5.0.10.RELEASE]
at 
org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:70)
 ~[spring-aop-5.0.10.RELEASE.jar:5.0.10.RELEASE]
at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:174)
 ~[spring-aop-5.0.10.RELEASE.jar:5.0.10.RELEASE]
at 
org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
 ~[spring-aop-5.0.10.RELEASE.jar:5.0.10.RELEASE]
at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
 ~[spring-aop-5.0.10.RELEASE.jar:5.0.10.RELEASE]
at 
org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688)
 ~[spring-aop-5.0.10.RELEASE.jar:5.0.10.RELEASE]
at 
com.springcloud.saga.sagachild1.controller.CarBookingService$$EnhancerBySpringCGLIB$$7956f812.order()
 ~[classes/:na]
at 
com.springcloud.saga.sagachild1.controller.SagaController.order(SagaController.java:44)
 ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
~[na:1.8.0_181]
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 
~[na:1.8.0_181]
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 ~[na:1.8.0_181]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_181]
at 
org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:209)
 ~[spring-web-5.0.10.RELEASE.jar:5.0.10.RELEASE]
at 
org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:136)
 ~[spring-web-5.0.10.RELEASE.jar:5.0.10.RELEASE]
at 
org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:102)
 ~[spring-webmvc-5.0.10.RELEASE.jar:5.0.10.RELEASE]
at 
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:891)
 ~[spring-webmvc-5.0.10.RELEASE.jar:5.0.10.RELEASE]
at 

[GitHub] [servicecomb-pack] WillemJiang commented on issue #216: Duplicated database record when save TxTimeoutEvent

2019-04-28 Thread GitBox
WillemJiang commented on issue #216: Duplicated database record when save 
TxTimeoutEvent
URL: 
https://github.com/apache/servicecomb-pack/issues/216#issuecomment-487428139
 
 
   Can you try the latest released pack 0.4.0 which has the server side cluster?
   There is only one event scanner started as a master in the cluster, if the 
master node is crashed, the other Alpha instance could be turned into a new 
master to scanne the events. 


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:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-pack] Gannalyo commented on issue #216: Duplicated database record when save TxTimeoutEvent

2019-04-28 Thread GitBox
Gannalyo commented on issue #216: Duplicated database record when save 
TxTimeoutEvent
URL: 
https://github.com/apache/servicecomb-pack/issues/216#issuecomment-487382183
 
 
   > How did you start the Alpha Server? We may hit the same issue of #158, we 
may resolve the issue by starting only one scanner.
   
   Several Alpha Servers were started as a cluster, how to start one scanner 
only? Any configurations?
   And how to handle if this server is dead?
   Thank you!


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:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-docs] yhs0092 commented on issue #98: [SCB-1265] add config items about transport-rest-vertx

2019-04-28 Thread GitBox
yhs0092 commented on issue #98: [SCB-1265] add config items about 
transport-rest-vertx
URL: https://github.com/apache/servicecomb-docs/pull/98#issuecomment-487351031
 
 
   Fix done, please review.


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:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-docs] wujimin merged pull request #98: [SCB-1265] add config items about transport-rest-vertx

2019-04-28 Thread GitBox
wujimin merged pull request #98: [SCB-1265] add config items about 
transport-rest-vertx
URL: https://github.com/apache/servicecomb-docs/pull/98
 
 
   


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:
us...@infra.apache.org


With regards,
Apache Git Services


[servicecomb-docs] branch master updated (07c1747 -> 7f2e444)

2019-04-28 Thread wujimin
This is an automated email from the ASF dual-hosted git repository.

wujimin pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-docs.git.


from 07c1747  avoid gitbook compiler limitation
 new ff952fb  [SCB-1265] add config items about transport-rest-vertx
 new 7f2e444  [SCB-1265] fix connection calculation explanation

The 203 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../en_US/transports/rest-over-vertx.md| 27 --
 .../zh_CN/transports/rest-over-vertx.md| 24 ++-
 2 files changed, 38 insertions(+), 13 deletions(-)



[GitHub] [servicecomb-docs] yhs0092 commented on issue #98: [SCB-1265] add config items about transport-rest-vertx

2019-04-28 Thread GitBox
yhs0092 commented on issue #98: [SCB-1265] add config items about 
transport-rest-vertx
URL: https://github.com/apache/servicecomb-docs/pull/98#issuecomment-487348720
 
 
   wait for a sec, there is another fix to commit


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:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-java-chassis] wujimin opened a new pull request #1195: [SCB-1269][WIP][WEAK] swagger producer arguments not depend on swagger interface

2019-04-28 Thread GitBox
wujimin opened a new pull request #1195:  [SCB-1269][WIP][WEAK] swagger 
producer arguments not depend on swagger interface
URL: https://github.com/apache/servicecomb-java-chassis/pull/1195
 
 
   


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:
us...@infra.apache.org


With regards,
Apache Git Services


[servicecomb-java-chassis] branch weak-contract-type updated (290ba44 -> d0bafd8)

2019-04-28 Thread wujimin
This is an automated email from the ASF dual-hosted git repository.

wujimin pushed a change to branch weak-contract-type
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git.


 discard 290ba44  [SCB-1256][WIP][WEAK] rename ConcreteInterfaceRegister to 
ConcreteTypeRegister
 discard fa46da8  [SCB-1252][WIP][WEAK] change element of HttpParameterType to 
uppercase
 discard 2b25f50  [SCB-1248][WIP][WEAK] update unit test
 discard 0d51f70  [SCB-1248][WIP][WEAK] reduce EventBus subscribers
 discard dfd4cdf  [SCB-1248][WIP][WEAK] add MicroserviceMeta
 discard 34d6727  [SCB-1248][WIP][WEAK] add SwaggerLoader
 discard a3b783a  [SCB-1248][WIP][WEAK] remove MicroserviceVersionFactory
 discard a566e07  [SCB-1248][WIP][WEAK] improve config log
 discard 6364293  [SCB-1248][WIP][WEAK] make local registry easier to use
 discard e6a9ceb  [SCB-1228][WIP][WEAK] update chassis pom.xml to present 
interface argument name
 discard f633a81  [SCB-1228][WIP][WEAK] update unit test
 discard bab4bb4  [SCB-1228][WIP][WEAK] update SPI definition
 discard 1e76f5c  [SCB-1228][WIP][WEAK] springmvc processors switch to new 
mechanism
 discard 0171e1e  [SCB-1228][WIP][WEAK] swagger springmvc generator switch to 
new mechanism
 discard a4c8f43  [SCB-1228][WIP][WEAK] delete swagger to class logic
 discard b8824cf  [SCB-1227][WIP][WEAK] update unit test
 discard cd206a0  [SCB-1227][WIP][WEAK] update SPI definition
 discard a81563f  [SCB-1227][WIP][WEAK] jaxrs processors switch to new mechanism
 discard 28fa17d  [SCB-1227][WIP][WEAK] swagger jaxrs generator switch to new 
mechanism
 discard 3c9bd85  [SCB-1242] add spring data plugin project
 discard 541c3a4  [SCB-1242] swagger generator and json deserializer prepare to 
support spring data
 discard fabf28b  [SCB-1225][WIP][WEAK] fix by review comments
 discard fe9d8a2  [SCB-1225][WIP][WEAK] remove unnecessary dependency of spring
 discard 95619bc  [SCB-1225][WIP][WEAK] update unit test cases
 discard 0389af8  [SCB-1225][WIP][WEAK] SPI definition switch to new mechanism
 discard eb6bf69  [SCB-1225][WIP][WEAK] delete useless files
 discard 521c162  [SCB-1225][WIP][WEAK] create abstract rest mode generator
 discard b59a268  [SCB-1225][WIP][WEAK] create pojo mode generator
 discard 66abbc4  [SCB-1225][WIP][WEAK] unit test utils switch to new mechanism
 discard 61e308d  [SCB-1225][WIP][WEAK] response generator switch to new 
mechanism
 discard c966bf3  [SCB-1225][WIP][WEAK] parameter generator switch to new 
mechanism
 discard 728b614  [SCB-1225][WIP][WEAK] class and method annotation switch to 
new mechanism
 discard 4732af7  [SCB-1225][WIP][WEAK] create basic generator implementation
 discard c7e7fcd  [SCB-1225][WIP][WEAK] define new generator interfaces
 discard 3c5f9e5  [SCB-1225][WIP][WEAK] delete swagger to class logic
 discard 8e2e7a3  [SCB-1213][WIP][WEAK] swagger generator placeholder resolver 
not depend on spring
 discard 1be62fd  [SC-1214][WIP][WEAK] change weak-contract-type branch version 
to weak-contract-type-SNAPSHOT
 new c994fb4  [SC-1214][WIP][WEAK] change weak-contract-type branch version 
to weak-contract-type-SNAPSHOT
 new 2536b5b  [SCB-1213][WIP][WEAK] swagger generator placeholder resolver 
not depend on spring
 new 4be28c2  [SCB-1225][WIP][WEAK] delete swagger to class logic
 new 6a93b14  [SCB-1225][WIP][WEAK] define new generator interfaces
 new a56bb81  [SCB-1225][WIP][WEAK] create basic generator implementation
 new ee06599  [SCB-1225][WIP][WEAK] class and method annotation switch to 
new mechanism
 new d0ed73d  [SCB-1225][WIP][WEAK] parameter generator switch to new 
mechanism
 new 3476385  [SCB-1225][WIP][WEAK] response generator switch to new 
mechanism
 new 225925b  [SCB-1225][WIP][WEAK] unit test utils switch to new mechanism
 new 84bb73a  [SCB-1225][WIP][WEAK] create pojo mode generator
 new 81b1faf  [SCB-1225][WIP][WEAK] create abstract rest mode generator
 new 627f4a1  [SCB-1225][WIP][WEAK] delete useless files
 new b8a5880  [SCB-1225][WIP][WEAK] SPI definition switch to new mechanism
 new 81c8d87  [SCB-1225][WIP][WEAK] update unit test cases
 new 0b9463b  [SCB-1225][WIP][WEAK] remove unnecessary dependency of spring
 new 3a2559a  [SCB-1225][WIP][WEAK] fix by review comments
 new dd7e3d2  [SCB-1242] swagger generator and json deserializer prepare to 
support spring data
 new 00e53a3  [SCB-1242] add spring data plugin project
 new 8734d71  [SCB-1227][WIP][WEAK] swagger jaxrs generator switch to new 
mechanism
 new 90dc849  [SCB-1227][WIP][WEAK] jaxrs processors switch to new mechanism
 new 6b5f0a8  [SCB-1227][WIP][WEAK] update SPI definition
 new a02b2aa  [SCB-1227][WIP][WEAK] update unit test
 new 65e6004  [SCB-1228][WIP][WEAK] delete swagger to class logic
 new 3e06938  [SCB-1228][WIP][WEAK] swagger springmvc generator switch to 
new mechanism
 new 4e8f299  [SCB-1228][WIP][WEAK] springmvc processors switch to new 
mechanism
 new