[GitHub] [dubbo] wanghongenpin commented on issue #2635: 不看pojo类或代码,能否通过telnet等命令查看pojo类的属性信息?

2019-09-10 Thread GitHub
watch [ Full content available at: https://github.com/apache/dubbo/issues/2635 ] This message was relayed via gitbox.apache.org for notifications@dubbo.apache.org - To unsubscribe, e-mail:

[GitHub] [dubbo] goodjava opened pull request #5050: supports giving higher priority to intra-domain invocation

2019-09-10 Thread GitHub
## What is the purpose of the change supports giving higher priority to intra-domain invocation ## Brief changelog X ## Verifying this change X Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Make sure there is a

[GitHub] [dubbo] qixiaobo commented on issue #5048: 服务端从2.6.0升级到2.7.1后,Version.getIntVersion报错,响应失败

2019-09-10 Thread GitHub
maybe you can provide the error v parameter? [ Full content available at: https://github.com/apache/dubbo/issues/5048 ] This message was relayed via gitbox.apache.org for notifications@dubbo.apache.org - To unsubscribe,

[GitHub] [dubbo] qixiaobo commented on issue #5048: 服务端从2.6.0升级到2.7.1后,Version.getIntVersion报错,响应失败

2019-09-10 Thread GitHub
```java /** * get prefix digits from given version string */ private static String getPrefixDigits(String v) { Matcher matcher = PREFIX_DIGITS_PATTERN.matcher(v); if (matcher.find()) { return matcher.group(1); } return ""; } ``` so it

[GitHub] [dubbo] CLAassistant commented on issue #4296: add support for field name convert. e.g. order_id <-> orderId

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/not_signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=4296) Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you all sign our [Contributor License

[GitHub] [dubbo] CLAassistant commented on issue #4811: remove duplicated references from ServiceConfig and ReferenceConfig, keep them in ConfigManager

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/not_signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=4811) Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you all sign our [Contributor License

[GitHub] [dubbo] haiyang1985 opened issue #5049: support specify protocol for Service annotation

2019-09-10 Thread GitHub
- [ ] I have searched the [issues](https://github.com/apache/dubbo/issues) of this repository and believe that this is not a duplicate. - [ ] I have checked the [FAQ](https://github.com/apache/dubbo/blob/master/FAQ.md) of this repository and believe that this is not a duplicate. ###

[GitHub] [dubbo] CLAassistant commented on issue #3897: add socks5 proxy support to 2.6.x netty4 client

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/not_signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=3897) Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you sign our [Contributor License

[GitHub] [dubbo] CLAassistant commented on issue #4235: AMS realize dubbo Proxy

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/not_signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=4235) Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you all sign our [Contributor License

[GitHub] [dubbo] htynkn commented on issue #5044: fix some typos

2019-09-10 Thread GitHub
Thanks for your contribution. [ Full content available at: https://github.com/apache/dubbo/pull/5044 ] This message was relayed via gitbox.apache.org for notifications@dubbo.apache.org - To unsubscribe, e-mail:

[GitHub] [dubbo-go] codecov-io commented on issue #194: Add: new feature to support dynamic config center which compatible with dubbo 2.6.x & 2.7.x

2019-09-10 Thread GitHub
# [Codecov](https://codecov.io/gh/apache/dubbo-go/pull/194?src=pr=h1) Report > Merging [#194](https://codecov.io/gh/apache/dubbo-go/pull/194?src=pr=desc) > into > [develop](https://codecov.io/gh/apache/dubbo-go/commit/bb1216a7e352794ae1103f42e086dc8ae5feb5d0?src=pr=desc) > will **decrease**

[GitHub] [dubbo] chozee opened issue #5048: 服务端从2.6.0升级到2.7.1后,Version.getIntVersion报错,响应失败

2019-09-10 Thread GitHub
- [ ] I have searched the [issues](https://github.com/apache/dubbo/issues) of this repository and believe that this is not a duplicate. - [ ] I have checked the [FAQ](https://github.com/apache/dubbo/blob/master/FAQ.md) of this repository and believe that this is not a duplicate. ###

[GitHub] [dubbo-go] codecov-io commented on issue #198: Add:retries mergeUrl

2019-09-10 Thread GitHub
# [Codecov](https://codecov.io/gh/apache/dubbo-go/pull/198?src=pr=h1) Report > Merging [#198](https://codecov.io/gh/apache/dubbo-go/pull/198?src=pr=desc) > into > [develop](https://codecov.io/gh/apache/dubbo-go/commit/359bdab8e26f71b54158d21a18ad8313790785c0?src=pr=desc) > will **increase**

[GitHub] [dubbo] konglz commented on issue #3999: [SoC2019]Supporting gRPC Protocol.

2019-09-10 Thread GitHub
有几个点我觉得有风险: * 性能表现,我看到代码里有直接走反射的,没有细看,不确定这个反射是否只执行1次; * 资源回收,我看 [motan的GRPC实现](https://github.com/weibocom/motan/blob/master/motan-extension/protocol-extension/motan-protocol-grpc/src/main/java/com/weibo/api/motan/protocol/grpc/GrpcProtocol.java) 有很多资源回收的处置; *

[GitHub] [dubbo] konglz commented on issue #3999: [SoC2019]Supporting gRPC Protocol.

2019-09-10 Thread GitHub
有几个点我觉得有风险: * 性能表现,我看到代码里有直接走反射的,没有细看,不确定这个反射是否只执行1次; * 资源回收,我看 [motan的GRPC实现](https://github.com/weibocom/motan/blob/master/motan-extension/protocol-extension/motan-protocol-grpc/src/main/java/com/weibo/api/motan/protocol/grpc/GrpcProtocol.java) 有很多资源回收的处置; *

[GitHub] [dubbo] konglz commented on issue #3999: [SoC2019]Supporting gRPC Protocol.

2019-09-10 Thread GitHub
有几个点我觉得有风险: * 性能表现,我看到代码里有直接走反射的,没有细看,不确定这个反射是否只执行1次; * 资源回收,我看 [motan的GRPC实现](https://github.com/weibocom/motan/blob/master/motan-extension/protocol-extension/motan-protocol-grpc/src/main/java/com/weibo/api/motan/protocol/grpc/GrpcProtocol.java) 有很多资源回收的处置; *

[GitHub] [dubbo] konglz commented on issue #3999: [SoC2019]Supporting gRPC Protocol.

2019-09-10 Thread GitHub
有几个点我觉得有风险: * 性能表现,我看到代码里有直接走反射的,没有细看,不确定这个反射是否只执行1次; * 资源回收,我看 [motan的GRPC实现](https://github.com/weibocom/motan/blob/master/motan-extension/protocol-extension/motan-protocol-grpc/src/main/java/com/weibo/api/motan/protocol/grpc/GrpcProtocol.java) 有很多资源回收的处置; *

[GitHub] [dubbo] konglz commented on issue #3999: [SoC2019]Supporting gRPC Protocol.

2019-09-10 Thread GitHub
有几个点我觉得有风险: * 性能表现,我看到代码里有直接走反射的,没有细看,不确定这个反射是否只执行1次; * 资源回收,我看 [motan的GRPC实现](https://github.com/weibocom/motan/blob/master/motan-extension/protocol-extension/motan-protocol-grpc/src/main/java/com/weibo/api/motan/protocol/grpc/GrpcProtocol.java) 有很多资源回收的处置; *

[GitHub] [dubbo] konglz commented on issue #3999: [SoC2019]Supporting gRPC Protocol.

2019-09-10 Thread GitHub
有几个点我觉得有风险: * 性能表现,我看到代码里有直接走反射的,没有细看,不确定这个反射是否只执行1次; * 资源回收,我看 [motan的GRPC实现](https://github.com/weibocom/motan/blob/master/motan-extension/protocol-extension/motan-protocol-grpc/src/main/java/com/weibo/api/motan/protocol/grpc/GrpcProtocol.java) 有很多资源回收的处置; *

[GitHub] [dubbo-website] maslke commented on issue #470: http://dubbo.apache.org/zh-cn/docs/user/versions/version-270.html 文档中存在文字翻译错误问题

2019-09-10 Thread GitHub
http://dubbo.apache.org/zh-cn/docs/user/references/xml/dubbo-service.html ![1](https://user-images.githubusercontent.com/6869592/64662570-804b5f80-d47b-11e9-98ba-6f7de1eaa790.png) 上图中,中文描述应该是 缺省 [ Full content available at: https://github.com/apache/dubbo-website/issues/470 ] This message was

[GitHub] [dubbo] konglz commented on issue #3999: [SoC2019]Supporting gRPC Protocol.

2019-09-10 Thread GitHub
另外,测过性能没有?我看核心链路上直接走反射,比如: ```java /** * 这里返回的impl必须要有所有的方法, Stub BlockingStube FutureStub */ @Override protected T doRefer(Class type, URL url) throws RpcException { //通过 type(IGreeter),反射获得外部类(GreeterGrpc),调用静态方法(getDubboStub()),获得并返回(T)stub Class

[GitHub] [dubbo] konglz commented on issue #3999: [SoC2019]Supporting gRPC Protocol.

2019-09-10 Thread GitHub
另外,测过性能没有?我看核心链路上直接走反射,比如: ```java /** * 这里返回的impl必须要有所有的方法, Stub BlockingStube FutureStub */ @Override protected T doRefer(Class type, URL url) throws RpcException { //通过 type(IGreeter),反射获得外部类(GreeterGrpc),调用静态方法(getDubboStub()),获得并返回(T)stub Class

[GitHub] [dubbo-website] maslke opened issue #470: http://dubbo.apache.org/zh-cn/docs/user/versions/version-270.html 文档中存在文字翻译错误问题

2019-09-10 Thread GitHub
![TIM截图20190911094416](https://user-images.githubusercontent.com/6869592/64661904-17fb7e80-d479-11e9-8c86-94af2d528a53.png) 如上图所示,ConsumerConfig和ProducerConfig的中文意思反了。 [ Full content available at: https://github.com/apache/dubbo-website/issues/470 ] This message was relayed via

[GitHub] [dubbo] falcondsc commented on issue #1968: 服务调用的超时问题 Some issues with service timeout

2019-09-10 Thread GitHub
> 好的. 我會在本周三(9/11) 以前, 在 2.6.x 分支上 進行驗證. 我獲取了 2.6.x 分支 在 HeaderExchangeChannel.close() 調用 DefaultFuture.closeChannel(channel); 方法. 但測試後發現調用到 HeaderExchangeChannel.close() 的堆棧 和 我先前用 2.6.6 去修改時有些不同, 2.6.x 分支代碼上慢了很多(關閉 dubbo provider 之後, 要等 30 秒以上)才會進到 consumer 端的HeaderExchangeChannel.close()

[GitHub] [dubbo-go] AlexStocks closed pull request #193: Add: invoker & attachments & merge master

2019-09-10 Thread GitHub
[ pull request closed by AlexStocks ] [ Full content available at: https://github.com/apache/dubbo-go/pull/193 ] This message was relayed via gitbox.apache.org for notifications@dubbo.apache.org - To unsubscribe, e-mail:

[GitHub] [dubbo] arjenzhou commented on issue #3999: [SoC2019]Supporting gRPC Protocol.

2019-09-10 Thread GitHub
感谢反馈,会继续修改 konglz 于 2019年9月10日周二 下午9:53写道: > 代码bug比较多: > >- > 1. 超时时间完全不生效,不管在哪一端设置; >- > 1. 服务端抛异常,客户端接不到。 > > — > You are receiving this because you commented. > Reply to this email directly, view it on GitHub >

[GitHub] [dubbo]

2019-09-10 Thread GitHub
[ Full content available at: https://github.com/apache/dubbo/issues/5041 ] This message was relayed via gitbox.apache.org for notifications@dubbo.apache.org - To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org

[GitHub] [dubbo] konglz commented on issue #3999: [SoC2019]Supporting gRPC Protocol.

2019-09-10 Thread GitHub
代码bug比较多: * 1. 超时时间完全不生效,不管在哪一端设置; * 2. 服务端抛异常,客户端接不到。 [ Full content available at: https://github.com/apache/dubbo/issues/3999 ] This message was relayed via gitbox.apache.org for notifications@dubbo.apache.org - To

[GitHub] [dubbo] codecov-io commented on issue #5044: fix some typos

2019-09-10 Thread GitHub
# [Codecov](https://codecov.io/gh/apache/dubbo/pull/5044?src=pr=h1) Report > Merging [#5044](https://codecov.io/gh/apache/dubbo/pull/5044?src=pr=desc) > into > [master](https://codecov.io/gh/apache/dubbo/commit/9275b9d5154b75c3a52f7fbb14f9290ef24bde2f?src=pr=desc) > will **decrease** coverage

[GitHub] [dubbo] Hearen opened issue #5045: How to understand least active road balance well?

2019-09-10 Thread GitHub
I've sought all sites I could reach and read all docs related to this topic but still I am not getting it. Sorry to post a question like this in issue part. But I have nowhere to go for the help. I know from the official doc: > The active number refers to the difference between the counts

[GitHub] [dubbo] Hearen opened pull request #5044: fix some typos

2019-09-10 Thread GitHub
## What is the purpose of the change X ## Brief changelog X ## Verifying this change X Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Make sure there is a [GITHUB_issue](https://github.com/apache/dubbo/issues) field for the change

[GitHub] [dubbo-go] hxmhlt opened pull request #198: Add:retries mergeUrl

2019-09-10 Thread GitHub
**What this PR does**: Add:retries mergeUrl **Which issue(s) this PR fixes**: Fixes # **Special notes for your reviewer**: **Does this PR introduce a user-facing change?**: ```release-note ``` [ Full content available at: https://github.com/apache/dubbo-go/pull/198 ] This message was

[GitHub] [dubbo-go] pantianying commented on issue #197: fix MergeUrl

2019-09-10 Thread GitHub
> We can not do this because referenceURL is different from serviceUrl in > addtion to params , I don't know how many bug will appear after modifying in > this way. ok get it [ Full content available at: https://github.com/apache/dubbo-go/pull/197 ] This message was relayed via

[GitHub] [dubbo-go] pantianying opened pull request #197: fix MergeUrl

2019-09-10 Thread GitHub
**What this PR does**: **Which issue(s) this PR fixes**: Fixes # **Special notes for your reviewer**: **Does this PR introduce a user-facing change?**: ```release-note ``` [ Full content available at: https://github.com/apache/dubbo-go/pull/197 ] This message was relayed via

[GitHub] [dubbo] bq-xiao commented on issue #5041: No matter how I set it, the version is always 0.0.0

2019-09-10 Thread GitHub
**the same issue:** Env: ``` maven: org.apache.dubbo dubbo-spring-boot-starter 2.7.3 OS: windows10 JDK:1.8 ``` 1.Provider source code: ``` @Service(version = "demo", interfaceClass = HelloWorldService.class) public class HelloWorldServiceImpl implements

[GitHub] [dubbo] CLAassistant commented on issue #3649: [Dubbo-3629] Fix ServiceConfig duplicate export produces misleading exception

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/not_signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=3649) Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you all sign our [Contributor License

[GitHub] [dubbo] CLAassistant commented on issue #4296: add support for field name convert. e.g. order_id <-> orderId

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/not_signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=4296) Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you all sign our [Contributor License

[GitHub] [dubbo] CLAassistant commented on issue #5042: fix doc typo

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=5042) All committers have signed the CLA. [ Full content available at: https://github.com/apache/dubbo/pull/5042 ] This message was relayed via gitbox.apache.org for

[GitHub] [dubbo] CLAassistant commented on issue #4463: Add back compatible classes: ResponseFuture and FutureAdapter

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/not_signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=4463) Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you all sign our [Contributor License

[GitHub] [dubbo] CLAassistant commented on issue #4235: AMS realize dubbo Proxy

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/not_signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=4235) Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you all sign our [Contributor License

[GitHub] [dubbo] CLAassistant commented on issue #4463: Add back compatible classes: ResponseFuture and FutureAdapter

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/not_signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=4463) Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you all sign our [Contributor License

[GitHub] [dubbo] CLAassistant commented on issue #4296: add support for field name convert. e.g. order_id <-> orderId

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/not_signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=4296) Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you all sign our [Contributor License

[GitHub] [dubbo] CLAassistant commented on issue #4463: Add back compatible classes: ResponseFuture and FutureAdapter

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/not_signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=4463) Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you all sign our [Contributor License

[GitHub] [dubbo] CLAassistant commented on issue #5043: concurrent cache bug fix

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/not_signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=5043) Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you sign our [Contributor License

[GitHub] [dubbo] CLAassistant commented on issue #4811: remove duplicated references from ServiceConfig and ReferenceConfig, keep them in ConfigManager

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/not_signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=4811) Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you all sign our [Contributor License

[GitHub] [dubbo] CLAassistant commented on issue #4604: Optimize code in RoundRobinLoadBalance

2019-09-10 Thread GitHub
[![CLA assistant check](https://cla-assistant.io/pull/badge/signed)](https://cla-assistant.io/alibaba/dubbo?pullRequest=4604) All committers have signed the CLA. [ Full content available at: https://github.com/apache/dubbo/pull/4604 ] This message was relayed via gitbox.apache.org for

[GitHub] [dubbo-admin] dashuaigege opened issue #508: dubbo admin 动态配置

2019-09-10 Thread GitHub
配置如下,超时时间并没有生效 configVersion: v2.7 enabled: true configs: - side: consumer addresses: - 0.0.0.0 parameters: timeout: 6000 [ Full content available at: https://github.com/apache/dubbo-admin/issues/508 ] This message was relayed via gitbox.apache.org for

[GitHub] [dubbo] brucelwl closed pull request #4785: Remove fixed settings

2019-09-10 Thread GitHub
[ pull request closed by brucelwl ] [ Full content available at: https://github.com/apache/dubbo/pull/4785 ] This message was relayed via gitbox.apache.org for notifications@dubbo.apache.org - To unsubscribe, e-mail:

[GitHub] [dubbo] yinjunonly opened issue #5041: No matter how I set it, the version is always 0.0.0

2019-09-10 Thread GitHub
### Environment * Dubbo version: 2.7.3 * Operating System version: windows10 * Java version: 8 ### Steps to reproduce this issue 1.Declare service: ```xml ``` 2.Generalizing calls using API ```java ReferenceConfig reference = new ReferenceConfig();

[GitHub] [dubbo-website] xianSir commented on issue #469: 文档貌似有问题

2019-09-10 Thread GitHub
或者换个描述, 感觉容易误导 [ Full content available at: https://github.com/apache/dubbo-website/issues/469 ] This message was relayed via gitbox.apache.org for notifications@dubbo.apache.org - To unsubscribe, e-mail: