A LIBRARY FOR DISTRIBUTED COMPUTING IN PYTHON
Project description
DISCOMPUTIFY
-
A library written purely in python to do distributed computing using CYPHER-PROTOCOL.
-
Many times the task is very large and only single thread or single computer is not sufficient to do the computation, specially when the tasks are independent of each other or partially depend on each other.
-
Thus we need to run the programs in parallel maner to complete the computation process faster and effeciently.
COMPATIBLITY
-
READPY works with Linux, OS-X, and Windows (OS INDEPENDENT).
-
Supported on python 3.10 and above
INSTALLATION
Install it using pip.
- Goto PYPI
USAGE
CONFIGURATION
- For configuration of server and client need a configuration file named discomputify_conf.json
CONFIG PARAMETERS
-
RECV_BUFFERandTRANSMISSION_BUFFERare parameters both should have same corresponding value for both server and client configuration. -
ENCRYPTION_KEYandDECRYPTION_KEYare parameters which ensure encryption of data sent over connection, see CYPHER-PROTOCOL documentation for more information. -
TIMEOUTis the time after which a connection is closed or reset from client side or server side. -
RECV_CHUNK_SIZEandTRANSMISSION_CHUNK_SIZEare the parameters that control chunk size for file transfers -
DEBUG1andDEBUG2control the debug levels of CYPHER_PROTOCOL -
INPUT_PATHandOUTPUT_PATHare parameters that specify the relative path for storing and retrieving input and output files -
FTP_NODE,QUERY_NODE,MASTER_NODE,SHARED_MEM_NODEspecify the addresses where the particiler service nodes are running -
FTP_PORT,QUERY_PORT,MASTER_PORT,SHARED_MEM_PORTspecify the ports at which these particular services are running or will be running -
FTP_BASE_PATHis to set the base path of files in FTP so that there is no clash between namespaces and files are perfectly organised -
COMPUTING_NODESis an array of addresses of computing services available -
COMP_NODEis used to set address of computing node while starting a computing service -
Example discomputify_conf is given in CONF_FILES folder, consider that for more details.
STARTING A COMPUTING SERVICE
- Put discomputify_conf.json in a directory and run the command
python3 -m DISCOMPUTIFY computing_node
STARTING A FTP SERVICE
- Put discomputify_conf.json in a directory and run the command
python3 -m DISCOMPUTIFY ftp_node
STARTING A MASTER NODE SERVICE
- Put discomputify_conf.json in a directory and run the command
python3 -m DISCOMPUTIFY master_node
USAGE OF CLIENT FOR DISTRIBUTED COMPUTING
-
For starting computation, create a directory and put all the input files for the program in a directory as specified in discompitify_conf.json
-
then add the program that you want to run with all of its dependencies in the directory, but make sure that the starting poin of your program should be main.py
-
See an example of main.py in test_scripts
-
Here is the example for using the CLIENT_NODE for computing
from DISCOMPUTIFY.CLIENT_NODE.client_node import CLIENT_NODE
import time
if __name__ == "__main__" :
CLIENT_NODE_OBJ = CLIENT_NODE()
CLIENT_NODE_OBJ.set_process_id("1684340918413322")
print("UPLOADING FILES")
CLIENT_NODE_OBJ.upload_files("qwe")
print("UPLOADING COMPLETE")
print("STARTING COMPUTING")
print(CLIENT_NODE_OBJ.start_computing())
print("COMPUTING STARTED")
time.sleep(1)
print("GETTING NODE LOAD")
print(CLIENT_NODE_OBJ.get_node_load())
print("GETTING PROCESS STATUS")
print(CLIENT_NODE_OBJ.get_process_status())
#print("TERMINATING PROCESS")
#CLIENT_NODE_OBJ.stop_computing()
#print("PROCESS TERMINATED")
print("GETTING PROCESS STATUS")
print(CLIENT_NODE_OBJ.get_process_status())
print("GOT PROCESS STATUS")
print("GETTING FILES")
CLIENT_NODE_OBJ.download_files()
print("DOWNLOADED FILES")
#print("CLEARING DATA")
#print(CLIENT_NODE_OBJ.clear_data())
#print("CLEARED DATA")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file discomputify_P-Y-R-O-B-O-T-1.0.0.tar.gz.
File metadata
- Download URL: discomputify_P-Y-R-O-B-O-T-1.0.0.tar.gz
- Upload date:
- Size: 46.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41a0e04e57b8c486948bb45ef9117ed52f567290b38f3376a0327d21dffd5f22
|
|
| MD5 |
e0061ead123707339d9c0f3c23400141
|
|
| BLAKE2b-256 |
0c91e76d39bf0b5a222f87143e69a71c9d9ad56d127a84bdf5328b23e5eaa54a
|
File details
Details for the file discomputify_P_Y_R_O_B_O_T-1.0.0-py3-none-any.whl.
File metadata
- Download URL: discomputify_P_Y_R_O_B_O_T-1.0.0-py3-none-any.whl
- Upload date:
- Size: 36.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84522be09c9f74843d23722a41c946c12a8d3ac37838e63407dc1524414c6fdb
|
|
| MD5 |
089e39ea45b9509ee1ff3be53cb127ec
|
|
| BLAKE2b-256 |
ab3195ea23d5bfae0e4ee79eab929a9147fa23efde63b2e0a3148cbe3cae0cee
|