A transparent python library for symmetrical remote procedure calls, clustering and distributed-computing.

learn more… | top users | synonyms

0
votes
0answers
70 views

socket.timeout in rpyc

I get this error inconsistently when running my script. Traceback (most recent call last): File "MalAPK.py", line 127, in conn = rpyc.classic.connect(val[0],int(val[1])) File ...
0
votes
1answer
103 views

rpyc.Service takes 10 seconds to receive a 150kB object (on localhost, no LAN issue)

I am building a big (150kB when pickled) dummy dictionary and running a dummy function on it that runs quickly and smoothly. When the same function is exposed via a rpyc.Service, the time taken ...
0
votes
0answers
128 views

Create SSH server with RPyC

How I can create an SSH server with RPyC? It has the SshContext to connect to an SSH server with tuneling: sshctx = SshContext("myserver", user = "foo", keyfile = r"/path/to/my/keyfile") conn = ...
1
vote
2answers
295 views

why is monkeyrunner not working when run from a remote machine?

I need to run a monkeyrunner script in a remote machine. I'm using python to to automate it and RPyC so that I could connect to other machines, everything is running in CentOS. written below is the ...
0
votes
0answers
141 views

rpyc async calls not being made

I'm writing a service to compute simulations in several servers in Python using rpyc. The idea is to launch the simulation service in each server, and then have a client that create the connections ...
0
votes
0answers
92 views

RPyC Config_dict and logging

I have a class that inherits from rpyc.Service (lets call it MyService) and i initiate a server via the command rpyc.utils.server.ThreadServer(MyServer, port). I start the server and then connect to ...
1
vote
1answer
165 views

passing object in rpyc fails

I am trying to pass an object as a paramater using RPyC from the client to the server. But the server is unable to access the object and I receive an AttributeError. Server Code: class ...
2
votes
1answer
112 views

Handle computationally-intensive requests to a Django web application, possibly using a pre-forking RPC server

I am running a Django-based webservice with Gunicorn behind nginx as a reverse proxy. My webservice provides a Django view which performs calculations using an external instance of MATLAB. Because ...
0
votes
0answers
124 views

ssh connection using rpyc

I am trying to learn rpyc and I had the following question. How do i create an ssh connection between server and client. I was going through the tutorial on the website but I am kinda stuck. I am ...
0
votes
0answers
134 views

chat service in RPyC

i'm developing a basic chat service with RPyC in Python. My service is loosely based on this example from RPyC docs: Server all_client_callbacks = set() class UserToken(object): def ...
0
votes
1answer
102 views

How to restart classic_server of RPyC in remote console?

I want to restart classic_server of RPyC in Linux through remote console but I do not know how to restart it. so I create a bash to kill all python process, and then restart classic_server but when ...
0
votes
1answer
270 views

Python rpyc can not run a psutil command remotely

I'm trying to run a psutil command remotely: import os, sys, time import rpyc import psutil command = """def rpcexecute(): import psutil cpu = psutil.cpu_percent(interval=1) ...
0
votes
1answer
697 views

Returning remote object in rpyc

I have a remote server like below which already has an initialized class and i have set protocol config as allow public attrs True. import rpyc class SharedClass(object): def ...
1
vote
1answer
188 views

Using rpyc to connect to database once and serve multiple queries

Trying to serve database query results to adhoc client requests, but do not want to open a connection for each individual query. I'm not sure if i'm doing it right. Current solution is something ...
4
votes
1answer
1k views

PyScripter Rpyc

maybe somebody could give me a couple guidelines how to install Rpyc to PyScripter. I use PyScripter 1.9.9.7 with Python 2.6. I have tried to google it and found some instructions, but still have not ...
6
votes
2answers
3k views

What are the pros and cons of PyRo and RPyC python libs?

I am looking for a remote procedure call engine for Python and I've found that PyRo (Python Remote Object) and RPyC (Remote Python Call) are both the kind of thing I am searching for. However, I am ...