CN110688216A - Custom cloud plan task creation method and device - Google Patents

Custom cloud plan task creation method and device Download PDF

Info

Publication number
CN110688216A
CN110688216A CN201910785702.8A CN201910785702A CN110688216A CN 110688216 A CN110688216 A CN 110688216A CN 201910785702 A CN201910785702 A CN 201910785702A CN 110688216 A CN110688216 A CN 110688216A
Authority
CN
China
Prior art keywords
task
template
calling
initial
parameters
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.)
Granted
Application number
CN201910785702.8A
Other languages
Chinese (zh)
Other versions
CN110688216B (en
Inventor
崔为波
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Beijing Inspur Data Technology Co Ltd
Original Assignee
Beijing Inspur Data Technology Co Ltd
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 Beijing Inspur Data Technology Co Ltd filed Critical Beijing Inspur Data Technology Co Ltd
Priority to CN201910785702.8A priority Critical patent/CN110688216B/en
Publication of CN110688216A publication Critical patent/CN110688216A/en
Application granted granted Critical
Publication of CN110688216B publication Critical patent/CN110688216B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

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/50Allocation of resources, e.g. of the central processing unit [CPU]
    • G06F9/5061Partitioning or combining of resources
    • G06F9/5072Grid computing
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/35Creation or generation of source code model driven
    • 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/44Arrangements for executing specific programs
    • G06F9/448Execution paradigms, e.g. implementations of programming paradigms
    • G06F9/4482Procedural
    • G06F9/4484Executing subprograms

Abstract

The invention discloses a custom cloud plan task creating method and a custom cloud plan task creating device, wherein the method comprises the following steps: receiving a task creating instruction and an initial task parameter sent by a first user, selecting a corresponding template from a template library according to the initial task parameter, and creating an initial task template; receiving specific task parameters sent by a second user, selecting the initial task template according to the specific task parameters and creating a specific task; and selecting a calling mode according to the task calling type and calling a module to complete the specific task. According to the initial task parameters sent by the first user and the specific task parameters sent by the second user, the automatic generation of the cloud planning task and the code realization are realized by searching the corresponding code template. So that a user can flexibly create cloud planning tasks without being concerned with the underlying implementation. Meanwhile, corresponding calling interfaces can be provided for different calling types. The flexibility of the cloud computing platform is greatly improved, the cost is saved, and the working efficiency is improved.

Description

Custom cloud plan task creation method and device
Technical Field
The invention relates to the field of cloud computing, in particular to a custom cloud plan task creation method and device.
Background
With the development of internet technology, cloud computing technology is also more and more widely applied. Cloud computing refers to decomposing a huge data computing processing program into countless small programs through a network cloud, and then processing and analyzing the small programs through a system consisting of a plurality of cloud computing platforms to obtain results and returning the results to a user. The user can send the task to be processed to the cloud computing platform to complete the task by subscribing the cloud computing service, and the complex tasks such as data processing and the like can be completed without occupying too much computing power of the user.
In the current cloud computing service, some customized cloud planning tasks are often required to be completed. These cloud planning tasks are typically stored in the form of code in the cloud computing platform. The cloud computing platform can call the timed task component when needed. However, when the cloud planning task is created or modified, new code needs to be added to the cloud computing platform. The newly added codes need to be manually written by research personnel, the process is time-consuming and labor-consuming, the research and development period of the cloud computing platform is prolonged, and the flexibility of the cloud computing service is further reduced.
Secondly, in the existing cloud computing technology, the cloud computing platform calls the tasks through Client programs (clients) of the tasks. And when the newly added task does not have a Client meeting the cloud computing platform framework, the cloud computing platform cannot call the task.
Disclosure of Invention
In view of this, embodiments of the present application provide a method and an apparatus for creating a custom task, which aim to create or modify a cloud plan task on the premise that an underlying code is not directly edited, and implement invocation of the task without limiting a task interface.
In order to achieve the purpose, the invention provides the following technical scheme:
a custom cloud plan task creation method, the method comprising:
receiving a cloud plan task creating instruction sent by a first user and an initial task parameter sent by the first user;
selecting a corresponding template according to the initial task parameters, and creating an initial task template by using the template; the initial task parameters comprise a task type and a task calling type, and the templates comprise a bottom layer code template and a calling code template;
and receiving specific task parameters sent by a second user, selecting a corresponding initial task template according to the specific task parameters, and creating a specific task.
Optionally, the creating an initial task template includes:
selecting a bottom layer code template corresponding to the task type from a template library according to the task type in the initial task parameter;
selecting a calling code template corresponding to the task calling type from the template library according to the task calling type in the initial task parameter;
and combining the bottom layer code template and the calling code template and filling other initial task parameters to obtain an initial task template.
Optionally, the initial task template includes a body code structure of the planned task and has a vacancy for filling in specific task parameters.
Optionally, the initial task parameters further include a task name, an execution time, a running number, and a specific task parameter category.
Optionally, the specific task parameters include:
the task type corresponding to the initial task template and other specific parameters except the initial task parameters are used for creating the cloud plan task.
Optionally, the creating a specific task includes:
selecting a corresponding initial task template according to the task type in the specific task parameter;
and filling the specific parameters into an initial task template to obtain a bottom layer code corresponding to the specific task.
Optionally, the method further comprises:
when the specific task calling type is a Client program Client, executing the specific task through a Client calling module;
and when the specific task calling type is not the Client, directly executing the specific task through a remote procedure calling protocol (Rpc) calling module.
A custom cloud-planned task creation device, the device comprising:
the acquisition unit is used for acquiring a cloud plan creation instruction and task parameters;
the creating unit is used for creating an initial task template and a specific task;
and the module calling unit is used for calling the module to complete a specific task according to the task calling type.
Optionally, the obtaining unit includes:
the first user acquisition unit is used for acquiring the cloud plan task creation instruction and the initial task parameter;
and the second user acquisition unit is used for acquiring the specific task parameters.
Optionally, the creating unit includes:
the template calling unit is used for calling a bottom layer code template and calling a code template according to the initial task parameters;
the combination unit is used for combining the upper bottom layer code template and the calling code template into the initial task template;
and the filling unit is used for filling the initial task parameters and the specific task parameters into the initial task template.
The embodiment of the invention provides a custom cloud plan task creation method and a custom cloud plan task creation device. And directly creating an initial task template according to the initial task parameters sent by the first user, and then creating a specific task according to the specific task parameters sent by the second user. The parameters are filled into the preset code template, so that a user can directly create a cloud planning task under the condition of not paying attention to the implementation of specific bottom codes, the development cost is saved, the fault tolerance rate of a cloud computing platform is increased, the working efficiency is improved, and the service range is widened. And secondly, the invention also supports calling other modules under the condition of not using the Client, thereby widening the service range.
Drawings
To illustrate the embodiments of the present invention or the technical solutions in the prior art more clearly, the drawings used in the description of the embodiments or the prior art will be briefly introduced below, and it is obvious that the drawings in the following description are only some embodiments of the present invention, and it is obvious for those skilled in the art that other drawings can be obtained based on these drawings without creative efforts.
Fig. 1 is a diagram of a cloud plan task creation method according to an embodiment of the present invention.
Fig. 2 is a flowchart of an initial task template creation process according to an embodiment of the present invention.
Fig. 3 is a flow chart of cloud planning task creation according to an embodiment of the present invention.
Fig. 4 is a diagram of a cloud-plan task creation device according to an embodiment of the present invention.
Detailed Description
In the existing cloud computing platform technology, when a cloud plan task is modified, a bottom layer code needs to be directly modified, and the process is time-consuming and labor-consuming. And most of the actually modified codes are framework-shaped codes which are the same as the existing cloud planning tasks. What can decide what the cloud planning task is actually a small part of the parameters. Therefore, most of the code modification in the prior art is repetitive labor, and the research and development efficiency is greatly reduced. Therefore, the invention provides a method and a device for creating a cloud planning task by using a code template and parameters sent by a user. The method and the system can enable a user to flexibly and autonomously complete the creation of the cloud planning task under the condition of not paying attention to the implementation of the bottom layer, reduce the error rate, reduce the research and development cost and improve the working efficiency.
In order to provide an implementation scheme for completing autonomous creation of a cloud planning task, embodiments of the present invention provide a method and an apparatus for creating a custom cloud planning task, and a preferred embodiment of the present invention is described below with reference to drawings of the specification.
Fig. 1 is a flowchart of a custom cloud plan task creation method provided in an embodiment of the present invention, including:
101: and receiving a cloud plan task creation instruction sent by a first user.
In this embodiment, the first user is an administrator user of the cloud computing platform, and may directly perform operations such as management and modification on the cloud computing platform. The second user is a common user of the cloud computing platform, and a specific task can be created by selecting one from the existing initial task templates through the front-end UI.
And when the cloud computing platform receives a first user cloud plan task creation instruction, displaying a task creation interface. The task creation interface can be displayed in a cloud computing platform front end UI, and a first user inputs or selects corresponding initial task parameters through the cloud computing platform front end.
102: and displaying a task creation interface, receiving the initial task parameters sent by the first user, selecting a corresponding template from a template library according to the initial task parameters, and creating an initial task template.
For the cloud planning task, the initial task parameters may include a plurality of parameters such as a task name, a task type, an execution time, an operation number, a notification interface, a task call type, and a specific task parameter type. Wherein, two parameters of the task type and the task calling type must be contained in the initial task parameter, and other parameters can be selectively input into the task creation interface according to the requirement of the first user.
In cloud planning tasks, the underlying code implementations of the same type of task are not really different. Most of them are structural type codes, and the actual difference of each type code is very small. For example, the code of a data calculation type task is basically identical except for the storage position of data to be calculated and some special requirements. However, the code difference between different types of tasks is large, such as a data computing task and an image processing task, and the difference of the underlying code framework is large. Therefore, in this embodiment, the basic underlying framework code may be directly selected according to the task type, and then, other initial task parameters are filled in the basic underlying framework code, so as to obtain a code template of an initial task template, that is, the initial task template of the cloud planning task.
103: and receiving specific task parameters sent by a second user, selecting the initial task template according to the specific task parameters and creating a specific task.
After the initial task template is obtained, the cloud computing platform receives specific task parameters sent by the second user. The specific task parameters may actually include all parameters that need to complete the cloud plan creation except the initial task parameters, and may also include a task type corresponding to the initial task template. Meanwhile, the kind of the specific task parameter may be confirmed by the initial task parameter. After receiving the specific task parameters, the cloud computing platform selects the initial task templates of the same type, fills the rest of the specific task parameters into the initial task templates, and finally obtains the finished cloud planning task with all the parameters. The cloud planning task can be created or modified through the cooperation of the initial task parameters, the specific task parameters and the programs in the cloud computing platform under the condition that the bottom layer codes are not directly contacted. And flexible creation of cloud planning tasks is realized.
104: and selecting a calling mode according to the task calling type and calling a module to complete the specific task.
When the task is executed, a module in the cloud computing platform needs to be called to complete the execution of the task. In the embodiment, different calling modes can be selected according to the calling types of the tasks, and the cloud planning tasks are completed by calling the modules through the calling modes. The calling mode in this embodiment may include direct calling and calling through a Client (Client program). When the task calling type of the cloud planning task is direct calling, the required module can be called directly through Rpc (remote procedure call protocol). When the task calling type of the cloud planning task is Client, the cloud planning task can be completed through the Client calling module. The module calling method in the embodiment is flexible, is not limited to clients, and widens the application range of cloud computing services.
To more clearly explain the process of creating the initial task template, a detailed description is given below in conjunction with FIG. 2 and another embodiment.
Fig. 2 is a flowchart of creating an initial task template according to an embodiment of the present invention, which includes:
201: and selecting a bottom layer code template corresponding to the task type from a template library according to the task type in the initial task parameter.
The main content in this embodiment is the creation of an initial task template. After the cloud computing platform receives the cloud planning task creating instruction, the first user may input or select corresponding initial task parameters in the front-end interface, where the initial task parameters may include a task type and a task calling template.
After receiving the initial task parameters, the cloud computing platform may select a corresponding underlying code template according to the task type in the initial task parameters, that is, when the corresponding task type in the initial task parameters is "data computing", the underlying code template for data computing is selected as a main template for the cloud planning task. From previous analysis, it can be seen that for cloud planning tasks, the code implementation of the same type of task is not really different, differing only in some parameters. Thus, the underlying code template may include the body of the cloud planning task code implementation, i.e., the vast majority of code implementing the cloud planning task, and may also have a large amount of slots for filling in parameters.
202: and selecting a calling code template corresponding to the task calling type from the template library according to the task calling type in the initial task parameter.
On the other hand, the cloud computing platform can also select a calling code template according to the task calling type in the initial task parameters. The calling code template may be in the form of an interface. For example, when the task calling type of the cloud planning task is direct calling, the corresponding module is directly called through Rpc to complete the cloud planning task. In this case, the calling code template may be an Rpc interface for realizing calling communication between the task and the module when the task is executed subsequently. When the task call type of the cloud plan is other types, the call code template may be an interface corresponding to the type.
203: and combining the bottom layer code template and the calling code template to obtain an initial task template.
After the selection of the bottom layer code template and the calling code template is completed, the cloud computing platform combines the bottom layer code template and the calling code template, and fills other parameters in the initial task parameters into the bottom layer code template and the calling code template to obtain the initial task template.
In one embodiment, the creating specific tasks include:
and selecting a corresponding initial task template according to the task type in the specific task parameters.
And filling the specific parameters into an initial task template to obtain a bottom layer code corresponding to the specific task.
The specific task parameters in this embodiment include a task type and other parameters for creating a cloud-scheduled task. Wherein the task type may represent a specific type of the current task, such as image processing, data calculation, etc. In the process of establishing the initial task, the cloud computing platform can create a large number of initial task templates according to the initial task parameters sent by the first user and store the initial task templates in an initial task library. After receiving the specific task parameters, the cloud computing platform may select an initial task template with a consistent task type according to the task type in the specific task parameters.
After the initial task template with the consistent task type is obtained, the cloud computing platform can fill specific task parameters except the task type into the initial task template to obtain the bottom layer code of the specific task. The initial task template is obtained by combining a bottom layer code template and a calling type template and then filling initial task parameters. The initial task parameters may include parameters such as a task type, a task call type, a task name, an execution time, a task type, a number of execution times, and a task call interface. These parameters can be combined with the underlying code template and calling class template as a rough code framework for cloud planning tasks. In this embodiment, the underlying code template and the call type template have a number of empty spaces available for parameter filling, and the number of initial task parameters is less than the number of empty spaces in the template. That is, the initial task template in this embodiment still has a large number of empty spaces for filling parameters, which can be used for filling the parameters of the specific task.
In the embodiment, a great difference exists between the initial task parameter and the specific task parameter. The initial task parameters include a task type, a task calling type, a task name, execution time, operation times, a task calling interface and the like, are attribute parameters of the cloud planning task, and represent basic attributes of the cloud planning task, such as what type of task the cloud planning task belongs to, when to start, how long to operate and the like. These are all parameters representing the fundamental properties of the task, corresponding to the "what" of this task, and the initial task parameters of each type of task are basically the same. The specific task parameters represent the specific purpose and implementation method of the cloud planning task, that is, "what" the task needs to do "represents the specific cloud planning task. For example, when the cloud planning task is an image processing task, the specific task parameter may include a path of an image to be processed, may also include a specific processing requirement of image processing, and may also include a specific mode or an output mode for performing image processing. That is, the specific task parameter is a more intuitive parameter relative to the initial task parameter, and is directly related to the specifically completed action of the cloud planning task.
To further illustrate the process of selecting a calling mode according to the task calling type, an embodiment of the present invention includes:
and when the specific task calling type is the Client, executing the specific task through a Client calling module.
And when the specific task calling type is not the Client, directly executing the specific task through a remote procedure call protocol (Rpc) calling module.
When a cloud plans a task to be executed, a module in a cloud computing platform is required to be called to complete the execution of the task. In the embodiment, different calling modes can be selected according to the calling types of the cloud planning tasks, and the modules are called through the calling modes to complete the cloud planning tasks. The calling mode in this embodiment may include direct calling and calling through a Client (Client program). When the task calling type of the cloud planning task is direct calling, the required module can be called directly through Rpc (remote procedure call protocol). When the task calling type of the cloud planning task is Client, the cloud planning task can be completed through the Client calling module. The module calling method in the embodiment is flexible, is not limited to clients, and widens the application range of cloud computing services.
Fig. 3 is a flow chart of cloud planning task creation according to an embodiment of the present invention.
As can be seen from fig. 3, in this embodiment, the first user 301 first sends a task creation instruction to the cloud computing platform 302, and the cloud computing platform receives the instruction to display the task creation interface 303. After the first user sees the task creation interface, the initial task parameters are sent to the cloud computing platform, the initial task template is created and stored in the initial task template library 304, and when a specific task is needed, the second user 305 computing platform sends a specific task message. The cloud computing platform may receive the initial persona message and select a corresponding initial task template according to a task type therein. And adding other specific task parameters to the selected initial task template to obtain specific tasks 306
That is to say, in this embodiment, the sending of the initial task parameter by the first user and the sending of the specific task parameter by the second user may be actually disjointed, and the first user may create a large number of initial task templates in advance. For example, an initial task template of two cloud planning tasks of data computation and image processing can be created simultaneously according to a creation instruction and initial task parameters sent by a first user, and then the two tasks are stored in an initial task template library.
When a second user needs to create a cloud planning task, the second user sends specific task parameters to the cloud computing platform, wherein the specific task parameters comprise the task type of the newly created cloud planning task. At the moment, the cloud computing platform selects a corresponding initial task from the initial task library, and fills the rest parameters in the specific task parameters into the initial task to obtain a final executable specific task. For example, when a second user wants to perform an image processing task, a specific task parameter with "image processing" may be sent to the cloud computing platform. The cloud computing platform can find an initial task template with a task type of image processing from an initial task library, and then add other parameters in specific task parameters to the initial task to obtain an executable specific task.
It can be seen from this embodiment that the first user and the second user actually have a difference in operation authority, the first user may create an initial task template, and the second user may only select an initial task template of a corresponding type from an initial task template library created by the first user and add a specific task parameter to obtain a specific task. That is to say, in this embodiment, the first user may be equivalent to an administrator of the cloud computing platform, and is responsible for creating and changing management tasks, and may create a large number of semi-finished tasks (initial task templates); the second user is equivalent to a common user, and can select a specific type of initial task template from the existing semi-finished tasks to finally obtain a specific task.
Fig. 4 is a diagram of a cloud plan task creating device according to an embodiment of the present invention, including:
401: the acquisition unit is used for acquiring the cloud plan creation instruction and the task parameters.
402: and the creating unit is used for creating an initial task template and a specific task.
403: and the module calling unit is used for calling the module to complete a specific task according to the task calling type.
In this embodiment, the obtaining unit may be configured to obtain a cloud plan creating instruction sent by a first user, a specific task parameter sent by the first user, and a specific task parameter sent by a second user. The creating unit may be configured to create an initial task template according to the initial task parameter, and create a specific task according to the specific task parameter; the module calling unit is used for calling the module to complete a specific task according to the task calling type.
When the task calling type is direct calling, the module calling unit can directly complete the cloud planning task through the Rpc calling module. When the task calling type is Client, the module calling unit can complete the cloud planning task through the Client calling module.
In one embodiment, the obtaining unit includes:
and the first user acquisition unit is used for acquiring the cloud plan task creation instruction and the initial task parameter.
And the second user acquisition unit is used for acquiring the specific task parameters.
In this embodiment, the acquiring unit may include a first user acquiring unit and a second user acquiring unit. The first user can send task creating instructions and initial task parameters to the cloud computing platform, and the task creating instructions and the initial task parameters are used for creating an initial task template. The second user can send specific task parameters to the cloud computing platform, and the specific task parameters are used for selecting corresponding initial task templates and creating specific tasks. There is no necessary temporal relationship between the first user and the second user sending the messages to the cloud planning platform. The cloud computing platform may first create a plurality of initial task templates under an instruction of a first user, and then receive specific task parameters of a second user after a time interval. Therefore, the embodiment can separate the acquiring unit for acquiring the messages of the first user and the second user and respectively receive the messages sent by the two users.
In one embodiment, the creating unit includes:
the template calling unit is used for calling a bottom layer code template and calling a code template according to the initial task parameters;
the combination unit is used for combining the upper bottom layer code template and the calling code template into the initial task template;
and the filling unit is used for filling the initial task parameters and the specific task parameters into the initial task template.
In one embodiment, the custom cloud planning task creation method is applied to a cloud computing platform based on an OpenStack framework.
In the names of "first user", "second user", and the like, the "first" in the embodiments of the present application is used only for name identification, and does not represent the first and second in sequence.
As can be seen from the above description of the embodiments, those skilled in the art can clearly understand that all or part of the steps in the above embodiment methods can be implemented by software plus a general hardware platform. Based on such understanding, the technical solution of the present application may be embodied in the form of a software product, which may be stored in a storage medium, such as a read-only memory (ROM)/RAM, a magnetic disk, an optical disk, or the like, and includes several instructions for enabling a computer device (which may be a personal computer, a server, or a network communication device such as a router) to execute the method according to the embodiments or some parts of the embodiments of the present application.
The embodiments in the present specification are described in a progressive manner, and the same and similar parts among the embodiments are referred to each other, and each embodiment focuses on the differences from the other embodiments. In particular, for the apparatus embodiment, since it is substantially similar to the method embodiment, it is relatively simple to describe, and reference may be made to some descriptions of the method embodiment for relevant points. The above-described device and system embodiments are merely illustrative, in which the first user and the second user may or may not be physically separate, and the component that is the initial task template may or may not be a code template. Some or all of the modules may be selected according to actual needs to achieve the purpose of the solution of the present embodiment. One of ordinary skill in the art can understand and implement it without inventive effort.
The above description is only an exemplary embodiment of the present application, and is not intended to limit the scope of the present application.

Claims (10)

1. A custom cloud plan task creation method, the method comprising:
receiving a cloud plan task creating instruction sent by a first user and an initial task parameter sent by the first user;
selecting a corresponding template according to the initial task parameters, and creating an initial task template by using the template; the initial task parameters comprise a task type and a task calling type, and the templates comprise a bottom layer code template and a calling code template;
and receiving specific task parameters sent by a second user, selecting a corresponding initial task template according to the specific task parameters, and creating a specific task.
2. The method of claim 1, wherein creating an initial task template comprises:
selecting a bottom layer code template corresponding to the task type from a template library according to the task type in the initial task parameter;
selecting a calling code template corresponding to the task calling type from the template library according to the task calling type in the initial task parameter;
and combining the bottom layer code template and the calling code template and filling other initial task parameters to obtain an initial task template.
3. The method of claim 1, wherein the initial task template comprises a body code structure of the planned task and has slots for filling in specific task parameters.
4. The method of claim 1, wherein the initial task parameters further include a task name, an execution time, a number of runs, and a specific task parameter category.
5. The method of claim 1, wherein the specific task parameters comprise:
the task type corresponding to the initial task template and other specific parameters except the initial task parameters are used for creating the cloud plan task.
6. The method of claim 1, wherein creating a specific task comprises:
selecting a corresponding initial task template according to the task type in the specific task parameter;
and filling the specific parameters into an initial task template to obtain a bottom layer code corresponding to the specific task.
7. The method of claim 1, further comprising:
when the specific task calling type is a Client program Client, executing the specific task through a Client calling module;
and when the specific task calling type is not the Client, directly executing the specific task through a remote procedure calling protocol (Rpc) calling module.
8. A custom cloud plan task creation apparatus, the apparatus comprising:
the acquisition unit is used for acquiring a cloud plan creation instruction and task parameters;
the creating unit is used for creating an initial task template and a specific task;
and the module calling unit is used for calling the module to complete a specific task according to the task calling type.
9. The apparatus of claim 8, wherein the obtaining unit comprises:
the first user acquisition unit is used for acquiring the cloud plan task creation instruction and the initial task parameter;
and the second user acquisition unit is used for acquiring the specific task parameters.
10. The apparatus of claim 8, wherein the creating unit comprises:
the template calling unit is used for calling a bottom layer code template and calling a code template according to the initial task parameters;
the combination unit is used for combining the upper bottom layer code template and the calling code template into the initial task template;
and the filling unit is used for filling the initial task parameters and the specific task parameters into the initial task template.
CN201910785702.8A 2019-08-23 2019-08-23 Custom cloud plan task creation method and device Active CN110688216B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910785702.8A CN110688216B (en) 2019-08-23 2019-08-23 Custom cloud plan task creation method and device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910785702.8A CN110688216B (en) 2019-08-23 2019-08-23 Custom cloud plan task creation method and device

Publications (2)

Publication Number Publication Date
CN110688216A true CN110688216A (en) 2020-01-14
CN110688216B CN110688216B (en) 2022-06-17

Family

ID=69108650

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910785702.8A Active CN110688216B (en) 2019-08-23 2019-08-23 Custom cloud plan task creation method and device

Country Status (1)

Country Link
CN (1) CN110688216B (en)

Citations (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20040143477A1 (en) * 2002-07-08 2004-07-22 Wolff Maryann Walsh Apparatus and methods for assisting with development management and/or deployment of products and services
US20090037551A1 (en) * 2007-07-31 2009-02-05 Vinay Gupta System and method of controlling multiple computer platforms
CN106779439A (en) * 2016-12-27 2017-05-31 苏州思杰马克丁软件有限公司 A kind of task distribution method and device
CN106878045A (en) * 2016-10-11 2017-06-20 阿里巴巴集团控股有限公司 Service calling method and device
CN106873949A (en) * 2015-12-11 2017-06-20 泰康保险集团股份有限公司 Code generating method and its device
CN108733472A (en) * 2018-03-21 2018-11-02 北京猎户星空科技有限公司 A kind of task creation method and device
CN109118347A (en) * 2018-07-20 2019-01-01 苏宁易购集团股份有限公司 A kind of automation collaboration method and system
CN109345364A (en) * 2018-09-07 2019-02-15 阿里巴巴集团控股有限公司 The method and apparatus for realizing accounting daily settlement
CN109684053A (en) * 2018-11-05 2019-04-26 广东岭南通股份有限公司 The method for scheduling task and system of big data

Patent Citations (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20040143477A1 (en) * 2002-07-08 2004-07-22 Wolff Maryann Walsh Apparatus and methods for assisting with development management and/or deployment of products and services
US20090037551A1 (en) * 2007-07-31 2009-02-05 Vinay Gupta System and method of controlling multiple computer platforms
CN106873949A (en) * 2015-12-11 2017-06-20 泰康保险集团股份有限公司 Code generating method and its device
CN106878045A (en) * 2016-10-11 2017-06-20 阿里巴巴集团控股有限公司 Service calling method and device
CN106779439A (en) * 2016-12-27 2017-05-31 苏州思杰马克丁软件有限公司 A kind of task distribution method and device
CN108733472A (en) * 2018-03-21 2018-11-02 北京猎户星空科技有限公司 A kind of task creation method and device
CN109118347A (en) * 2018-07-20 2019-01-01 苏宁易购集团股份有限公司 A kind of automation collaboration method and system
CN109345364A (en) * 2018-09-07 2019-02-15 阿里巴巴集团控股有限公司 The method and apparatus for realizing accounting daily settlement
CN109684053A (en) * 2018-11-05 2019-04-26 广东岭南通股份有限公司 The method for scheduling task and system of big data

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
唐婷 等: "《一种基于模板法的自适应雷达驻留调度算法》", 《信号处理》 *

Also Published As

Publication number Publication date
CN110688216B (en) 2022-06-17

Similar Documents

Publication Publication Date Title
CN107040416B (en) Virtual data center visual management method based on Cairngorm framework
US10437575B2 (en) Aercloud application express and aercloud application express launcher
US20120078809A1 (en) Integrating sub-processes in business process modeling notation processes
CN112051993A (en) State machine template generation and task processing method, device, medium and equipment
CN109522139B (en) Data table service generation and calling method, device, equipment and storage medium
US10565302B2 (en) Method of organizing dialog with the use of fillable forms
CN112083926A (en) Web user interface generation method and device
CN110865843A (en) Page backtracking, information backup and problem solving method, system and equipment
CN108038241A (en) Integrated WEB visual workflows method, apparatus, readable storage medium storing program for executing and system
CN107463387B (en) Method and device for realizing cross-platform rural tourism APP
CN114553709B (en) Topological relation display method and related equipment
CN111413876A (en) Method for configuring control page of APP, cloud platform and terminal equipment
CN110688216B (en) Custom cloud plan task creation method and device
CN111258902B (en) Performance test method and performance test system based on SockJS server
CN105490914B (en) LED automation server and interaction method
CN113204341A (en) Page generation method, device and medium
CN113128187B (en) Form generation method, device and system
CN116501386B (en) Automatic calculation program solving method based on data pool and related device
CN113806596B (en) Operation data management method and related device
CN113890861A (en) Method, device, equipment and medium for sending instant communication message
CN113377371A (en) Multi-scene configuration method, system, device and medium
US20200374399A1 (en) Generating intelligent contact routing configurations
CN116627388A (en) Method and device for generating product information, computer equipment and storage medium
CN114386726A (en) Service flow creation management method and device based on cloud platform, and related equipment
CN117931186A (en) Data binding method and device, electronic equipment and computer storage medium

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