CN113806813A - Data isolation switching method and system for multiple data sources - Google Patents

Data isolation switching method and system for multiple data sources Download PDF

Info

Publication number
CN113806813A
CN113806813A CN202110991782.XA CN202110991782A CN113806813A CN 113806813 A CN113806813 A CN 113806813A CN 202110991782 A CN202110991782 A CN 202110991782A CN 113806813 A CN113806813 A CN 113806813A
Authority
CN
China
Prior art keywords
data source
data
connection pool
information
unique identifier
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.)
Pending
Application number
CN202110991782.XA
Other languages
Chinese (zh)
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.)
Shanghai Defan Information Technology Co ltd
Original Assignee
Shanghai Defan Information 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 Shanghai Defan Information Technology Co ltd filed Critical Shanghai Defan Information Technology Co ltd
Priority to CN202110991782.XA priority Critical patent/CN113806813A/en
Publication of CN113806813A publication Critical patent/CN113806813A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F21/00Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F21/60Protecting data
    • G06F21/64Protecting data integrity, e.g. using checksums, certificates or signatures
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/25Integrating or interfacing systems involving database management systems
    • G06F16/252Integrating or interfacing systems involving database management systems between a Database Management System and a front-end application

Abstract

The invention relates to a data isolation switching method and a system of multiple data sources, wherein the method comprises the steps of acquiring data source information, connecting a corresponding data source according to the data source information, creating a data source connection pool, registering the data source connection pool in a context container, and generating a unique identifier of the data source; in the data processing process, the unique identification of the data source required by the data processing is obtained, so that the corresponding data source connection pool is obtained from the context container for data processing. Compared with the prior art, the invention can realize the modes of dynamically loading and dynamically destroying the data source, does not need to modify the program again, release the application program and the like, has stronger instantaneity and operability, and supports the loading of a plurality of different data sources so as to support different business requirements.

Description

Data isolation switching method and system for multiple data sources
Technical Field
The invention relates to the technical field of data source control, in particular to a data isolation switching method and system for multiple data sources.
Background
In present IT systems, data source control is the core of the core, any business function eventually falls into the data store, and data is also the most important IT asset of the enterprise.
The basic principle of the data source is that a program acquires connection information of the data source, when the data source needs to be used, the data service is connected through the connection information and a data source protocol, a specific data operation instruction is transmitted to the data service, the data service executes corresponding operation, and a result is returned to a calling party.
The current data source using methods are divided into the following two types: and connecting in real time and initializing a connection pool. Both data source management and usage approaches have their drawbacks.
1. The real-time connection mode is that when the data source is used for operation, the relevant connection parameter information of the data source is taken, the connection is established through a specific protocol, the relevant operation is sent, the corresponding connection is released after the action is completed, and the object information of the connection is destroyed. This solution is flexible, but has three major drawbacks:
one is that each data source needs to acquire connection information before operation, establish corresponding connection, and destroy the connection in time, which brings great redundancy work to code programming and couples business logic;
secondly, the operation of connecting and releasing the connection alone will bring about serious performance loss, and the establishment, communication and closing of the network connection is an important bottleneck of the system performance.
And thirdly, there is no unified place to manage data source connection parameters and configuration. Scattered in each different business logic, difficult to maintain and upgrade.
2. When an application program is started, the initialized data source connection pool reads the relevant connection parameter information of the data source through configuration, establishes connection through a protocol, and stores the data source object in a memory for all places to use. The scheme has the advantages that the data source connection parameters and the configuration information are uniformly managed, and only the data source connection pool is required to be established during program initialization, so that the new energy is improved. However, this solution also has the following disadvantages:
first, this scheme is not flexible enough, and only loads the corresponding data source connection pool when the program is initialized.
Secondly, only one available global data source is connected, and the service requirements of a plurality of data sources cannot be met.
Thirdly, if the data source connection information needs to be modified, the corresponding code and configuration need to be modified, and the whole service is redeployed, for a network web service, the shutdown deployment and the update directly affect the business and the enterprise work, and great efficiency loss is brought.
Disclosure of Invention
The present invention aims to overcome the defects of the prior art and provide a data isolation switching method and system for multiple data sources, which has stronger real-time performance and easy operability and supports loading of multiple different data sources.
The purpose of the invention can be realized by the following technical scheme:
a data isolation switching method for multiple data sources comprises the steps of obtaining data source information, connecting corresponding data sources according to the data source information, creating a data source connection pool, registering the data source connection pool in a context container, and generating a unique identifier of the data source;
in the data processing process, the unique identification of the data source required by the data processing is obtained, so that the corresponding data source connection pool is obtained from the context container for data processing.
Further, the method further includes a new data source registration step, and the new data source registration step specifically includes:
s101: acquiring data source information of a data source to be registered,
s102: performing data source connection test according to the data source information, if the connection is successful, executing the step S103, otherwise, returning to the step S101;
s103: judging whether the successfully connected data source exists in the current context container, if so, returning to the step S101, otherwise, executing the step S104;
s104: and connecting the data source according to the data source information, creating a data source connection pool, registering the data source connection pool into a context container, and generating a unique identifier of the data source.
Further, the method further comprises a data source logout step, wherein the data source logout step specifically comprises the following steps:
s201: generating a remove data source event;
s202: monitoring and acquiring the data source event, and judging whether a data source corresponding to the data source event has a movable connection in use, if so, executing a step S203, otherwise, executing a step S204;
s203: and deleting the registration information of the data source in the context container, deleting all connections of the data source after the current active connection finishes work, and destroying the corresponding data source connection pool.
S204: and deleting all connections of the data source, destroying the corresponding data source connection pool, and deleting the registration information of the data source in the context container.
Further, a snowflake algorithm is adopted to generate the unique identification of the data source.
Further, the obtaining of the corresponding data source connection pool from the context container for data processing specifically includes:
and acquiring a corresponding data source connection pool from the context container, binding the data source connection pool to the thread context of the current thread, and processing data.
Further, in the data processing process, the specific step of acquiring the unique identifier of the data source required by the data processing is as follows:
adding a unique identifier of a required data source into a global parameter in session control;
in the data processing process, the unique identifier of the data source required by data processing is acquired by analyzing the global parameter in the session control.
The invention also provides a data isolation switching system of multiple data sources, which comprises a memory and a processor, wherein the memory stores a computer program, and the processor calls the computer program to execute the steps of the method.
Compared with the prior art, the invention has the following advantages:
(1) on the basis of establishing a data source connection pool according to a data source, the data source connection pool is registered in a context container and is provided with a unique identifier; in the data processing process, the corresponding data source connection pool can be loaded for calling and processing according to the unique identifier;
in the prior art, each data source connection pool is directly established during program initialization, a program code is directly associated with the data source connection pool, and when data source connection information needs to be modified, the data source connection pool cannot be realized during program operation, the program code and configuration need to be modified, the whole service is redeployed, and the data source connection pool is loaded during initialization again, so that great efficiency loss is brought;
the method and the device set corresponding unique identifiers for each data source connection pool, the program loads the corresponding data source connection pool according to the unique identifiers, if a data source needs to be newly added or destroyed, the corresponding data source can be recorded according to the unique identifiers through session control when the program runs, and the data source in the context container is destroyed by generating and removing a data source event, so that the shutdown deployment, the program modification, the application program release and the like are not needed, the instantaneity and the operability are higher, and the loading of a plurality of different data sources is supported to support different service requirements.
(2) The invention adopts session global parameters to transmit the data source identification required by the current operation, realizes the decoupling with the specific code and the frame, and does not depend on the code development control and the technical frame limitation.
(3) The invention uses thread context, which can ensure the consistent data source in the whole logic of a thread, and the granularity can not only solve the problem that different operations need to use different data sources, but also can meet the requirement that the same data source is used in the execution process of the same batch of programs, and does not need to establish connection separately, thereby greatly improving the performance and simplifying the logic.
Drawings
Fig. 1 is a flowchart of a data source dynamic registration loading management provided in an embodiment of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the embodiments of the present invention clearer, 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 some, but not all, embodiments of the present invention. The components of embodiments of the present invention generally described and illustrated in the figures herein may be arranged and designed in a wide variety of different configurations.
Thus, the following detailed description of the embodiments of the present invention, presented in the figures, is not intended to limit the scope of the invention, as claimed, but is merely representative of selected embodiments of the invention. 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.
Example 1
The embodiment provides a data isolation switching method for multiple data sources, which comprises the steps of obtaining data source information, connecting corresponding data sources according to the data source information, creating a data source connection pool, registering the data source connection pool in a context container, and generating a unique identifier of the data source;
in the data processing process, the unique identification of the data source required by the data processing is obtained, so that the corresponding data source connection pool is obtained from the context container for data processing.
When a new data source is registered, generating a unique identifier of the data source by using a snowflake algorithm, and loading a data source connection pool instantiated by the data source into a global context container; when the data source is logged off, destroying the mapping relation between the data source connection pool and the global context, wherein the process comprises the following steps:
a new data source registration step:
s101: the user creates or maintains new data source information, i.e. data source connection information,
s102: after receiving the data source information, the server tries to test connection with the data source connection information, if the connection is successful, step S103 is executed, otherwise, the step S101 is returned;
s103: judging whether the successfully connected data source exists in the current context container, if so, returning to the step S101, otherwise, executing the step S104;
s104: according to the data source information, the server side is connected with the data source, a data source connection pool is created, the data source connection pool is registered in the context container, and the unique identification of the data source is generated.
A data source logout step:
s201: if the data source is no longer in use, a remove data source event needs to be sent;
s202: monitoring and acquiring a data source event, judging whether a data source corresponding to the data source event has a movable connection in use, if so, executing a step S203, otherwise, executing a step S204;
s203: and deleting the registration information of the data source in the context container, deleting all connections of the data source after the current active connection finishes work, and destroying the corresponding data source connection pool.
S204: and deleting all connections of the data source, destroying the corresponding data source connection pool, and deleting the registration information of the data source in the context container.
The data source dynamic loading and dynamic logout flow describes the full life cycle of a certain data source, in the using process of the data source, parameters in the session are dynamically analyzed according to context information switching of the current session (session control), the parameters are converted into snowflake id of the data source, a connection pool of the data source is obtained through the snowflake id, the information of the connection pool is bound to Thread context of the current Thread, the connection pool in the data source is enabled to be usable and Thread isolated, and the content in the Thread is destroyed after the Thread is executed, so that errors during Thread reuse are prevented;
fig. 1 shows a data source dynamic registration loading management flow in the method of this embodiment, which completes dynamic registration and loading control of multiple data sources. The following description will be made in detail with reference to fig. 1, taking a new data source connection as an example:
in step 401, the client sends new data source connection information to the server, wherein the address is localhost:3306, the user name is defenses, and the password is defenses;
in step 402, the server receives the connection information and tries to establish a data source connection;
in step 403, determining whether the connection is successful, and if so, executing step 404; if not, ending;
in step 404, analyzing the current data source connection parameter, acquiring a unique identifier, and executing 405;
in step 405, it is determined whether the current data source connection pool has been registered in the container of the global context, and if so, the process is ended and a success is returned; if not, then 406 is performed;
in step 406, creating a data source connection pool according to the data source parameters, generating a unique identifier by using a snowflake algorithm, and executing 407;
in step 407, this data source connection pool instance is registered into the global context container and uses the snowflake id as a unique identification.
The embodiment also provides a data isolation switching system for multiple data sources, which includes a memory and a processor, where the memory stores a computer program, and the processor calls the computer program to perform the steps of the data isolation switching method for multiple data sources as described above.
The foregoing detailed description of the preferred embodiments of the invention has been presented. It should be understood that numerous modifications and variations could be devised by those skilled in the art in light of the present teachings without departing from the inventive concepts. Therefore, the technical solutions available to those skilled in the art through logic analysis, reasoning and limited experiments based on the prior art according to the concept of the present invention should be within the scope of protection defined by the claims.

Claims (10)

1. A data isolation switching method of multiple data sources is characterized by comprising the steps of obtaining data source information, connecting corresponding data sources according to the data source information, creating a data source connection pool, registering the data source connection pool in a context container, and generating a unique identifier of the data source;
in the data processing process, the unique identification of the data source required by the data processing is obtained, so that the corresponding data source connection pool is obtained from the context container for data processing.
2. The data isolation switching method for multiple data sources according to claim 1, further comprising a new data source registration step, where the new data source registration step specifically includes:
s101: acquiring data source information of a data source to be registered,
s102: performing data source connection test according to the data source information, if the connection is successful, executing the step S103, otherwise, returning to the step S101;
s103: judging whether the successfully connected data source exists in the current context container, if so, returning to the step S101, otherwise, executing the step S104;
s104: and connecting the data source according to the data source information, creating a data source connection pool, registering the data source connection pool into a context container, and generating a unique identifier of the data source.
3. The method for data isolation switching between multiple data sources according to claim 1, wherein the method further comprises a data source logout step, and the data source logout step specifically comprises:
s201: generating a remove data source event;
s202: monitoring and acquiring the data source event, and judging whether a data source corresponding to the data source event has a movable connection in use, if so, executing a step S203, otherwise, executing a step S204;
s203: deleting the registration information of the data source in the context container, deleting all connections of the data source after finishing the work of the current active connection, and destroying the corresponding data source connection pool;
s204: and deleting all connections of the data source, destroying the corresponding data source connection pool, and deleting the registration information of the data source in the context container.
4. The method of claim 1, wherein a snowflake algorithm is used to generate the unique identifier of the data source.
5. The method for data isolation switching between multiple data sources according to claim 1, wherein the obtaining of the corresponding data source connection pool from the context container for data processing specifically includes:
and acquiring a corresponding data source connection pool from the context container, binding the data source connection pool to the thread context of the current thread, and processing data.
6. The data isolation switching method for multiple data sources according to claim 1, wherein in the data processing process, the obtaining of the unique identifier of the data source required for data processing specifically includes:
adding a unique identifier of a required data source into a global parameter in session control;
in the data processing process, the unique identifier of the data source required by data processing is acquired by analyzing the global parameter in the session control.
7. A data isolation switching system for multiple data sources, comprising a memory and a processor, wherein the memory stores a computer program, and the processor calls the computer program to execute the following steps:
acquiring data source information, connecting a corresponding data source according to the data source information, creating a data source connection pool, registering the data source connection pool in a context container, and generating a unique identifier of the data source;
in the data processing process, the unique identification of the data source required by the data processing is obtained, so that the corresponding data source connection pool is obtained from the context container for data processing.
8. The system for data isolation switching between multiple data sources according to claim 7, wherein the execution process of the processor further includes a new data source registration step, and the new data source registration step specifically includes:
s101: acquiring data source information of a data source to be registered,
s102: performing data source connection test according to the data source information, if the connection is successful, executing the step S103, otherwise, returning to the step S101;
s103: judging whether the successfully connected data source exists in the current context container, if so, returning to the step S101, otherwise, executing the step S104;
s104: and connecting the data source according to the data source information, creating a data source connection pool, registering the data source connection pool into a context container, and generating a unique identifier of the data source.
9. The system for switching data isolation of multiple data sources according to claim 7, wherein the execution process of the processor further includes a data source logout step, and the data source logout step specifically includes:
s201: generating a remove data source event;
s202: monitoring and acquiring the data source event, and judging whether a data source corresponding to the data source event has a movable connection in use, if so, executing a step S203, otherwise, executing a step S204;
s203: deleting the registration information of the data source in the context container, deleting all connections of the data source after finishing the work of the current active connection, and destroying the corresponding data source connection pool;
s204: and deleting all connections of the data source, destroying the corresponding data source connection pool, and deleting the registration information of the data source in the context container.
10. The system for data isolation switching between multiple data sources according to claim 7, wherein in the data processing process, the unique identifier of the data source required for acquiring data processing specifically includes:
adding a unique identifier of a required data source into a global parameter in session control;
in the data processing process, the unique identifier of the data source required by data processing is acquired by analyzing the global parameter in the session control.
CN202110991782.XA 2021-08-27 2021-08-27 Data isolation switching method and system for multiple data sources Pending CN113806813A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202110991782.XA CN113806813A (en) 2021-08-27 2021-08-27 Data isolation switching method and system for multiple data sources

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202110991782.XA CN113806813A (en) 2021-08-27 2021-08-27 Data isolation switching method and system for multiple data sources

Publications (1)

Publication Number Publication Date
CN113806813A true CN113806813A (en) 2021-12-17

Family

ID=78941893

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202110991782.XA Pending CN113806813A (en) 2021-08-27 2021-08-27 Data isolation switching method and system for multiple data sources

Country Status (1)

Country Link
CN (1) CN113806813A (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114840272A (en) * 2022-07-04 2022-08-02 好享家舒适智能家居股份有限公司 Multi-data-source dynamic planning and monitoring system and method

Citations (15)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101408899A (en) * 2008-11-21 2009-04-15 北京中企开源信息技术有限公司 Method and apparatus for switching website multiple data sources
CN104991824A (en) * 2015-08-03 2015-10-21 上海斐讯数据通信技术有限公司 Method and system for dynamically switching application program data sources
US20160094647A1 (en) * 2014-09-25 2016-03-31 Oracle International Corporation System and method for use of a global runtime in a multitenant application server environment
CN105701163A (en) * 2015-12-31 2016-06-22 山东中创软件工程股份有限公司 Database connection acquisition method and device based on ThreadLocal connection container
WO2016188293A1 (en) * 2015-05-28 2016-12-01 阿里巴巴集团控股有限公司 Data acquisition method and device
CN106815027A (en) * 2017-01-22 2017-06-09 山东鲁能软件技术有限公司 A kind of high resiliency calculating platform for power network multidimensional business composite computing
CN106844678A (en) * 2017-01-24 2017-06-13 山东浪潮商用系统有限公司 A kind of exchange method of Mybatis data sources and connection pool
CN107463663A (en) * 2017-08-01 2017-12-12 山东浪潮云服务信息科技有限公司 A kind of lightweight multi-data source access method
CN108520004A (en) * 2018-03-12 2018-09-11 舟谱数据技术南京有限公司 Based on method parameter section multi-tenant data source switching system
CN108667930A (en) * 2018-05-09 2018-10-16 聚龙股份有限公司 A kind of configuration of dynamic data source and automation switching method
CN110389977A (en) * 2019-06-14 2019-10-29 威富通科技有限公司 A kind of database connection creation method, device and terminal device
CN111522881A (en) * 2020-04-26 2020-08-11 北京三快在线科技有限公司 Service data processing method, device, server and storage medium
CN111522535A (en) * 2020-03-26 2020-08-11 杭州数跑科技有限公司 Data source aggregation method and device, storage medium and computer equipment
CN111949693A (en) * 2020-08-12 2020-11-17 北京锐安科技有限公司 Data processing device, data processing method, storage medium and electronic equipment
CN112596785A (en) * 2021-01-14 2021-04-02 江苏徐工信息技术股份有限公司 Multi-data-source management method based on annotation

Patent Citations (15)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101408899A (en) * 2008-11-21 2009-04-15 北京中企开源信息技术有限公司 Method and apparatus for switching website multiple data sources
US20160094647A1 (en) * 2014-09-25 2016-03-31 Oracle International Corporation System and method for use of a global runtime in a multitenant application server environment
WO2016188293A1 (en) * 2015-05-28 2016-12-01 阿里巴巴集团控股有限公司 Data acquisition method and device
CN104991824A (en) * 2015-08-03 2015-10-21 上海斐讯数据通信技术有限公司 Method and system for dynamically switching application program data sources
CN105701163A (en) * 2015-12-31 2016-06-22 山东中创软件工程股份有限公司 Database connection acquisition method and device based on ThreadLocal connection container
CN106815027A (en) * 2017-01-22 2017-06-09 山东鲁能软件技术有限公司 A kind of high resiliency calculating platform for power network multidimensional business composite computing
CN106844678A (en) * 2017-01-24 2017-06-13 山东浪潮商用系统有限公司 A kind of exchange method of Mybatis data sources and connection pool
CN107463663A (en) * 2017-08-01 2017-12-12 山东浪潮云服务信息科技有限公司 A kind of lightweight multi-data source access method
CN108520004A (en) * 2018-03-12 2018-09-11 舟谱数据技术南京有限公司 Based on method parameter section multi-tenant data source switching system
CN108667930A (en) * 2018-05-09 2018-10-16 聚龙股份有限公司 A kind of configuration of dynamic data source and automation switching method
CN110389977A (en) * 2019-06-14 2019-10-29 威富通科技有限公司 A kind of database connection creation method, device and terminal device
CN111522535A (en) * 2020-03-26 2020-08-11 杭州数跑科技有限公司 Data source aggregation method and device, storage medium and computer equipment
CN111522881A (en) * 2020-04-26 2020-08-11 北京三快在线科技有限公司 Service data processing method, device, server and storage medium
CN111949693A (en) * 2020-08-12 2020-11-17 北京锐安科技有限公司 Data processing device, data processing method, storage medium and electronic equipment
CN112596785A (en) * 2021-01-14 2021-04-02 江苏徐工信息技术股份有限公司 Multi-data-source management method based on annotation

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
小小酥: "java jdbc深入理解", Retrieved from the Internet <URL:《https://www.cnblogs.com/xss512/p/10487542.html》> *
马砚梅;王宇;李晶晶;汤洪玉;: "基于Visual C++和数据库技术的PQDIF文件访问接口程序的开发", 电力科学与工程, no. 03 *

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114840272A (en) * 2022-07-04 2022-08-02 好享家舒适智能家居股份有限公司 Multi-data-source dynamic planning and monitoring system and method

Similar Documents

Publication Publication Date Title
CN112035228B (en) Resource scheduling method and device
EP3913859A1 (en) Vnf life cycle management method and apparatus
US20170373931A1 (en) Method for updating network service descriptor nsd and apparatus
US11716264B2 (en) In situ triggered function as a service within a service mesh
KR20060051932A (en) Updating software while it is running
CN107729176B (en) Disaster recovery method and disaster recovery system for configuration file management system
US11693687B1 (en) Lifecycle management of VNFC software modules
US20070094675A1 (en) Object mobility
CN109587272B (en) Method and device for optimizing microservice and electronic equipment
WO2022267407A1 (en) Automated operation and maintenance tool-based proxy deployment method and apparatus
CN113806813A (en) Data isolation switching method and system for multiple data sources
CN112783570A (en) Application migration method, system and medium based on service grid
CN111399968B (en) Virtual resource management method, device and system based on container
US20210326162A1 (en) Lifecycle management of a vnfc included in a multi-vnfc vdu
CN114006815B (en) Automatic deployment method and device for cloud platform nodes, nodes and storage medium
CN112214413A (en) Application program testing method, device, equipment and storage medium
CN115225482B (en) Method and device for carrying out Pod container network configuration based on Kubernetes
CN113220480B (en) Distributed data task cross-cloud scheduling system and method
CN115202820A (en) Method, device and equipment for creating Pod unit and storage medium
CN114610446A (en) Method, device and system for automatically injecting probe
CN110413333B (en) Micro-service management method and device of Windows system based on NodeJS and PowerShell
CN111614649B (en) Method and device for closing TCP short connection
WO2023051002A1 (en) Terminal simulation test method and apparatus, storage medium, and electronic device
CN114710495B (en) Cloud rendering-based houdini distributed online resolving method
CN115794416B (en) Data hot switching method and device based on Storm and Nacos

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