WO2022236993A1 - Distributed monitoring and scheduling method for quantum computer cluster - Google Patents

Distributed monitoring and scheduling method for quantum computer cluster Download PDF

Info

Publication number
WO2022236993A1
WO2022236993A1 PCT/CN2021/112477 CN2021112477W WO2022236993A1 WO 2022236993 A1 WO2022236993 A1 WO 2022236993A1 CN 2021112477 W CN2021112477 W CN 2021112477W WO 2022236993 A1 WO2022236993 A1 WO 2022236993A1
Authority
WO
WIPO (PCT)
Prior art keywords
task
execution node
experimental
quantum
scheduling
Prior art date
Application number
PCT/CN2021/112477
Other languages
French (fr)
Chinese (zh)
Inventor
李彦祯
刘幼航
刘强
Original Assignee
山东浪潮科学研究院有限公司
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 山东浪潮科学研究院有限公司 filed Critical 山东浪潮科学研究院有限公司
Publication of WO2022236993A1 publication Critical patent/WO2022236993A1/en

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/48Program initiating; Program switching, e.g. by interrupt
    • G06F9/4806Task transfer initiation or dispatching
    • G06F9/4843Task transfer initiation or dispatching by program, e.g. task dispatcher, supervisor, operating system
    • G06F9/4881Scheduling strategies for dispatcher, e.g. round robin, multi-level priority queues
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/546Message passing systems or structures, e.g. queues
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/547Remote procedure calls [RPC]; Web services
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06NCOMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
    • G06N20/00Machine learning

Definitions

  • the invention relates to the technical field of quantum computing, in particular to a distributed monitoring and dispatching method for a quantum computer cluster.
  • quantum computing can achieve parallel computing, and the computing speed will be greatly improved.
  • speed of quantum computing will increase exponentially with the increase in the number of experimentally manipulated entangled bits. Therefore, future quantum computers can be applied to difficult scientific problems that require large-scale calculations. Distributed cluster computing for quantum computers is also imperative.
  • quantum computing tasks are mainly single-threaded running tasks on a single machine.
  • the processing of a single machine may be relatively heavy.
  • the present invention provides a method for realizing distributed task scheduling through the XMLRPC protocol, realizing real-time monitoring of quantum computer states, and improving the execution efficiency of quantum experimental tasks.
  • a distributed monitoring and dispatching method for a quantum computer cluster comprising:
  • a) Deploy a task execution node on the upper computer of each quantum computer, the task execution node runs an XMLRPC server, and establishes a server rpcserver based on the XMLRPC mechanism;
  • monitor and dispatch module is set, and several client rpcclients based on XMLRPC mechanism are set in the monitor and dispatch module, and each client rpcclient of the monitor and dispatch module establishes a connection with the corresponding server rpcserver;
  • Each task execution node provides the running status of the node, the operation of the experimental task, and the query service interface of the experimental task result;
  • the scheduling server monitors the experimental task data table to be run in the database through the monitoring scheduling module. If there is a new task to be run, the distributed manager module sends the task information to the idle task execution node through the XMLRPC mechanism;
  • the task execution node After the task execution node accepts the task information to be run, it executes the local measurement and control interface to run the experimental task, caches the running results in the local database, and modifies the status of the task execution node to be idle;
  • the monitoring and scheduling module regularly polls the running result information of the task execution node. When the running result information is obtained, it saves the running result in the experimental task data table in the database according to the task ID, and the scheduling server continues to monitor the running results in the database. Data updates for the experimental mission data table.
  • each task execution node is connected to the execution node server, and the execution node server implements cluster deployment for each execution node.
  • a monitoring and scheduling module is set on a computer, and the computer accesses each server rpcserver through the local client rpcclient.
  • step d) the user saves the quantum experiment information to be executed into the task data table of the database through the cloud platform or client software, and the task data table includes the experimental task ID, experimental task content information, and queue status information.
  • the beneficial effect of the present invention is: the user saves the quantum experiment information to be executed in the task data table of the back-end database through the cloud platform or the client software, and the task table includes the experimental task ID, the specific content of the experimental task, and the queuing status.
  • the main function of the queue management server is to regularly query the new tasks in the quantum experiment task table, and send the new tasks to the idle quantum computer nodes through the XMLRPC protocol according to the submission time and priority.
  • the task execution nodes are deployed on the upper computers of multiple quantum computers, and the distributed monitoring and scheduling management is realized through the communication mode of the XMLRPC protocol. Through the XMLRPC transmission mechanism based on the http protocol, the commands and data are transmitted in the form of xml text.
  • the distributed monitoring and scheduling method of quantum computer clusters mainly stores quantum experiment information persistently through relational databases, realizes distributed task scheduling through XMLRPC protocol, realizes real-time monitoring of quantum computer status, and greatly improves the execution of quantum experiment tasks efficiency.
  • Fig. 1 is a flowchart of the distributed monitoring and dispatching of quantum computer clusters in the present invention.
  • a distributed monitoring and dispatching method for a quantum computer cluster comprising:
  • a) Deploy a task execution node on the upper computer of each quantum computer, and the task execution node runs an XMLRPC server, and establishes a server rpcserver based on the XMLRPC mechanism.
  • rpcclient finds the rpcserver according to the URL -> constructs a command package, calls a certain method of a service on the rpcserver -> receives the return from the rpcserver, parses the response package, and takes out the returned result of the call.
  • the working principle of the server-side rpcserver start a webserver-> register each service that can be provided, and each service corresponds to a Handler class-> enter the service monitoring state.
  • Each task execution node provides the service interface for the running status of the node, the running of the experimental task, and the query of the experimental task result.
  • the scheduling server monitors the experimental task data table to be run in the database through the monitoring scheduling module. If there is a new task to be run, the distributed manager module sends the task information to the idle task execution node through the XMLRPC mechanism.
  • the task execution node After the task execution node receives the task information to be run, it executes the local measurement and control interface to run the experimental task, caches the running results in the local database, and modifies the status of the task execution node to be idle.
  • the monitoring and scheduling module regularly polls the running result information of the task execution node. When the running result information is obtained, it saves the running result in the experimental task data table in the database according to the task ID, and the scheduling server continues to monitor the running results in the database. Data updates for the experimental mission data table.
  • the user saves the quantum experiment information to be executed in the task data table of the back-end database through the cloud platform or client software.
  • the task table includes the experimental task ID, the specific content of the experimental task, and the queue status.
  • the main function of the queue management server is to regularly query the new tasks in the quantum experiment task table, and send the new tasks to the idle quantum computer nodes through the XMLRPC protocol according to the submission time and priority.
  • the task execution nodes are deployed on the upper computers of multiple quantum computers, and the distributed monitoring and scheduling management is realized through the communication mode of the XMLRPC protocol. Through the XMLRPC transmission mechanism based on the http protocol, the commands and data are transmitted in the form of xml text.
  • the distributed monitoring and scheduling method of quantum computer clusters mainly stores quantum experiment information persistently through relational databases, realizes distributed task scheduling through XMLRPC protocol, realizes real-time monitoring of quantum computer status, and greatly improves the execution of quantum experiment tasks efficiency.
  • each task execution node is connected to the execution node server, and the execution node server performs cluster deployment for each execution node.
  • step b) the monitoring and dispatching module is set on a computer, and the computer accesses each server rpcserver through the local client rpcclient.
  • step d) the user saves the quantum experiment information to be executed in the task data table of the database through the cloud platform or client software, and the task data table includes the experimental task ID, experimental task content information, and queuing status information.

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Artificial Intelligence (AREA)
  • Computer Vision & Pattern Recognition (AREA)
  • Data Mining & Analysis (AREA)
  • Evolutionary Computation (AREA)
  • Medical Informatics (AREA)
  • Computing Systems (AREA)
  • Mathematical Physics (AREA)
  • Debugging And Monitoring (AREA)

Abstract

A distributed monitoring and scheduling method for a quantum computer cluster: a task execution node is deployed on an upper computer of multiple quantum computers, and implements distributed monitoring and scheduling management by means of a communication mode of an XMLRPC protocol. By means of an http protocol-based XMLRPC transmission mechanism, xml text is used to transfer commands and data. In the distributed monitoring and scheduling method for a quantum computer cluster, quantum experiment information is persistently stored by means of a relational database, distributed task scheduling is achieved by means of the XMLRPC protocol, the states of quantum computers are monitored in real time, and the execution efficiency of quantum experiment tasks is increased to a great extent.

Description

一种量子计算机集群分布式监控调度方法A Distributed Monitoring and Scheduling Method for Quantum Computer Clusters 技术领域technical field
本发明涉及量子计算技术领域,具体涉及一种量子计算机集群分布式监控调度方法。The invention relates to the technical field of quantum computing, in particular to a distributed monitoring and dispatching method for a quantum computer cluster.
背景技术Background technique
量子计算对数据的处理可以实现运算的并行,运算速度会大大提高,同时,量子计算的速度会随着实验可操纵的纠缠比特数的增加而呈指数级提升。因此,未来量子计算机可应用于需要大规模计算的科学难题。针对量子计算机的分布式集群计算也是势在必行。The processing of data by quantum computing can achieve parallel computing, and the computing speed will be greatly improved. At the same time, the speed of quantum computing will increase exponentially with the increase in the number of experimentally manipulated entangled bits. Therefore, future quantum computers can be applied to difficult scientific problems that require large-scale calculations. Distributed cluster computing for quantum computers is also imperative.
目前量子计算任务主要是单台机器上的单线程运行任务,对于大量的实验任务处理,单台机器的处理可能比较繁重。At present, quantum computing tasks are mainly single-threaded running tasks on a single machine. For the processing of a large number of experimental tasks, the processing of a single machine may be relatively heavy.
发明内容Contents of the invention
本发明为了克服以上技术的不足,提供了一种通过XMLRPC协议实现分布式的任务调度,实现量子计算机状态的实时监控,提高了量子实验任务的执行效率的方法。In order to overcome the shortcomings of the above technologies, the present invention provides a method for realizing distributed task scheduling through the XMLRPC protocol, realizing real-time monitoring of quantum computer states, and improving the execution efficiency of quantum experimental tasks.
本发明克服其技术问题所采用的技术方案是:The technical scheme that the present invention overcomes its technical problem adopts is:
一种量子计算机集群分布式监控调度方法,包括:A distributed monitoring and dispatching method for a quantum computer cluster, comprising:
a)在每一个量子计算机的上位机上均部署一个任务执行节点,任务执行节点运行一个XMLRPC server,建立基于XMLRPC机制的服务端rpcserver;a) Deploy a task execution node on the upper computer of each quantum computer, the task execution node runs an XMLRPC server, and establishes a server rpcserver based on the XMLRPC mechanism;
b)设置监控调度模块,在监控调度模块里面设置若干基于XMLRPC机制的客户端rpcclient,监控调度模块的每个客户端rpcclient与对应的服务端rpcserver建立连接;b) monitor and dispatch module is set, and several client rpcclients based on XMLRPC mechanism are set in the monitor and dispatch module, and each client rpcclient of the monitor and dispatch module establishes a connection with the corresponding server rpcserver;
c)每个任务执行节点分别提供本节点运行状态、实验任务运行、实验任务结果查询服务接口;c) Each task execution node provides the running status of the node, the operation of the experimental task, and the query service interface of the experimental task result;
d)调度服务器通过监控调度模块监控数据库中的待运行实验任务数据表,如果有新的待运行任务,则分布式管理器模块通过XMLRPC机制将任务信息发送到空闲的任务执行节点上;d) the scheduling server monitors the experimental task data table to be run in the database through the monitoring scheduling module. If there is a new task to be run, the distributed manager module sends the task information to the idle task execution node through the XMLRPC mechanism;
e)任务执行节点接受待运行的任务信息后,执行本地测控接口运行实验任务,将运行结果缓存到本机数据库中,修改本任务执行节点状态为空闲状态;e) After the task execution node accepts the task information to be run, it executes the local measurement and control interface to run the experimental task, caches the running results in the local database, and modifies the status of the task execution node to be idle;
f)监控调度模块定时轮询任务执行节点的运行结果信息,当获取到运行结果信息后,根据任务ID将运行结果保存到数据库中的实验任务数据表中,调度服务器继续监控数据库中的待运行实验任务数据表的数据更新。f) The monitoring and scheduling module regularly polls the running result information of the task execution node. When the running result information is obtained, it saves the running result in the experimental task data table in the database according to the task ID, and the scheduling server continues to monitor the running results in the database. Data updates for the experimental mission data table.
进一步的,步骤a)中各个任务执行节点通过连接于执行节点服务器,执行节点服务器对各个执行节点进行集群部署。Further, in step a), each task execution node is connected to the execution node server, and the execution node server implements cluster deployment for each execution node.
进一步的,步骤b)中在一台计算机上设置监控调度模块,该计算机通过本地客户端rpcclient访问每个服务端rpcserver。Further, in step b), a monitoring and scheduling module is set on a computer, and the computer accesses each server rpcserver through the local client rpcclient.
进一步的,步骤d)中用户通过云平台或客户端软件将要执行的量子实验信息保存到数据库的任务数据表中,任务数据表包含实验任务ID、实验任务内容信息、排队状态信息。Further, in step d), the user saves the quantum experiment information to be executed into the task data table of the database through the cloud platform or client software, and the task data table includes the experimental task ID, experimental task content information, and queue status information.
本发明的有益效果是:用户通过云平台或者客户端软件把要执行的量子实验信息保存到后端数据库的任务数据表中,任务表包含实验任务ID,实验任务具体内容,排队状态等。队列管理服务器主要的功能是定期查询量子实验任务表中新增的任务,把新增任务根据提交时间和优先级通过XMLRPC协议分别发送到空闲的量子计算机节点上。任务执行节点部署到多台量子计算机的上位机上,通过XMLRPC协议的通讯方式实现分布式监控调度管理。通过基于http协议的XMLRPC传输机制,使用xml文本的方式传输命令和数据。量子计算机集群分布式监控调度方法主要是通过关系型数据库持久化存储量子实验信息,通过XMLRPC协议实现分布式的任务调度,实现量子计算机状态的实时监控,很大程度上提高了量子实验任务的执行效率。The beneficial effect of the present invention is: the user saves the quantum experiment information to be executed in the task data table of the back-end database through the cloud platform or the client software, and the task table includes the experimental task ID, the specific content of the experimental task, and the queuing status. The main function of the queue management server is to regularly query the new tasks in the quantum experiment task table, and send the new tasks to the idle quantum computer nodes through the XMLRPC protocol according to the submission time and priority. The task execution nodes are deployed on the upper computers of multiple quantum computers, and the distributed monitoring and scheduling management is realized through the communication mode of the XMLRPC protocol. Through the XMLRPC transmission mechanism based on the http protocol, the commands and data are transmitted in the form of xml text. The distributed monitoring and scheduling method of quantum computer clusters mainly stores quantum experiment information persistently through relational databases, realizes distributed task scheduling through XMLRPC protocol, realizes real-time monitoring of quantum computer status, and greatly improves the execution of quantum experiment tasks efficiency.
附图说明Description of drawings
图1为本发明的量子计算机集群分布式监控调度流程图。Fig. 1 is a flowchart of the distributed monitoring and dispatching of quantum computer clusters in the present invention.
具体实施方式Detailed ways
下面结合附图1对本发明做进一步说明。The present invention will be further described below in conjunction with accompanying drawing 1.
一种量子计算机集群分布式监控调度方法,包括:A distributed monitoring and dispatching method for a quantum computer cluster, comprising:
a)在每一个量子计算机的上位机上均部署一个任务执行节点,任务执行节点运行一个XMLRPC server,建立基于XMLRPC机制的服务端rpcserver。a) Deploy a task execution node on the upper computer of each quantum computer, and the task execution node runs an XMLRPC server, and establishes a server rpcserver based on the XMLRPC mechanism.
b)设置监控调度模块,在监控调度模块里面设置若干基于XMLRPC机制的客户端rpcclient,监控调度模块的每个客户端rpcclient与对应的服务端rpcserver建立连接。客户端rpcclient的工作原理是:rpcclient根据URL找到rpcserver->构造命令包,调用rpcserver上的某个服务的某个方法->接收到rpcserver的返回,解析响应包,拿出调用的返回结果。服务端rpcserver的工作原理:启动一个webserver->注册每个能提供的服务,每个服务对应一个Handler类->进入服务监听状态。b) Set up the monitoring and dispatching module, set several client rpcclients based on the XMLRPC mechanism in the monitoring and dispatching module, and each client rpcclient of the monitoring and dispatching module establishes a connection with the corresponding server rpcserver. The working principle of the client rpcclient is: rpcclient finds the rpcserver according to the URL -> constructs a command package, calls a certain method of a service on the rpcserver -> receives the return from the rpcserver, parses the response package, and takes out the returned result of the call. The working principle of the server-side rpcserver: start a webserver-> register each service that can be provided, and each service corresponds to a Handler class-> enter the service monitoring state.
c)每个任务执行节点分别提供本节点运行状态、实验任务运行、实验任务结果查询服务接口。c) Each task execution node provides the service interface for the running status of the node, the running of the experimental task, and the query of the experimental task result.
d)调度服务器通过监控调度模块监控数据库中的待运行实验任务数据表,如果有新的待运行 任务,则分布式管理器模块通过XMLRPC机制将任务信息发送到空闲的任务执行节点上。d) The scheduling server monitors the experimental task data table to be run in the database through the monitoring scheduling module. If there is a new task to be run, the distributed manager module sends the task information to the idle task execution node through the XMLRPC mechanism.
e)任务执行节点接受待运行的任务信息后,执行本地测控接口运行实验任务,将运行结果缓存到本机数据库中,修改本任务执行节点状态为空闲状态。e) After the task execution node receives the task information to be run, it executes the local measurement and control interface to run the experimental task, caches the running results in the local database, and modifies the status of the task execution node to be idle.
f)监控调度模块定时轮询任务执行节点的运行结果信息,当获取到运行结果信息后,根据任务ID将运行结果保存到数据库中的实验任务数据表中,调度服务器继续监控数据库中的待运行实验任务数据表的数据更新。f) The monitoring and scheduling module regularly polls the running result information of the task execution node. When the running result information is obtained, it saves the running result in the experimental task data table in the database according to the task ID, and the scheduling server continues to monitor the running results in the database. Data updates for the experimental mission data table.
用户通过云平台或者客户端软件把要执行的量子实验信息保存到后端数据库的任务数据表中,任务表包含实验任务ID,实验任务具体内容,排队状态等。队列管理服务器主要的功能是定期查询量子实验任务表中新增的任务,把新增任务根据提交时间和优先级通过XMLRPC协议分别发送到空闲的量子计算机节点上。任务执行节点部署到多台量子计算机的上位机上,通过XMLRPC协议的通讯方式实现分布式监控调度管理。通过基于http协议的XMLRPC传输机制,使用xml文本的方式传输命令和数据。量子计算机集群分布式监控调度方法主要是通过关系型数据库持久化存储量子实验信息,通过XMLRPC协议实现分布式的任务调度,实现量子计算机状态的实时监控,很大程度上提高了量子实验任务的执行效率。The user saves the quantum experiment information to be executed in the task data table of the back-end database through the cloud platform or client software. The task table includes the experimental task ID, the specific content of the experimental task, and the queue status. The main function of the queue management server is to regularly query the new tasks in the quantum experiment task table, and send the new tasks to the idle quantum computer nodes through the XMLRPC protocol according to the submission time and priority. The task execution nodes are deployed on the upper computers of multiple quantum computers, and the distributed monitoring and scheduling management is realized through the communication mode of the XMLRPC protocol. Through the XMLRPC transmission mechanism based on the http protocol, the commands and data are transmitted in the form of xml text. The distributed monitoring and scheduling method of quantum computer clusters mainly stores quantum experiment information persistently through relational databases, realizes distributed task scheduling through XMLRPC protocol, realizes real-time monitoring of quantum computer status, and greatly improves the execution of quantum experiment tasks efficiency.
实施例1:Example 1:
步骤a)中各个任务执行节点通过连接于执行节点服务器,执行节点服务器对各个执行节点进行集群部署。In step a), each task execution node is connected to the execution node server, and the execution node server performs cluster deployment for each execution node.
实施例2:Example 2:
步骤b)中在一台计算机上设置监控调度模块,该计算机通过本地客户端rpcclient访问每个服务端rpcserver。In step b), the monitoring and dispatching module is set on a computer, and the computer accesses each server rpcserver through the local client rpcclient.
实施例3:Example 3:
步骤d)中用户通过云平台或客户端软件将要执行的量子实验信息保存到数据库的任务数据表中,任务数据表包含实验任务ID、实验任务内容信息、排队状态信息。In step d), the user saves the quantum experiment information to be executed in the task data table of the database through the cloud platform or client software, and the task data table includes the experimental task ID, experimental task content information, and queuing status information.
最后应说明的是:以上所述仅为本发明的优选实施例而已,并不用于限制本发明,尽管参照前述实施例对本发明进行了详细的说明,对于本领域的技术人员来说,其依然可以对前述各实施例所记载的技术方案进行修改,或者对其中部分技术特征进行等同替换。凡在本发明的精神和原则之内,所作的任何修改、等同替换、改进等,均应包含在本发明的保护范围之内。Finally, it should be noted that: the above is only a preferred embodiment of the present invention, and is not intended to limit the present invention. Although the present invention has been described in detail with reference to the foregoing embodiments, for those skilled in the art, it still The technical solutions recorded in the foregoing embodiments may be modified, or some technical features thereof may be equivalently replaced. Any modifications, equivalent replacements, improvements, etc. made within the spirit and principles of the present invention shall be included within the protection scope of the present invention.

Claims (4)

  1. 一种量子计算机集群分布式监控调度方法,其特征在于,包括:A distributed monitoring and dispatching method for a quantum computer cluster, characterized in that it includes:
    a)在每一个量子计算机的上位机上均部署一个任务执行节点,任务执行节点运行一个XMLRPC server,建立基于XMLRPC机制的服务端rpcserver;a) Deploy a task execution node on the upper computer of each quantum computer, the task execution node runs an XMLRPC server, and establishes a server rpcserver based on the XMLRPC mechanism;
    b)设置监控调度模块,在监控调度模块里面设置若干基于XMLRPC机制的客户端rpcclient,监控调度模块的每个客户端rpcclient与对应的服务端rpcserver建立连接;b) monitor and dispatch module is set, and several client rpcclients based on XMLRPC mechanism are set in the monitor and dispatch module, and each client rpcclient of the monitor and dispatch module establishes a connection with the corresponding server rpcserver;
    c)每个任务执行节点分别提供本节点运行状态、实验任务运行、实验任务结果查询服务接口;c) Each task execution node provides the running status of the node, the operation of the experimental task, and the query service interface of the experimental task result;
    d)调度服务器通过监控调度模块监控数据库中的待运行实验任务数据表,如果有新的待运行任务,则分布式管理器模块通过XMLRPC机制将任务信息发送到空闲的任务执行节点上;d) the scheduling server monitors the experimental task data table to be run in the database through the monitoring scheduling module. If there is a new task to be run, the distributed manager module sends the task information to the idle task execution node through the XMLRPC mechanism;
    e)任务执行节点接受待运行的任务信息后,执行本地测控接口运行实验任务,将运行结果缓存到本机数据库中,修改本任务执行节点状态为空闲状态;e) After the task execution node accepts the task information to be run, it executes the local measurement and control interface to run the experimental task, caches the running results in the local database, and modifies the status of the task execution node to be idle;
    f)监控调度模块定时轮询任务执行节点的运行结果信息,当获取到运行结果信息后,根据任务ID将运行结果保存到数据库中的实验任务数据表中,调度服务器继续监控数据库中的待运行实验任务数据表的数据更新。f) The monitoring and scheduling module regularly polls the running result information of the task execution node. When the running result information is obtained, it saves the running result in the experimental task data table in the database according to the task ID, and the scheduling server continues to monitor the running results in the database. Data updates for the experimental mission data table.
  2. 根据权利要求1所述的量子计算机集群分布式监控调度方法,其特征在于:步骤a)中各个任务执行节点通过连接于执行节点服务器,执行节点服务器对各个执行节点进行集群部署。The quantum computer cluster distributed monitoring and scheduling method according to claim 1, characterized in that: in step a), each task execution node is connected to an execution node server, and the execution node server performs cluster deployment for each execution node.
  3. 根据权利要求1所述的量子计算机集群分布式监控调度方法,其特征在于:步骤b)中在一台计算机上设置监控调度模块,该计算机通过本地客户端rpcclient访问每个服务端rpcserver。The quantum computer cluster distributed monitoring and scheduling method according to claim 1, characterized in that: in step b), a monitoring and scheduling module is set on a computer, and the computer accesses each server rpcserver through a local client rpcclient.
  4. 根据权利要求1所述的量子计算机集群分布式监控调度方法,其特征在于:步骤d)中用户通过云平台或客户端软件将要执行的量子实验信息保存到数据库的任务数据表中,任务数据表包含实验任务ID、实验任务内容信息、排队状态信息。The quantum computer cluster distributed monitoring and scheduling method according to claim 1, characterized in that: in step d), the user saves the quantum experiment information to be executed in the task data table of the database through the cloud platform or client software, and the task data table Contains the experimental task ID, experimental task content information, and queuing status information.
PCT/CN2021/112477 2021-05-11 2021-08-13 Distributed monitoring and scheduling method for quantum computer cluster WO2022236993A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN202110511567.5 2021-05-11
CN202110511567.5A CN113326111A (en) 2021-05-11 2021-05-11 Distributed monitoring and scheduling method for quantum computer cluster

Publications (1)

Publication Number Publication Date
WO2022236993A1 true WO2022236993A1 (en) 2022-11-17

Family

ID=77415308

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2021/112477 WO2022236993A1 (en) 2021-05-11 2021-08-13 Distributed monitoring and scheduling method for quantum computer cluster

Country Status (2)

Country Link
CN (1) CN113326111A (en)
WO (1) WO2022236993A1 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN116302453A (en) * 2023-05-22 2023-06-23 中诚华隆计算机技术有限公司 Task scheduling method and device for quantum electronic hybrid platform

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20120317164A1 (en) * 2009-12-30 2012-12-13 Zte Corporation Services Cloud System and Service Realization Method
CN108345501A (en) * 2017-01-24 2018-07-31 全球能源互联网研究院 A kind of distributed resource scheduling method and system
CN111782361A (en) * 2020-06-29 2020-10-16 济南浪潮高新科技投资发展有限公司 Quantum computer cluster distributed queue scheduling method and system
CN112291320A (en) * 2020-10-21 2021-01-29 济南浪潮高新科技投资发展有限公司 Distributed two-layer scheduling method and system for quantum computer cluster

Family Cites Families (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102014028A (en) * 2010-12-22 2011-04-13 浪潮(北京)电子信息产业有限公司 Method and system for monitoring cluster
CN105468429A (en) * 2014-08-19 2016-04-06 西安慧泽知识产权运营管理有限公司 Efficient virtual cluster management method and cluster node
CN108762932A (en) * 2018-05-31 2018-11-06 安徽四创电子股份有限公司 A kind of cluster task scheduling system and processing method
CN110046039A (en) * 2019-03-28 2019-07-23 厦门网宿有限公司 Method for scheduling task and system, control centre's server and storage medium
CN111078397B (en) * 2019-11-27 2023-04-25 上海朗曦信息技术有限公司 Load balancing task allocation method and system suitable for server cluster
CN112099930A (en) * 2020-09-14 2020-12-18 济南浪潮高新科技投资发展有限公司 Quantum computer cluster distributed queue scheduling method
CN112559159A (en) * 2021-01-05 2021-03-26 广州华资软件技术有限公司 Task scheduling method based on distributed deployment

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20120317164A1 (en) * 2009-12-30 2012-12-13 Zte Corporation Services Cloud System and Service Realization Method
CN108345501A (en) * 2017-01-24 2018-07-31 全球能源互联网研究院 A kind of distributed resource scheduling method and system
CN111782361A (en) * 2020-06-29 2020-10-16 济南浪潮高新科技投资发展有限公司 Quantum computer cluster distributed queue scheduling method and system
CN112291320A (en) * 2020-10-21 2021-01-29 济南浪潮高新科技投资发展有限公司 Distributed two-layer scheduling method and system for quantum computer cluster

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN116302453A (en) * 2023-05-22 2023-06-23 中诚华隆计算机技术有限公司 Task scheduling method and device for quantum electronic hybrid platform

Also Published As

Publication number Publication date
CN113326111A (en) 2021-08-31

Similar Documents

Publication Publication Date Title
CN103092698B (en) Cloud computing application automatic deployment system and method
US7895231B2 (en) Queuing model for a plurality of servers
Minier et al. SaGe: Web preemption for public SPARQL query services
US7185046B2 (en) Submitting jobs in a distributed computing environment
CN108737560A (en) Cloud computing task intelligent dispatching method and system, readable storage medium storing program for executing, terminal
Oh et al. Network cost-aware geo-distributed data analytics system
JP2007502464A (en) Automatic and dynamic provisioning of databases
WO2011079614A1 (en) Data collecting method, data collecting apparatus and network management device
CN110597634B (en) Data processing method and device and computer readable storage medium
CN103581332A (en) HDFS framework and pressure decomposition method for NameNodes in HDFS framework
WO2022236993A1 (en) Distributed monitoring and scheduling method for quantum computer cluster
CN111324460B (en) Power monitoring control system and method based on cloud computing platform
CN110300188A (en) Data transmission system, method and apparatus
CN109951370B (en) Hierarchical interconnection method and device for big data centers
Mershad et al. A study of the performance of a cloud datacenter server
CN105162837B (en) The method and system of I/O throughputs are promoted under mass data storage environment
CN115964151A (en) Flow calculation task scheduling system and method for big data processing
CN113515341A (en) Flexible distributed AI training cloud platform deployment method and related platform
CN110162381A (en) Proxy executing method in a kind of container
Heidt et al. Omnivore: Integration of grid meta-scheduling and peer-to-peer technologies
CN102298648A (en) Out-of-process access method of open real-time database
CN105550143A (en) Interface system for acquiring working condition of information equipment
CN102624583B (en) The layered design method that the concurrent real-time parameter of a kind of bulk device obtains
CN113965623B (en) Industrial control network data acquisition system based on mobile agent
CN106331092A (en) Application service system and deployment method based on hadoop big-data platform

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 21941560

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 21941560

Country of ref document: EP

Kind code of ref document: A1