Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/node.js/33.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/34.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 节点Kue-独立服务器上的消耗计算_Python_Node.js_Express_Kue - Fatal编程技术网

Python 节点Kue-独立服务器上的消耗计算

Python 节点Kue-独立服务器上的消耗计算,python,node.js,express,kue,Python,Node.js,Express,Kue,我需要根据用户上传到我的node/express服务器的输入文件执行一些“繁重”的计算,并限制同时运行的计算数量。计算由Fortran 90程序完成,运行时间为30-90分钟 我一直在寻找Kue来创建作业队列,但我对可以做什么有些困惑: 我是否可以让一台单独的服务器运行计算,从python程序开始计算,然后如何获得作业??或者我应该运行一个节点服务器,然后用计算启动一个子进程?

我需要根据用户上传到我的node/express服务器的输入文件执行一些“繁重”的计算,并限制同时运行的计算数量。计算由Fortran 90程序完成,运行时间为30-90分钟

我一直在寻找Kue来创建作业队列,但我对可以做什么有些困惑:

我是否可以让一台单独的服务器运行计算,从python程序开始计算,然后如何获得作业??或者我应该运行一个节点服务器,然后用计算启动一个子进程?