ST-DDT

Results 1351 comments of ST-DDT

> Does that mean that the current support for NACOS is limited to configuration centers and service registration and discovery is not supported. Yes, with the exception of metadata based...

See also https://github.com/spring-cloud/spring-cloud-commons/issues/1058

> 但在 [spring-cloud/spring-cloud-commons#1058](https://github.com/spring-cloud/spring-cloud-commons/issues/1058) 方案实现之前,我也会尝试使用扩展`metadata`的方式来兼容nacos,便于问题能快速解决。 Are you referring to [GrpcMetadataNacosConfiguration](https://github.com/yidongnan/grpc-spring-boot-starter/blob/master/grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/autoconfigure/GrpcMetadataNacosConfiguration.java#L54) or something else? If you are referring to a custom nacos service registration, then you don't need any specific metadata, as...

You can try the current nacos service discovery support using the following example script: https://github.com/yidongnan/grpc-spring-boot-starter/blob/master/testExamples.sh#L220

Have you checked that it actually uses gRPC as service implementation? Protobuf is just the data definition and serialization format, but it can also be used without grpc.

Yes, that is theoretically possible using a [`GrpcChannelConfigurer`](https://yidongnan.github.io/grpc-spring-boot-starter/en/client/configuration#grpcchannelconfigurer) and similar configurers. However, I couldn't find any useful documentation on the retry in grpc-java, so I'm not sure what else needs...

@trustin This library does not provide its own client. It just manages the injection of grpc-java clients/stubs. (I assume they are the same as those used by armeria, just without...

Thanks for the info. I'll add a corresponding entry to the documentation for easy reference.

Note to self: - [Example retrying_service_config.json](https://github.com/grpc/grpc-java/blob/43cf77de83df3173453465c0b485c84d645da043/examples/src/main/resources/io/grpc/examples/retrying/retrying_service_config.json) - [Service-Config docs](https://github.com/grpc/grpc/blob/master/doc/service_config.md) - [Service-Config model](https://github.com/grpc/grpc-proto/blob/master/grpc/service_config/service_config.proto)

> Do you have an example to share (with net.devh and spring boot)? Unfortunately not. > Here you will find my sample [code](https://github.com/alex-damico/spring-grpc) I'm not familiar with the retry config,...