-
Maary updated
5 years ago
-
请问一个服务调用另外一个服务,怎么配置?
就是有一个服务,本身提供服务,但是它又需要调用别的服务。
我把 client 和 server 的配置合在一起不成功。
请问有例子吗?
-
Allowed memory size of 134217728 bytes exhausted (tried to allocate 1113678912 bytes)
-
motan-go有在微博线上使用了吗?
-
用jmeter压测,200个线程,20个循环,出现了多种报错,比较频繁的如下:
一、com.weibo.api.motan.rpc.DefaultResponseFuture request timeout
二、ActiveWeightLoadBalance No available referers for call : referers_size=1
经查询,zookeeper中s…
-
直接调用 service接口中,直接传参 new QueryWrapper()没问题
在传参数 new QueryWrapper().eq(conlumn,value) jvm直接退出,
A fatal error has been detected by the Java Runtime Environment
#
# A fatal error has been detected…
-
1.虽然目前motan-netty4中server端有自定义的模拟tomcat线程池standardThreadExecutor来做线程流控和异步处理客户端读写事件(channelRead,包括request和response),但在netty4的ChannelPipeline都共用了workerGroup线程池来处理msg的decode/encode,channel的channelManage和…
-
synchronized(lock) {
while (!conditionPredicate())
lock.wait();
// 现在对象处于合适的状态
}
在调用wait之前测试条件谓词,并且从wait中返回时再次进行测试。
在一个循环中调用wait。
mrrao updated
5 years ago
-
如下配置会提示default不支持, [motan.xsd](https://github.com/weibocom/motan/blob/master/motan-core/src/main/resources/META-INF/motan.xsd)
```
```
[BasicRefererInterfaceConfig.java](https://github.com/wei…
-
ExtensionLoader应该是用来支持扩展的,而motan对于`ConfigHandler`的默认实现是`SimpleConfigHandler`,它的SpiMeta注解的name是写死的'default',这就导致使用者无法加载自定义ConfigLoader的实现,那么是否有办法达到加载自定义ConfigHandler的目的?