CN112114881B - Micro-service-based online method and system - Google Patents

Micro-service-based online method and system Download PDF

Info

Publication number
CN112114881B
CN112114881B CN202010855995.5A CN202010855995A CN112114881B CN 112114881 B CN112114881 B CN 112114881B CN 202010855995 A CN202010855995 A CN 202010855995A CN 112114881 B CN112114881 B CN 112114881B
Authority
CN
China
Prior art keywords
service
registry
state
test
registered
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
Application number
CN202010855995.5A
Other languages
Chinese (zh)
Other versions
CN112114881A (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.)
Shanghai Huifu Payment Co ltd
Original Assignee
Shanghai Huifu Payment 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 Huifu Payment Co ltd filed Critical Shanghai Huifu Payment Co ltd
Priority to CN202010855995.5A priority Critical patent/CN112114881B/en
Publication of CN112114881A publication Critical patent/CN112114881A/en
Application granted granted Critical
Publication of CN112114881B publication Critical patent/CN112114881B/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/44Arrangements for executing specific programs
    • G06F9/4401Bootstrapping
    • G06F9/4403Processor initialisation
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3668Software testing
    • G06F11/3672Test management
    • G06F11/3688Test management for test execution, e.g. scheduling of test suites
    • 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/4401Bootstrapping
    • G06F9/4416Network booting; Remote initial program loading [RIPL]
    • 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/4401Bootstrapping
    • G06F9/4418Suspend and resume; Hibernate and awake
    • 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/445Program loading or initiating
    • G06F9/44505Configuring for program initiating, e.g. using registry, configuration files
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/547Remote procedure calls [RPC]; Web services
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F2209/00Indexing scheme relating to G06F9/00
    • G06F2209/54Indexing scheme relating to G06F9/54
    • G06F2209/544Remote

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Computer Security & Cryptography (AREA)
  • Computer Hardware Design (AREA)
  • Quality & Reliability (AREA)
  • Debugging And Monitoring (AREA)

Abstract

The invention provides an online method and an online system based on micro services, wherein the micro services are a service calling mode, and the online method comprises the following steps: before the service is registered in the registration center, executing an initialization process of an application program corresponding to the service; after the initialization process is completed, registering the service to a registration center by using a method call interface in the server, wherein the method call interface is an interface without parameters; the client invokes a service registered with the registry. The technical scheme of the invention at least can lead the service to realize real elegant online.

Description

Micro-service-based online method and system
Technical Field
The invention relates to the technical field of computers and networks, in particular to an online method and an online system based on micro services.
Background
Micro-services are one type of service invocation mode commonly used in enterprises. Contrary to micro-services is a monolithic application, namely: all functions are packaged into an application in a single unit. The main problem of single application is the maintenance difficulty, each small change requires the whole application program to be on line, and codes are related, and one small problem may cause the whole application to be unavailable. As service lines grow more and more, multiple single applications are often created, each serving a different service. However, different services generally include functional modules with the same or similar functions, which causes problems such as repeated development of functions. In the micro-service architecture mode, an application is split into a plurality of applets according to a functional module, each of the applets is responsible for a single responsibility, and the applications are independent from each other and interact in a remote procedure call mode. In the micro service mode, each application module can be independently updated and maintained, and the capacity expansion and contraction can be independently carried out when the system is in a peak-low state, so that the system has good elasticity. However, to achieve such a goal, a reliable on-line and off-line approach is critical, which should be able to make the business lossless, i.e.: there is no interruption of traffic and no traffic anomaly. This kind of offline process with no service interruption and no service abnormality may be referred to as "graceful offline".
Regarding the online process, the current inter-call between micro services is mostly performed by adopting a remote procedure call mode, a public registry is needed in the remote procedure call process, a service provider registers a service with the registry after starting, and the service caller obtains a service provider list capable of providing the service through the registry to complete service call. In this mode, the registration of the service is usually automatically completed, and the service is registered with the registry after the application program is started, so that the application program cannot be guaranteed to run normally, and thus service call failure may be caused. Common solutions include: request retry is performed at the client, a gray level distribution mode is adopted, and abnormal services are removed through monitoring. Request retries at a client means that when the client fails to request the server, the client requests the server again or multiple times until the request is successful or exceeds a specified number of retries. This can avoid certain request failure problems, but also causes problems such as longer service response time, repeated requests for services, etc. The gray level release mode is to control only a part of small-scale flow or flow requests conforming to certain characteristics to be released to a newly released service end when the service is released online, and gradually release the flow after verification is passed until all the flows enter the newly online service. The gray scale distribution mode can well control the influence range of the abnormality but still cannot avoid the service abnormality. The abnormal service is removed through monitoring, which is another automatic or semi-automatic fault-tolerant mechanism, and when each service is on line, some monitoring indexes can be customized, and when the monitoring indexes are abnormal, the service which is just on line is automatically off line, so that the availability of the whole service is maintained. However, the setting of the monitoring index is not easy, and if the setting is not good, the judgment is easy to be missed or misjudged. In addition, there is also a problem that the service is completely taken off line so that there is no service adjustability.
The schemes such as the just mentioned client retry, gray level release and abnormal service removal by monitoring can reduce the influence caused by the online abnormality, but these methods are all post measures and do not meet the requirement of graceful online.
Disclosure of Invention
Aiming at the problems in the related art, the invention provides an online method and an online system based on micro services, which can realize real and elegant online.
The technical scheme of the invention is realized as follows:
according to one aspect of the present invention, there is provided an online method based on a micro service, the micro service being a service call mode, the online method comprising:
before the service is registered in the registration center, executing an initialization process of an application program corresponding to the service;
after the initialization process is completed, setting a state of the service to a suspended state in which the service cannot be registered with the registry;
performing a functional test on the service having the suspended state;
after passing the functional test, setting the state of the service to an enabled state;
service with enabled status to registry;
the method call interface in the service end is used for registering the service to the registry, wherein the method call interface is an interface without parameters, and the service registered to the registry is callable to the client.
According to an embodiment of the present invention, performing a functional test on a service having a suspended state includes: the test cases of the service are executed by the test platform to automatically perform functional testing on the service.
According to an embodiment of the present invention, the functional test performed on the service having the suspended state is a manual test.
According to an embodiment of the present invention, an initialization process is initiated by a developer of an application program and a method call interface is invoked by the developer to register a service with a registry.
According to another aspect of the present invention, there is provided an online system based on a micro service, the micro service being a service call mode, the online system comprising:
a registry for providing services registered with the registry to the client;
a service governance platform for registering the service into the service governance platform after the initialization process is completed, and setting a state of the service to a suspended state, wherein in the suspended state the service cannot be registered to the registry; and is further configured to set a state of the service to an enabled state after the service having the suspended state passes the functional test;
the service end of the application program corresponding to the service is provided with a method calling interface for calling the service, the method calling interface is an interface without parameters, and the service end is used for registering the service to a registration center by utilizing the method calling interface in the service end.
According to an embodiment of the present invention, the online system further includes: and the test platform is used for executing the test cases of the service after receiving the notification of the service governance platform so as to automatically perform functional test on the service.
According to an embodiment of the present invention, the functional test performed on the service having the suspended state is a manual test.
According to an embodiment of the present invention, an initialization process is initiated by a developer of an application program and a method call interface is invoked by the developer to register a service with a registry.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings that are needed in the embodiments will be briefly described below, and it is obvious that the drawings in the following description are only some embodiments of the present invention, and other drawings may be obtained according to these drawings without inventive effort for a person skilled in the art.
Fig. 1 is a flowchart of a microservice-based online method according to an embodiment of the present invention.
Fig. 2 is a block diagram of a microservice-based online system according to an embodiment of the present invention.
Detailed Description
The following description of the embodiments of the present invention will be made clearly and completely with reference to the accompanying drawings, in which it is apparent that the embodiments described are only some embodiments of the present invention, but not all embodiments. All other embodiments, which are derived by a person skilled in the art based on the embodiments of the invention, fall within the scope of protection of the invention.
Aiming at the problem of online abnormity in the prior art, the most fundamental is to grasp the time for registering the service to the registry, and the caller can be ensured not to have abnormity only by registering the service to the registry under the condition of ensuring that the service is available. Based on the method, the invention provides an online method based on the micro-service. Fig. 1 is a flowchart of a microservice-based online method according to an embodiment of the present invention. Fig. 2 is a block diagram of a microservice-based online system according to an embodiment of the present invention. As shown in connection with fig. 1 and 2, the method of the present invention includes the following steps S140-S148.
In step S140, before the service is registered in the registry 202, an initialization process of an application corresponding to the service is performed. Applications are typically not directly serviced upon start-up, each of which has an initialization process that may include loading configuration, connecting databases, etc. The initialization process may also include other flows.
The key point of the present invention is to control the point in time when a service is registered with the registry 202, and the service is registered with the registry 202 after the initialization process is completed.
After the initialization process of step S140 is completed, the service is registered to the registry 202 by using a method call interface in the server, where the method call interface is an interface without parameters. The services registered with registry 202 are referred to as services that can be invoked by clients. Since the initialization process is different for each application, the initialization process is typically determined by the application itself. Therefore, a method call interface may be added to the server of the remote procedure call, where the method call interface does not have any parameters and only plays a role of notification, and after the initialization procedure is completed, the method call interface is called, and the server of the remote procedure call registers the service instance in the registry 202.
One of the main improvements of the present invention is that it is possible to register the micro-control service to the point of time of the registry 202 more finely, thereby achieving the purpose of graceful online, i.e., online process without service interruption and service abnormality.
In some embodiments, a developer of an application (e.g., a development engineer of a business application) may self-maintain an initialization process for the application. And the method call interface may also be invoked by a developer. Most of the problems can be solved by registering the service in the registry 202 after the initialization process is completed. However, this requires a high level of demands on the application developer, who must know the application very much to ensure that the timing of calling the method call interface is correct.
Thus, in addition to the first security of the method call interface provided by the server, the present invention provides a second security in that a console of the registry 202, referred to as the service administration platform 204, is added. When an application invokes a registration interface, the service is not registered directly with registry 202, but rather with service administration platform 204, and adds a state to the service registered with service administration platform 204, which may be one of a suspended state and an enabled state. As shown in fig. 1 and 2, the step of registering the service with the registry 202 may include the following steps S142-S148.
S142, after the initialization process is completed, the service is registered in the service administration platform 204, and the state of the service is set to a suspended state in which the service cannot be registered in the registry 202. When an application registers with service remediation platform 204, its state defaults to a suspended state. For the suspended state service, the service administration platform 204 will not register its information with the registry 202, so the client will not have the information of the service provider at the registry 202 for a while. But at this point service remediation platform 204 is available to the service provider information, service remediation platform 204 can notify test platform 206 or a tester to perform functional testing on the newly released service.
S144, performing functional test on the service with the suspended state.
S146, after passing the functional test, the service administration platform 204 sets the state of the service to the enabled state.
S148, the service administration platform 204 brings the service with the enabled status to the registry 202. That is, after the functional test passes, the service state is changed to the enabled state, at which time the service administration platform 204 registers the service with the registry 202, which can be read and invoked by all clients.
It should be appreciated that while the service administration platform 204 maintains the state of the service above, this state may also be maintained directly in the registry 202, and if the service state is maintained in the registry 202, the client needs to be adapted to read only the service in the registry 202 in which the state is enabled, to achieve the same effect.
The functional test may be automatic or manual. In an embodiment where the functional test is automatic, the functional test performed at step S144 may be performed by: the service administration platform 204 notifies the test platform 206 and, upon receipt of the notification, the test platform 206 executes the test cases of the service to automatically perform functional testing on the service. The test platform 206 may not be needed if manual testing is performed, and thus the test platform 206 is not necessary in the present invention.
In summary, the invention adds two stuck points in the original micro-service registration process, firstly adds a method call interface in the code of the service end, and the interface is controlled and called by an application developer, thereby ensuring that the application is initialized when the service is registered. The second time after registration of the service, a state (suspended or started) is added to the service, providing an opportunity to verify the availability of the service before it is actually exposed to the caller. As one more control operation of the service state is added, the invention can be used together with the service management platform. It should be understood that the two-click procedure mentioned in the present invention may also be used separately.
The invention reduces the overall failure rate of the micro service online, ensures the stable operation of the service, improves the user experience and achieves the real and elegant online through the newly added two-time point clamping process.
One specific example of a process for a client to invoke a service is described below in connection with fig. 2. As shown in fig. 2, it is assumed that there is one service, whose service providers are B and C, and whose caller is client application a.
The process of calling the service by the client A comprises the following steps:
(1) client a requests registry 202 to obtain a list of service providers.
(2) Registry 202 returns service B and service C to client a.
(3) Client a invokes service B and service C.
Assuming that a new service D is on-line at this time, the procedure from the start of the on-line to the completion of the on-line is as follows:
(4) a service D is newly started.
(5) After the initialization of the application is completed, a method calling interface is called to register the service D with the service administration platform 204.
(6) Service remediation platform 204 internally registers service D and sets the state to the "suspended" state and does not register service D with registry 202. At this point client a will not be able to acquire service D when acquiring the service provider list to registry 202.
(7) Service remediation platform 204 notifies test platform 206: service D initialization is complete.
(8) The test platform 206 begins executing the automated test cases for service D, automatically performing functional testing on service D.
(9) The test platform 206 notifies the service abatement platform 204 that the functional test is complete after the test is passed.
Service remediation platform 204 receives notification of test platform 206, changes the service state to the "enabled" state, and registers service D with registry 202.
In some embodiments, the automated test may not be performed by the test platform 206, and in such embodiments, three steps (7), (8), and (9) may be skipped and manual functional testing performed manually. Likewise, the service state is manually changed to an "enabled" state on service remediation platform 204 after the functional test is completed.
At this point, the online process ends, and the client a may acquire the service D when acquiring the service provider list from the registry 202.
The invention can be combined with the mechanisms of client retry, gray level release, abnormal service removal by monitoring and the like to ensure the reliability of the program to a greater extent.
The foregoing description of the preferred embodiments of the invention is not intended to be limiting, but rather is intended to cover all modifications, equivalents, alternatives, and improvements that fall within the spirit and scope of the invention.

Claims (8)

1. A micro-service-based online method is characterized in that,
the micro-service is a service calling mode, and the online method comprises the following steps:
before the service is registered in a registry, executing an initialization process of an application program corresponding to the service;
registering the service in a service administration platform after the initialization process is completed, and setting a state of the service registered in the service administration platform to a suspended state in which the service cannot be registered in the registry;
performing a functional test on the service having the suspended state;
after passing the functional test, setting a state of the service to an enabled state;
registering the service with the enablement status with the registry;
and registering the service to the registry by using a method call interface in a service end, wherein the method call interface is an interface without parameters, and the service registered to the registry is callable for a client.
2. The microservice-based online method of claim 1 wherein performing the functional test on the service with the suspended state comprises:
and executing the test cases of the service through a test platform to automatically perform the functional test on the service.
3. The microservice-based online method of claim 1 wherein the functional test performed on the services with the suspended state is a manual test.
4. The microservice-based online method of claim 1 wherein,
the initialization process is initiated by a developer of the application program and the method call interface is invoked by the developer to register the service with the registry.
5. An online system based on micro services, wherein the micro services are a service invocation mode, the online system comprising:
a registry for providing services registered with the registry to clients;
a service administration platform for registering the service into the service administration platform after the initialization process is completed, and setting a state of the service to a suspended state in which the service cannot be registered to the registry; and further for setting a state of the service to an enabled state after the service having the suspended state passes a functional test;
the service end of the application program corresponding to the service is provided with a method calling interface for calling the service, the method calling interface is an interface without parameters, and the service end is used for registering the service to the registry by utilizing the method calling interface in the service end.
6. The microservice-based online system of claim 5 further comprising:
and the test platform is used for executing the test cases of the service after receiving the notification of the service governance platform so as to automatically perform the function test on the service.
7. The microservice-based online system of claim 5, wherein the functional test performed on the service having the suspended state is a manual test.
8. The microservice-based online system of claim 5 wherein the microservice-based online system is configured to provide a plurality of microservices,
the initialization process is initiated by a developer of the application program and the method call interface is invoked by the developer to register the service with the registry.
CN202010855995.5A 2020-08-24 2020-08-24 Micro-service-based online method and system Active CN112114881B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010855995.5A CN112114881B (en) 2020-08-24 2020-08-24 Micro-service-based online method and system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010855995.5A CN112114881B (en) 2020-08-24 2020-08-24 Micro-service-based online method and system

Publications (2)

Publication Number Publication Date
CN112114881A CN112114881A (en) 2020-12-22
CN112114881B true CN112114881B (en) 2023-05-02

Family

ID=73805407

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010855995.5A Active CN112114881B (en) 2020-08-24 2020-08-24 Micro-service-based online method and system

Country Status (1)

Country Link
CN (1) CN112114881B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112882749A (en) * 2021-03-15 2021-06-01 京东方科技集团股份有限公司 Method and device for controlling up and down lines of application example and storage medium

Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2000054179A2 (en) * 1999-03-05 2000-09-14 Ac Properties B.V. A system, method and article of manufacture for utilizing a transaction interface in a mobile communication network
WO2003063009A1 (en) * 2002-01-18 2003-07-31 Bea Systems, Inc. System, method and interface for controlling server lifecycle
CN102801812A (en) * 2012-08-24 2012-11-28 上海和辰信息技术有限公司 Novel cloud service component management system and method in loose network environment
CN102821162A (en) * 2012-08-24 2012-12-12 上海和辰信息技术有限公司 System for novel service platform of loose cloud nodes under cloud computing network environment
US8392877B1 (en) * 2004-02-12 2013-03-05 Raju Chiluvuri System and method of application development using replaceable self-contained components (RSCCS)
CN103279840A (en) * 2013-06-08 2013-09-04 北京首钢自动化信息技术有限公司 Workflow engine implement method based on dynamic language and event processing mechanism
CN108540529A (en) * 2018-03-07 2018-09-14 江苏电力信息技术有限公司 Do not restart dynamic parameter method for refreshing under a kind of framework based on micro services
CN108965442A (en) * 2018-07-23 2018-12-07 珠海宏桥高科技有限公司 A kind of micro services infrastructure services dissemination system and model-based optimization method
CN108958708A (en) * 2017-05-25 2018-12-07 河南理工大学 A kind of software system architecture component-based and software implementation method
CN109542796A (en) * 2018-12-28 2019-03-29 深圳云天励飞技术有限公司 Test method and Related product
CN110262972A (en) * 2019-06-17 2019-09-20 中国科学院软件研究所 A kind of failure testing tool and method towards micro services application
CN111010422A (en) * 2019-11-18 2020-04-14 北京禧云信息科技有限公司 System and method for graceful shutdown

Patent Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2000054179A2 (en) * 1999-03-05 2000-09-14 Ac Properties B.V. A system, method and article of manufacture for utilizing a transaction interface in a mobile communication network
WO2003063009A1 (en) * 2002-01-18 2003-07-31 Bea Systems, Inc. System, method and interface for controlling server lifecycle
US8392877B1 (en) * 2004-02-12 2013-03-05 Raju Chiluvuri System and method of application development using replaceable self-contained components (RSCCS)
CN102801812A (en) * 2012-08-24 2012-11-28 上海和辰信息技术有限公司 Novel cloud service component management system and method in loose network environment
CN102821162A (en) * 2012-08-24 2012-12-12 上海和辰信息技术有限公司 System for novel service platform of loose cloud nodes under cloud computing network environment
CN103279840A (en) * 2013-06-08 2013-09-04 北京首钢自动化信息技术有限公司 Workflow engine implement method based on dynamic language and event processing mechanism
CN108958708A (en) * 2017-05-25 2018-12-07 河南理工大学 A kind of software system architecture component-based and software implementation method
CN108540529A (en) * 2018-03-07 2018-09-14 江苏电力信息技术有限公司 Do not restart dynamic parameter method for refreshing under a kind of framework based on micro services
CN108965442A (en) * 2018-07-23 2018-12-07 珠海宏桥高科技有限公司 A kind of micro services infrastructure services dissemination system and model-based optimization method
CN109542796A (en) * 2018-12-28 2019-03-29 深圳云天励飞技术有限公司 Test method and Related product
CN110262972A (en) * 2019-06-17 2019-09-20 中国科学院软件研究所 A kind of failure testing tool and method towards micro services application
CN111010422A (en) * 2019-11-18 2020-04-14 北京禧云信息科技有限公司 System and method for graceful shutdown

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
一个基于agent组织的web服务集成框架;孙茂圣等;《扬州大学学报(自然科学版)》;20090831;第12卷(第4期);全文 *
一种基于微服务的应用框架;张晶等;《计算机系统应用》;20160915(第09期);全文 *
一种应用于通信环境下的服务配置器框架;廖志坚等;《计算机与数字工程》;20070520(第05期);全文 *

Also Published As

Publication number Publication date
CN112114881A (en) 2020-12-22

Similar Documents

Publication Publication Date Title
US9632884B2 (en) Maintaining computer system operability
US8553853B2 (en) Systems and methods for using the advanced intelligent network to redirect data network traffic
EP0474058A2 (en) Problem analysis of a node computer with assistance from a central site
KR950010833B1 (en) Automated enrollement of a computer system into a service network of computer systems
US8347142B2 (en) Non-disruptive I/O adapter diagnostic testing
EP1851632A2 (en) Disaster recovery framework
WO2000010087A1 (en) Fault tolerant computer system
WO1997007456A1 (en) Method and apparatus for handling processing errors in telecommunications exchanges
US20160350166A1 (en) Systems and methods for smart diagnosis using hosted resources with intelligent altering of boot order
CN112114881B (en) Micro-service-based online method and system
CN110673993B (en) Fault injection method, platform and system
US20080154850A1 (en) Systems, methods, and computer program product for automatically verifying a standby site
US5384823A (en) Telecommunications switch with integral feature installation capability
CN114328110A (en) Monitoring method, system and storage medium for gateway of Internet of things
CN110471906B (en) Database switching method, device and equipment
US8234487B2 (en) Server apparatus and startup control method
CA2420008C (en) Panic message analyzer
KR100566610B1 (en) automatic disaster recovery system and recovery method thereof
US6625752B1 (en) Method for improving system availability following the failure of the processors of a processor platform
US11709760B1 (en) Automation failure diagnostic tool
CA2046748C (en) Problem prevention on a computer system in a service network of computer systems
KR960010869B1 (en) Processor state management method of dbms
KR960016534B1 (en) Distributed system and service control of intelligent network service control management
CN117992285A (en) System migration method, device, equipment and storage medium
KR20220127062A (en) Untact based computer maintenance device

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
CB02 Change of applicant information

Address after: 5 / F, building C5, 700 Yishan Road, Xuhui District, Shanghai, 200233

Applicant after: Shanghai HuiFu payment Co.,Ltd.

Address before: 5th floor, building C5, No. 700, Yishan Road, Xuhui District, Shanghai, 200233

Applicant before: SHANGHAI HUIFU DATA SERVICE Co.,Ltd.

CB02 Change of applicant information
GR01 Patent grant
GR01 Patent grant