Distributed RPC

Distributed RPC is used to query on and retrieve results from Trident topology on the fly. Storm has an in-built distributed RPC server. The distributed RPC server receives the RPC request from the client and passes it to the Storm topology. The topology processes the request and sends the result to the distributed RPC server, which is redirected by the distributed RPC server to the client.

We can configure the distributed RPC server by using the following properties in the storm.yaml file:

drpc.servers: 
     - "nimbus-node" 

Here, nimbus-node is the IP of the distributed RPC server.

Now, run this command on the nimbus-node machine to start the distributed RPC server:

> bin/storm drpc 

Let's assume we are storing the count aggregation ...

Get Mastering Apache Storm now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.