CN109684063B - Task scheduling method and device - Google Patents
Task scheduling method and device Download PDFInfo
- Publication number
- CN109684063B CN109684063B CN201811600945.1A CN201811600945A CN109684063B CN 109684063 B CN109684063 B CN 109684063B CN 201811600945 A CN201811600945 A CN 201811600945A CN 109684063 B CN109684063 B CN 109684063B
- Authority
- CN
- China
- Prior art keywords
- task
- new
- scheduling
- state
- plan
- Prior art date
- Legal status (The legal status 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 status listed.)
- Active
Links
- 238000000034 method Methods 0.000 title claims abstract description 120
- 230000002159 abnormal effect Effects 0.000 claims description 12
- 238000012217 deletion Methods 0.000 claims description 5
- 230000037430 deletion Effects 0.000 claims description 5
- 238000010586 diagram Methods 0.000 description 2
- 230000000750 progressive effect Effects 0.000 description 1
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements 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/46—Multiprogramming arrangements
- G06F9/48—Program initiating; Program switching, e.g. by interrupt
- G06F9/4806—Task transfer initiation or dispatching
- G06F9/4843—Task transfer initiation or dispatching by program, e.g. task dispatcher, supervisor, operating system
- G06F9/4881—Scheduling strategies for dispatcher, e.g. round robin, multi-level priority queues
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Management, Administration, Business Operations System, And Electronic Commerce (AREA)
Abstract
The invention provides a task scheduling method and a task scheduling device, which comprise the following steps: the task manager scans a task list at regular time and judges whether a new task is added in the task list, wherein the task list records the task state and the execution plan of each task, and the execution plan comprises the execution time of the task; when the task manager judges that a new task is added into the task list, the task manager acquires a task state and an execution plan of the new task and generates a task scheduling plan according to the task state and the execution plan of the new task, wherein the task scheduling plan comprises the task state of the new task and the execution time of the new task; and the task manager distributes the task scheduling plan to any scheduling process in an idle state according to the execution time of the new task, so that the scheduling process executes the new task. The invention can realize the real-time processing of the task newly added into the task list without restarting the scheduling process.
Description
Technical Field
The invention relates to the technical field of mobile service support, service support system design and the like, in particular to a task scheduling method and device.
Background
Currently, all tasks are recorded in a task list, and after a scheduling process is started for the first time, all tasks in the task list are loaded and each task is processed successively.
However, when a new task is added to the task list, the scheduling process needs to be restarted to process the new task, that is, the existing task scheduling method cannot process the newly added task in the task list in real time.
Disclosure of Invention
In view of this, the present invention provides a task scheduling method and device, which are used to implement real-time processing of a newly added task in a task list. The technical scheme is as follows:
based on one aspect of the present invention, the present invention provides a task scheduling method, including:
the task manager scans a task list at regular time and judges whether a new task is added in the task list, wherein the task list records the task state and the execution plan of each task, and the execution plan comprises the execution time of the task;
when the task manager judges that a new task is added into the task list, the task manager acquires a task state and an execution plan of the new task and generates a task scheduling plan according to the task state and the execution plan of the new task, wherein the task scheduling plan comprises the task state of the new task and the execution time of the new task;
and the task manager distributes the task scheduling plan to any scheduling process in an idle state according to the execution time of the new task, so that the scheduling process executes the new task.
Optionally, before the scheduling process executes the new task, the method further includes:
the scheduling process judges whether the new task is normal or not according to the task state of the new task;
if the new task is normal, the scheduling process executes the new task;
if not, the scheduling process stops executing the new task.
Optionally, the method further comprises:
when the scheduling process judges that the new task is abnormal, the scheduling process sends a result indicating that the new task is abnormal to the task manager;
and the task manager deletes the new task, the task state and the execution plan of the new task and the generated task scheduling plan of the new task, which are recorded in the task list, according to the result.
Optionally, the determining, by the scheduling process, that the new task is not normal includes: and the scheduling process judges that the task state of the new task is a deletion state and/or the new task is not recorded in the task list.
Optionally, the task list includes a first sub-table and a second sub-table;
the first sub-table is used for recording the task state of each task;
the second sub-table is used for recording execution plans of all tasks, wherein the tasks in the first sub-table and the tasks in the second sub-table are associated through task numbers, and one task in the first sub-table corresponds to at least one execution plan in the second sub-table.
Based on another aspect of the present invention, the present invention provides a task scheduling apparatus, including:
the scanning unit is used for scanning the task list at regular time;
the judging unit is used for judging whether a new task is added into the task list, wherein the task list records the task state and the execution plan of each task, and the execution plan comprises the execution time of the task;
the task scheduling plan generating unit is used for acquiring a task state and an execution plan of a new task when the judging unit judges that the new task is added into the task list, and generating a task scheduling plan according to the task state and the execution plan of the new task, wherein the task scheduling plan comprises the task state of the new task and the execution time of the new task;
and the distribution unit is used for distributing the task scheduling plan to any scheduling process in an idle state according to the execution time of the new task, so that the scheduling process executes the new task.
Optionally, before the scheduling process executes the new task, the scheduling process is further configured to:
judging whether the new task is normal or not according to the task state of the new task;
if the new task is normal, the scheduling process executes the new task;
if not, the scheduling process stops executing the new task.
Optionally, the apparatus further comprises:
the receiving unit is used for receiving a result which is sent by the scheduling process and used for indicating that the new task is abnormal;
and the deleting unit is used for deleting the new task, the task state and the execution plan of the new task and the generated task scheduling plan of the new task which are recorded in the task list according to the result.
Optionally, the determining, by the scheduling process, that the new task is not normal includes: and the scheduling process judges that the task state of the new task is a deletion state and/or the new task is not recorded in the task list.
Optionally, the task list includes a first sub-table and a second sub-table;
the first sub-table is used for recording the task state of each task;
the second sub-table is used for recording execution plans of all tasks, wherein the tasks in the first sub-table and the tasks in the second sub-table are associated through task numbers, and one task in the first sub-table corresponds to at least one execution plan in the second sub-table.
In the task scheduling method and the task scheduling device, the task manager scans the task list at regular time and judges whether a new task is added in the task list. When the task manager determines that a new task is added into the task list, the task manager acquires a task state and an execution plan of the new task, generates a task scheduling plan according to the task state and the execution plan of the new task, and allocates the task scheduling plan to any scheduling process in an idle state according to the execution time of the new task, so that the scheduling process executes the new task. In the implementation process of the invention, when a new task is added into the task list, the task manager can acquire the task state and the execution plan of the new task in time, and generate the task scheduling plan according to the task state and the execution plan of the new task, so as to distribute the task scheduling plan to any scheduling process in an idle state for execution.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below, it is obvious that the drawings in the following description are only embodiments of the present invention, and for those skilled in the art, other drawings can be obtained according to the provided drawings without creative efforts.
FIG. 1 is a flowchart of a task scheduling method according to the present invention;
FIG. 2 is a flow chart of another task scheduling method provided by the present invention;
FIG. 3 is a schematic structural diagram of a task scheduling device according to the present invention;
fig. 4 is a schematic structural diagram of another task scheduling device provided in the present invention.
Detailed Description
The technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are only a part of the embodiments of the present invention, and not all of the embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
In view of the problem that a mode that a scheduling process processes each task in a task list one by one in the prior art and a newly added task in the task list cannot be processed in real time, the invention provides that a plurality of scheduling processes simultaneously and respectively execute the tasks in the task list, a task manager regularly scans the task list to judge whether the new task is added in the task list, and when the task manager judges that the new task is added in the task list, the task state and the execution plan of the new task can be timely obtained, and the task scheduling plan is generated according to the task state and the execution plan of the new task, so that the task scheduling plan is distributed to any scheduling process in an idle state to be executed.
Specifically, as shown in fig. 1, the task scheduling method provided by the present invention may include:
In the invention, the task state and the execution plan of each task are recorded in the task list, and the execution plan comprises the execution time of the task.
Wherein the task state may include a to-be-executed state, an executing-completed state, a deleting state, and the like. The execution plan includes execution time of the task, execution contents of the task, and the like. Preferably, in the present invention, the task list may specifically include two tables, such as a first sub-table and a second sub-table. The first sub-table is used for recording task states of all tasks, the second sub-table is used for recording execution plans of all tasks, the tasks in the first sub-table and the tasks in the second sub-table are related through task numbers, one task in the first sub-table corresponds to at least one execution plan in the second sub-table, and namely one task corresponds to at least one execution plan.
In the invention, when a task manager monitors that a new task is added into a task list, the task manager immediately acquires the task state and the execution plan of the new task and generates a task scheduling plan according to the task state and the execution plan of the new task, wherein the task scheduling plan comprises the task state of the new task and the execution time of the new task.
And 104, distributing the task scheduling plan to any scheduling process in an idle state by the task manager according to the execution time of the new task, so that the scheduling process executes the new task.
The task manager can select a preset time before the execution time of the new task according to the execution time of the new task, and distribute the task scheduling plan to any scheduling process in an idle state.
For example, the execution time of the new task is 8 o 'clock in 1 month, 1 day and 2019, and the task manager in the invention can allocate the task scheduling plan of the new task to any scheduling process in an idle state at 7 o' clock in 1 month, 1 day and 2019 for 59 minutes and 30 seconds.
And after receiving the task scheduling plan, the scheduling process executes the new task according to the task scheduling plan.
Therefore, in the task scheduling method provided by the invention, when a new task is added into the task list, the task manager can monitor and acquire the task state and the execution plan of the new task in time, and generate the task scheduling plan according to the task state and the execution plan of the new task, so that the task scheduling plan is distributed to any scheduling process in an idle state for execution.
In the actual application process, there is also a case that the task in the task list needs to be deleted in time.
For the situation that the task in the task list needs to be deleted in time, the prior art can only manually stop the scheduling process, and restart the scheduling process after deleting the task in the task list, and the restarted scheduling process continues to execute other tasks. Obviously, the existing task scheduling method also has the problem that the tasks needing to be deleted cannot be processed in real time.
In view of the above, as shown in fig. 2, the present invention further includes, on the basis of fig. 1:
and 105, before executing the new task, the scheduling process judges whether the new task is normal or not according to the task state of the new task. If so, step 106 is performed, and if not, step 107 is performed.
In the present invention, the determining that the new task is abnormal by the scheduling process may include: and the scheduling process judges the task state of the new task to be a deleted state and/or judges that the new task is not recorded in the task list.
And when the scheduling process judges that the new task is normal, executing the new task again, and when the scheduling process judges that the new task is abnormal, stopping executing the new task.
Preferably, when the scheduling process judges that the new task is abnormal, a result indicating that the new task is abnormal may be fed back to the task manager.
When the task manager receives the result, it can determine that the current task needs to be deleted, and further delete the new task, the task state and the execution plan of the new task, and the generated task scheduling plan of the new task, which are recorded in the task list.
In the task scheduling method provided by the invention, when a scheduling process schedules a new task, the task state of the new task is firstly checked, and whether the new task is normal or not is judged based on the task state of the new task. When the scheduling process determines that the task state of the new task is a deletion state or does not exist in the task list, the scheduling process stops the execution of the task and feeds back the result to the task manager, and the task manager deletes relevant information (an execution plan and a task scheduling plan) of the new task.
The invention can automatically stop scheduling and delete the relevant information of the tasks to be deleted, thereby ensuring that the tasks to be deleted are stopped in time, effectively reducing the task interruption caused by restarting the scheduling process and realizing the real-time processing of the tasks to be deleted.
Based on the task scheduling method provided by the foregoing invention, as shown in fig. 3, the present invention further provides a task scheduling device, which can be specifically applied to the task manager described above. The task scheduling device may include:
a scanning unit 10, configured to scan the task list at regular time;
a determining unit 20, configured to determine whether a new task is added to the task list, where a task state and an execution plan of each task are recorded in the task list, and the execution plan includes an execution time of the task;
a task scheduling plan generating unit 30, configured to obtain a task state and an execution plan of a new task when the determining unit 10 determines that the new task is added to the task list, and generate a task scheduling plan according to the task state and the execution plan of the new task, where the task scheduling plan includes the task state of the new task and an execution time of the new task;
and the allocating unit 40 is configured to allocate the task scheduling plan to any scheduling process in an idle state according to the execution time of the new task, so that the scheduling process executes the new task.
Wherein, in the implementation process of the present invention, before the scheduling process executes the new task, the scheduling process is further configured to:
judging whether the new task is normal or not according to the task state of the new task;
if the new task is normal, the scheduling process executes the new task;
if not, the scheduling process stops executing the new task.
Preferably, as shown in fig. 4, the task scheduling apparatus provided by the present invention may further include:
a receiving unit 50, configured to receive a result sent by the scheduling process and used for indicating that the new task is abnormal;
and a deleting unit 60, configured to delete the new task, the task state and the execution plan of the new task, and the generated task scheduling plan of the new task, which are recorded in the task list, according to the result.
In the present invention, the determining, by the scheduling process, that the new task is abnormal may include: and the scheduling process judges that the task state of the new task is a deleted state and/or judges that the new task is not recorded in the task list.
The task list may include a first sub-table and a second sub-table; wherein,
the first sub-table is used for recording the task state of each task;
the second sub-table is used for recording execution plans of all tasks, wherein the tasks in the first sub-table and the tasks in the second sub-table are associated through task numbers, and one task in the first sub-table corresponds to at least one execution plan in the second sub-table.
It should be noted that, in the present specification, the embodiments are all described in a progressive manner, each embodiment focuses on differences from other embodiments, and the same and similar parts among the embodiments may be referred to each other. For the device-like embodiment, since it is basically similar to the method embodiment, the description is simple, and for the relevant points, reference may be made to the partial description of the method embodiment.
Finally, it should also be noted that, herein, relational terms such as first and second, and the like may be used solely to distinguish one entity or action from another entity or action without necessarily requiring or implying any actual such relationship or order between such entities or actions. Also, the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. Without further limitation, an element defined by the phrase "comprising an … …" does not exclude the presence of other identical elements in a process, method, article, or apparatus that comprises the element.
The task scheduling method and device provided by the present invention are introduced in detail, and a specific example is applied in the text to explain the principle and the implementation of the present invention, and the description of the above embodiment is only used to help understanding the method and the core idea of the present invention; meanwhile, for a person skilled in the art, according to the idea of the present invention, there may be variations in the specific embodiments and the application scope, and in summary, the content of the present specification should not be construed as a limitation to the present invention.
Claims (10)
1. A task scheduling method, comprising:
the task manager scans a task list at regular time and judges whether a new task is added in the task list, wherein the task list records the task state and the execution plan of each task, and the execution plan comprises the execution time of the task;
when the task manager judges that a new task is added into the task list, the task manager acquires a task state and an execution plan of the new task and generates a task scheduling plan according to the task state and the execution plan of the new task, wherein the task scheduling plan comprises the task state of the new task and the execution time of the new task;
the task manager allocates the task scheduling plan to any scheduling process in an idle state according to the execution time of the new task, so that the scheduling process executes the new task scheduling, and the task scheduling method includes: and the task manager selects a preset time before the execution time of the new task according to the execution time of the new task, and allocates the task scheduling plan to any scheduling process in an idle state.
2. The method of claim 1, wherein the scheduling process, prior to performing the new task scheduling, further comprises: the scheduling process judges whether the new task is normal or not according to the task state of the new task;
if the task is normal, the scheduling process executes the new task scheduling;
and if not, stopping executing the new task scheduling by the scheduling process.
3. The method of claim 2, further comprising:
when the scheduling process judges that the new task is abnormal, the scheduling process sends a result indicating that the new task is abnormal to the task manager;
and the task manager deletes the new task, the task state and the execution plan of the new task and the generated task scheduling plan of the new task, which are recorded in the task list, according to the result.
4. A method according to claim 2 or 3, wherein the scheduling process determining that the new task is not normal comprises: and the scheduling process judges that the task state of the new task is a deletion state and/or the new task is not recorded in the task list.
5. The method of any of claims 1-3, wherein the task list comprises a first sub-table and a second sub-table;
the first sub-table is used for recording the task state of each task;
the second sub-table is used for recording execution plans of all tasks, wherein the tasks in the first sub-table and the tasks in the second sub-table are associated through task numbers, and one task in the first sub-table corresponds to at least one execution plan in the second sub-table.
6. A task scheduling apparatus, comprising:
the scanning unit is used for scanning the task list at regular time;
the judging unit is used for judging whether a new task is added into the task list, wherein the task list records the task state and the execution plan of each task, and the execution plan comprises the execution time of the task;
the task scheduling plan generating unit is used for acquiring a task state and an execution plan of a new task when the judging unit judges that the new task is added into the task list, and generating a task scheduling plan according to the task state and the execution plan of the new task, wherein the task scheduling plan comprises the task state of the new task and the execution time of the new task;
the allocating unit is configured to allocate the task scheduling plan to any scheduling process in an idle state according to the execution time of the new task, so that the scheduling process executes the new task scheduling, and includes: and the task manager selects a preset time before the execution time of the new task according to the execution time of the new task, and allocates the task scheduling plan to any scheduling process in an idle state.
7. The apparatus of claim 6, wherein the scheduling process, prior to performing the new task scheduling, is further configured to:
judging whether the new task is normal or not according to the task state of the new task;
if the task is normal, the scheduling process executes the new task scheduling;
and if not, stopping executing the new task scheduling by the scheduling process.
8. The apparatus of claim 7, further comprising:
the receiving unit is used for receiving a result which is sent by the scheduling process and used for indicating that the new task is abnormal;
and the deleting unit is used for deleting the new task, the task state and the execution plan of the new task and the generated task scheduling plan of the new task which are recorded in the task list according to the result.
9. The apparatus of claim 7 or 8, wherein the scheduling process determining that the new task is not normal comprises: and the scheduling process judges that the task state of the new task is a deletion state and/or the new task is not recorded in the task list.
10. The apparatus of any of claims 6-8, wherein the task list comprises a first sub-table and a second sub-table;
the first sub-table is used for recording the task state of each task;
the second sub-table is used for recording execution plans of all tasks, wherein the tasks in the first sub-table and the tasks in the second sub-table are associated through task numbers, and one task in the first sub-table corresponds to at least one execution plan in the second sub-table.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201811600945.1A CN109684063B (en) | 2018-12-26 | 2018-12-26 | Task scheduling method and device |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201811600945.1A CN109684063B (en) | 2018-12-26 | 2018-12-26 | Task scheduling method and device |
Publications (2)
Publication Number | Publication Date |
---|---|
CN109684063A CN109684063A (en) | 2019-04-26 |
CN109684063B true CN109684063B (en) | 2021-03-26 |
Family
ID=66188494
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
CN201811600945.1A Active CN109684063B (en) | 2018-12-26 | 2018-12-26 | Task scheduling method and device |
Country Status (1)
Country | Link |
---|---|
CN (1) | CN109684063B (en) |
Families Citing this family (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN111708613B (en) * | 2020-08-18 | 2020-12-11 | 广东睿江云计算股份有限公司 | Method and system for repairing boot failure card task of VM virtual machine |
Citations (10)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
WO2007028942A1 (en) * | 2005-09-09 | 2007-03-15 | The University Of Leicester | Time-triggered co-operative hardware scheduler |
CN101431430A (en) * | 2007-11-07 | 2009-05-13 | 中兴通讯股份有限公司 | Policy execution system and method |
WO2011061034A1 (en) * | 2009-11-23 | 2011-05-26 | International Business Machines Corporation | A method and system for job scheduling in a data processing system with virtual environment |
CN103324534A (en) * | 2012-03-22 | 2013-09-25 | 阿里巴巴集团控股有限公司 | Operation scheduling method and operation scheduler |
CN106412061A (en) * | 2016-09-28 | 2017-02-15 | 上海爱数信息技术股份有限公司 | Linux-based log folder remote transmission system |
CN107621972A (en) * | 2016-07-15 | 2018-01-23 | 中兴通讯股份有限公司 | Big data task dynamic management approach, device and server |
CN108037991A (en) * | 2017-12-26 | 2018-05-15 | 中山大学 | A kind of timing operation dispatching method and system for supporting job dependence relation |
CN108804096A (en) * | 2017-05-05 | 2018-11-13 | 中思博安科技(北京)有限公司 | A kind of task scheduling execution method and apparatus based on intelligent contract |
CN108829503A (en) * | 2018-06-27 | 2018-11-16 | 泰康保险集团股份有限公司 | Method for scheduling task, device, system, medium and electronic equipment |
CN109032779A (en) * | 2018-07-09 | 2018-12-18 | 广州酷狗计算机科技有限公司 | Task processing method, device, computer equipment and readable storage medium storing program for executing |
Family Cites Families (7)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN101425024A (en) * | 2008-10-24 | 2009-05-06 | 中国移动通信集团山东有限公司 | Multitasking method and device |
CN101710411A (en) * | 2009-12-01 | 2010-05-19 | 中国建设银行股份有限公司 | Method and equipment for processing real-time task |
US9503421B2 (en) * | 2014-03-17 | 2016-11-22 | Fortinet, Inc. | Security information and event management |
CN104503845B (en) * | 2015-01-14 | 2017-07-14 | 北京邮电大学 | A kind of task distribution method and system |
CN106815066B (en) * | 2015-11-30 | 2020-11-06 | 创新先进技术有限公司 | Timed task scheduling method, device and system |
CN107766129B (en) * | 2016-08-17 | 2021-04-16 | 北京金山云网络技术有限公司 | Task processing method, device and system |
CN108710537A (en) * | 2018-04-09 | 2018-10-26 | 平安科技(深圳)有限公司 | A kind of task processing method, storage medium and server |
-
2018
- 2018-12-26 CN CN201811600945.1A patent/CN109684063B/en active Active
Patent Citations (10)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
WO2007028942A1 (en) * | 2005-09-09 | 2007-03-15 | The University Of Leicester | Time-triggered co-operative hardware scheduler |
CN101431430A (en) * | 2007-11-07 | 2009-05-13 | 中兴通讯股份有限公司 | Policy execution system and method |
WO2011061034A1 (en) * | 2009-11-23 | 2011-05-26 | International Business Machines Corporation | A method and system for job scheduling in a data processing system with virtual environment |
CN103324534A (en) * | 2012-03-22 | 2013-09-25 | 阿里巴巴集团控股有限公司 | Operation scheduling method and operation scheduler |
CN107621972A (en) * | 2016-07-15 | 2018-01-23 | 中兴通讯股份有限公司 | Big data task dynamic management approach, device and server |
CN106412061A (en) * | 2016-09-28 | 2017-02-15 | 上海爱数信息技术股份有限公司 | Linux-based log folder remote transmission system |
CN108804096A (en) * | 2017-05-05 | 2018-11-13 | 中思博安科技(北京)有限公司 | A kind of task scheduling execution method and apparatus based on intelligent contract |
CN108037991A (en) * | 2017-12-26 | 2018-05-15 | 中山大学 | A kind of timing operation dispatching method and system for supporting job dependence relation |
CN108829503A (en) * | 2018-06-27 | 2018-11-16 | 泰康保险集团股份有限公司 | Method for scheduling task, device, system, medium and electronic equipment |
CN109032779A (en) * | 2018-07-09 | 2018-12-18 | 广州酷狗计算机科技有限公司 | Task processing method, device, computer equipment and readable storage medium storing program for executing |
Also Published As
Publication number | Publication date |
---|---|
CN109684063A (en) | 2019-04-26 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US10374930B2 (en) | Off-peak patching for enterprise stability | |
US8856793B2 (en) | System, method and program for scheduling computer program jobs | |
EP3432159B1 (en) | Garbage collection method and device | |
CN110659121B (en) | Task data acquisition method and device, task configuration method and device and server | |
US9940598B2 (en) | Apparatus and method for controlling execution workflows | |
CN107318044A (en) | A kind of live content intercept method and system | |
CN107146012B (en) | Risk event processing method and system | |
DE69840580D1 (en) | METHOD AND DEVICE FOR VIDEO ON REQUEST WITH DELAY | |
US20130332207A1 (en) | System and method for intelligent management of appointment waiting list | |
CN109858655B (en) | Method and system for reserved test | |
CN113032125A (en) | Job scheduling method, device, computer system and computer-readable storage medium | |
CN109684063B (en) | Task scheduling method and device | |
CN109495528B (en) | Distributed lock ownership scheduling method and device | |
US10320744B2 (en) | Systems, devices, and methods for dynamic allocation of domain name acquisition resources | |
CN114666615B (en) | Resource allocation method, device, server, program, and storage medium | |
JPH06332833A (en) | Server operation system | |
CN109685358B (en) | Cleaning task generation method, device, medium and electronic equipment | |
CN113590308A (en) | Workflow processing method, device, equipment and medium for applying for cloud resources | |
CN116700998A (en) | Application program interface management method, terminal device and storage medium | |
CN110046319B (en) | Social media information acquisition method, device, system, equipment and storage medium | |
CN115687333B (en) | V2x big data life cycle management method and device | |
CN108628901A (en) | A kind of data-updating method and device | |
WO2019196243A1 (en) | Agent cooperative task management method and apparatus, and computer device and storage medium | |
JP5057481B2 (en) | Workflow system, control method, and program | |
CN115237558A (en) | Task scheduling method, device, system, storage medium and computer equipment |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
PB01 | Publication | ||
PB01 | Publication | ||
SE01 | Entry into force of request for substantive examination | ||
SE01 | Entry into force of request for substantive examination | ||
GR01 | Patent grant | ||
GR01 | Patent grant |