foghost

Results 24 comments of foghost

The simplest scenario can be considered as rpc proxy. async server may effectively improve throughput. `CompletableFuture` may be a good choice. Perhaps the async implementation in the client can also...

me too 对coredump报`Error Happen:Can't attach to the core file` openjdk version "1.8.0_212" 在线上执行报`java.lang.unsatisfiedlinkerror: no saproc in java.library.path` java version "1.8.0_162"

> > 已经找到了问题链路,java侧的配置也能发一下么? > > 配置文件是这个 > > ```yaml > dubbo: > application: > name: dubbo-springboot-demo-provider > protocol: > name: tri > port: -1 > registry: > address: zookeeper://127.0.0.1:2181 >...

reproduced success,in dubbo-go tri depens on some stub method in generated pb.go file, just like that ```go func (c *GreeterClientImpl) GetDubboStub(cc *triple.TripleConn) GreeterClient { return NewGreeterClient(cc) } ``` https://github.com/dubbogo/triple/blob/df20316cdac5c5334f6cbf57bd3443cd75a4501f/pkg/triple/dubbo3_conn.go#L79 in...

@ssfyn in java server side,set `dubbo.application.metadataServiceProtocol=dubbo` to avoid this problem, we will fix it in next release

you should set metadata type to remote,otherwise it will not publish metadata to metadata center ```go rootConfigBuilder := config.NewRootConfigBuilder() cb := rootConfigBuilder. SetApplication(config.NewApplicationConfigBuilder(). SetName("dubb"). SetMetadataType("remote"). // this line Build(), )...

> > you should set metadata type to remote,otherwise it will not publish metadata to metadata center > > ```go > > rootConfigBuilder := config.NewRootConfigBuilder() > > cb := rootConfigBuilder....