a remote procedure call (RPC) is a form of inter-process communication (IPC)
Questions tagged [rpc]
2527 questions
0
votes
0 answers
o(1) complexity python structure for storing data in memory or to disc depends on number of items
At this moment I'm working on this library:
https://pypi.org/project/daffi/
Which is suppose to be kind of multiprocess RPC communication framework with ability to execute sync or async tasks on remotes.
The process of communication includes server…

gonzo
- 549
- 1
- 8
- 14
0
votes
0 answers
gRPC DATA_LOSS error code usage clarification
I'm working on a gRPC API that has a database with an endpoint to return a record back to the consumer. One of the columns is an enum string {X|Y|Z}. When returning the record, I reverse map the enum to an int.
IF someone edits the data to…

noob-dev
- 59
- 1
- 7
0
votes
0 answers
I need send request to rabbitMq Asynchronous
I design a RabbitMq System with RPC Technology that have one Client and One Server (claculated Fibonacci).
My problem is here :
when i send two or more request to server each request is processed after previous request done.
Question : is it true? i…

Cawboy
- 123
- 2
- 8
0
votes
0 answers
How to pass the function to all players if the call condition is fulfilled by one player
When entering the server, the player calls the RPC function that increases the number of players, it works correctly. Another RPC function is responsible for the player's death, but it changes the variable only for one client, the value does not…

TGRQQ
- 1
0
votes
0 answers
RuntimeError: RPC has not been initialized. Call torch.distributed.rpc.init_rpc first
I am making the experimental FedAvg simulation using the Pytorch RPC, but the server side throws errors when I run it. It seems that it is my coding problem, but I don't know what the problem is. Here are some related code snippets:
.
.
.
#Start…

Evan Christan123
- 1
- 1
0
votes
0 answers
What do the fields in rpcdebug -c's dmesg output mean?
I'm trying to track down a stall that may or may not be on the client host, but on the server side. Unfortunately this is all kernel RPC level, with some of if not controlled by my code...
I'm something of a neophyte when it comes to rpc debugging,…

Brian Cowan
- 1,048
- 6
- 7
0
votes
0 answers
Python RabbitMQ RPC - distribut one job in many sub-tasks
i want to create a script (distributor-daemon.py), which is listen on the queue "distributor".
A message contains a json/dict e.g. (shorten)
{"uuid": "84237efb-bd8a-4b8b-b189-2a15ec789f85", "repo_path": "/path/to/a/repository"}
The script should…

FaxMax
- 121
- 1
- 7
0
votes
0 answers
grpc: Execute periodic task on server side
I have implemented a synchronous rpc server that provides a set of functions through grpc. This is grpc basic functionality and works well, but now I am looking for an ideomatic way to execute a task periodically on the synchronous grpc server -…

Iniesta8
- 399
- 2
- 15
0
votes
0 answers
Sending metadata when gRPC connection is getting establised
I am looking for some mechanism in which I can send some metadata(key: value) when the gRPC connection is being established. That means, only once per connection.
I know how to send it per RPC but not sure how to so it per connection level.
Any help…

abhilash_goyal
- 711
- 1
- 10
- 31
0
votes
0 answers
SOLVED Handle multiple AMQP Pattern inside one Rails Service using Bunny gem
SOLVED PROBLEM.
Just create 2 different queues, like rpc.queue and pubsub.queue. Then you can use multiple messaging pattern in one service without any problem.
I create one rails service using Bunny and ConnectionPool Gem. This service "in my mind…
0
votes
1 answer
scala-json-rpc: value pretty is not a member of io.circe.Printer
i recently updated huge project from Scala 2.12 to 2.13 and switched form using
https://github.com/shogowada/scala-json-rpc
to:
https://github.com/nawforce/scala-json-rpc
And few methods - jsonRPCServer.{bindApi, receive} and jsonRPCClient.createAPI…

Ni3dzwi3dz
- 177
- 8
0
votes
3 answers
Deserialization of ArrayList GWT
In my application I'm getting some data from a file located in the server. The data is stored in a text file (.obj), so I'm using an rpc to read the file and get the data. The file is read using a third party library…

sosegon12
- 61
- 6
0
votes
0 answers
User didn't receive any notification? (Deepstream.io)
When sending notifications in DeepstreamIO, if a user is offline and later reconnects, he will not see the notification. In addition to that records is empty. Can you please suggest any solution?
I try to send notifications to many users, I found…
0
votes
0 answers
ripple rpc api - username and password?
I'm playing around with Rippled RPC API ;
I'm specifically looking at the Admin Access;
https://xrpl.org/get-started-using-http-websocket-apis.html#admin-access
Admin Access
The API methods are divided into Public Methods and Admin Methods so that…

Lew
- 11
- 2
0
votes
0 answers
ethers Get logs at specific blocks
I'm trying to get logs on ethers however, right now I'm chunking out the blocks based on the max blocks my provider allows (3500). However this is inefficient and slow,
(Note: yes I know the graph probably would be better)
let fromBlock =…

Ritzy Dev
- 387
- 3
- 10