python分布式计算dispy的使用详解


Posted in Python onDecember 22, 2019

dispy,是用asyncoro实现的分布式并行计算框架。

框架也是非常精简,只有4个组件,在其源码文件夹下可以找到:

dispy.py (client) provides two ways of creating “clusters”: JobCluster when only one instance of dispy may run and SharedJobCluster when multiple instances may run (in separate processes). If JobCluster is used, the scheduler contained within dispy.py will distribute jobs on the server nodes; if SharedJobCluster is used, a separate scheduler (dispyscheduler) must be running.

dispynode.py executes jobs on behalf of dispy. dispynode must be running on each of the (server) nodes that form the cluster.

dispyscheduler.py is needed only when SharedJobCluster is used; this provides a scheduler that can be shared by multiple dispy users.

dispynetrelay.py is needed when nodes are located across different networks; this relays information about nodes on a network to the scheduler. If all the nodes are on same network, there is no need for dispynetrelay - the scheduler and nodes automatically discover each other.

一般情况下,使用dispy和dispynode就已经足够解决问题了。

简单使用:

服务器端:

在服务器端启动dispy,监听并接收所有发来的计算任务,完成计算后将结果返回给客户端。

打开python_home/Scripts文件夹,在安装dispy后会有上面说到的4个dispy组件,以py文件形式存在。当然你也可以在dispy的源码文件夹里面找到对于的dispynode.py文件,然后执行

python dispynode.py -c 2 -i 192.168.138.128 -p 51348 -s secret --clean

python dispynode.py -c 2 -i 192.168.8.143 -p 51348 -s secret --clean

这里192.168.138.128和192.168.8.143是执行计算节点的ip(对服务器来说相当于localhost),这里我启用了两个节点,每个节点使用2个cpu资源,其中有一个节点是在虚拟机,一个是本地机器。

-s secret是通信密码,客户端和服务器连接需要密码,密码随意。

--clean表示每次启动服务都删除上次的启动信息,如果不删除,可能会出现pid占用的错误。

客户端:

在客户端需要注意的是,发送到计算节点函数所引用的模块,不能在py文件的顶层导入,而需要在函数内导入。

对于需要导入自定义模块,比较麻烦一点,需要先实例化函数,才能在计算节点的函数中使用。

# 这些在顶层导入的模块只能是这个py文件用
import time
import socket
import numpy
import datetime

# 这个是自定义函数,要在本模块中先实例化才能在计算节点函数中调用使用,
# 而本模块的其他地方可以直接调用使用
from my_package.my_model import get_time 

# 实例化自定义的函数,注意后面是没有括号的,否则就是直接调用得到返回值了
now = get_time.now

# 计算函数,dispy将这个函数和参数一并发送到服务器节点
# 如果函数有多个参数,需要包装程tuple格式
def compute(args):
 n,array=args # 如果函数有多个参数,需要包装程tuple格式
 # 看到没,计算需要的模块是在函数内导入的
 import time, socket
 time.sleep(3)
 host = socket.gethostname()
 # 这个py文件中自定义函数,可以直接引用
 total= my_sum(array)
 # 这个now是在其他模块中自定义的函数,需要在顶层先实例化才能引用
 now_time=now()
 return (host, n, total,now_time)

def sum(array):
 # 自定义函数,需要的模块同样需要在函数内导入
 import numpy as np
 return np.sum(array)

def loadData():
 # 自定义函数,生成测试数据
 import numpy as np
 data = np.random.rand(20,20)
 data = [line for line in data]
 return data



if __name__ == '__main__':
 import dispy, random
 # 定义两个计算节点
 nodes = ['192.168.8.143', '192.168.138.128']
 # 启动计算集群,和服务器通信,通信密钥是'secret'
 # depends 为依赖函数
 cluster = dispy.JobCluster(compute,nodes=nodes,
      secret='secret',depends=[sum,now])
 jobs = []

 datas = loadData()
 for n in range(len(datas)):
  # 提交任务
  job = cluster.submit((n,datas[n]))
  job.id = n
  jobs.append(job)
 # print(datetime.datetime.now())
 # cluster.wait() # 等待所有任务完成后才接着往下执行
 # print(datetime.datetime.now())
 for job in jobs:
  host, n, total,t = job()
  print('%s executed job %s at %s with %s total=%.2f t=%s' 
    % (host, job.id, job.start_time, n,total,t))
  # other fields of 'job' that may be useful:
  # print job.stdout, job.stderr, job.exception, 
  # job.ip_addr, job.start_time, job.end_time
 # 显示集群计算状态
 cluster.stats()

以上这篇python分布式计算dispy的使用详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python程序设计入门(1)基本语法简介
Jun 13 Python
python根据出生日期返回年龄的方法
Mar 26 Python
python Socket之客户端和服务端握手详解
Sep 18 Python
Python实现的排列组合计算操作示例
Oct 13 Python
[原创]教女朋友学Python3(二)简单的输入输出及内置函数查看
Nov 30 Python
git进行版本控制心得详谈
Dec 10 Python
Python wxpython模块响应鼠标拖动事件操作示例
Aug 23 Python
python django下载大的csv文件实现方法分析
Jul 19 Python
在Python中画图(基于Jupyter notebook的魔法函数)
Oct 28 Python
redis数据库及与python交互用法简单示例
Nov 01 Python
pytorch dataloader 取batch_size时候出现bug的解决方式
Feb 20 Python
使用Python实现微信拍一拍功能的思路代码
Jul 09 Python
使用python实现哈希表、字典、集合操作
Dec 22 #Python
浅析Python数字类型和字符串类型的内置方法
Dec 22 #Python
Python利用多线程同步锁实现多窗口订票系统(推荐)
Dec 22 #Python
python使用正则来处理各种匹配问题
Dec 22 #Python
Python中base64与xml取值结合问题
Dec 22 #Python
python操作cfg配置文件方式
Dec 22 #Python
python实现局域网内实时通信代码
Dec 22 #Python
You might like
php whois查询API制作方法
2011/06/23 PHP
基于curl数据采集之正则处理函数get_matches的使用
2013/04/28 PHP
php数组去重复数据示例
2014/02/25 PHP
PHP中把有符号整型转换为无符号整型方法
2015/05/27 PHP
PHP生成图片缩略图类示例
2017/01/12 PHP
yii2.0整合阿里云oss上传单个文件的示例
2017/09/19 PHP
浏览器常用高宽的jquery插件
2011/02/24 Javascript
基于mootools 1.3框架下的图片滑动效果代码
2011/04/22 Javascript
js中eval详解
2012/03/30 Javascript
uploadify 3.0 详细使用说明
2012/06/18 Javascript
ExtJS4中的requires使用方法示例介绍
2013/12/03 Javascript
js实现String.Fomat的实例代码
2016/09/02 Javascript
node内置调试方法总结
2018/02/22 Javascript
postman+json+springmvc测试批量添加实例
2018/03/31 Javascript
Python素数检测实例分析
2015/06/15 Python
Python基于Socket实现的简单聊天程序示例
2017/08/05 Python
简单的python协同过滤程序实例代码
2018/01/31 Python
Python基于多线程实现抓取数据存入数据库的方法
2018/06/22 Python
python 读取目录下csv文件并绘制曲线v111的方法
2018/07/06 Python
详解如何用TensorFlow训练和识别/分类自定义图片
2019/08/05 Python
Python实现图片批量加入水印代码实例
2019/11/30 Python
德国最大的拼图在线商店:Puzzle.de
2016/12/17 全球购物
Wiggle新西兰:自行车、跑步、游泳
2020/05/06 全球购物
Blue Nile中国官网:全球知名的钻石和珠宝网络零售商
2020/03/22 全球购物
应届生法律求职信
2013/10/22 职场文书
QA工程师岗位职责
2013/11/20 职场文书
简历中个人自我评价范文
2013/12/26 职场文书
机电一体化求职信
2014/03/10 职场文书
停电放假通知
2015/04/14 职场文书
面试通知短信
2015/04/20 职场文书
张丽莉观后感
2015/06/16 职场文书
新郎父亲婚礼致辞
2015/07/27 职场文书
优质护理心得体会
2016/01/22 职场文书
小学三年级作文之写景
2019/11/05 职场文书
jdbc使用PreparedStatement批量插入数据的方法
2021/04/27 MySQL
Python中glob库实现文件名的匹配
2021/06/18 Python