Netifi is a cloud-native application platform, built on RSocket, that dramatically reduces operational overhead and speeds development with AI-driven management and reactive software components.
Questions tagged [netifi]
3 questions
9
votes
1 answer
What does Netifi broker improve over using direct RSocket application communication on a Kubernetes cluster?
Let's suppose I have a Kubernetes cluster where I deploy Spring Boot applications that communicate using RSocket. In order to call each other they would use the Kubernetes service name, so we would be relying of that "registry" for discovery and…

codependent
- 23,193
- 31
- 166
- 308
4
votes
1 answer
RSocket + webflux request-response resilience
Given the following code (using Spring Webflux and RSocket):
@MessageMapping("hello.{name}")
public Mono greet(@DestinationVariable String name) {
return Mono.just("Hello " + name); // or assume this is making a slow http call
}
The…

Riko Nagatama
- 388
- 1
- 3
- 15
1
vote
0 answers
is Netifi client library available for languages other than java
I am building micro services based on Rsocket. Analysing load balancing and cloud support and found as its persistent connection, k8 cannot do load balance for client requests out of the box but only for client connection. So only options to use…

Tarun Goyal
- 11
- 1