CN113472889A - Scheduling system and method of microservice - Google Patents

Scheduling system and method of microservice Download PDF

Info

Publication number
CN113472889A
CN113472889A CN202110771865.8A CN202110771865A CN113472889A CN 113472889 A CN113472889 A CN 113472889A CN 202110771865 A CN202110771865 A CN 202110771865A CN 113472889 A CN113472889 A CN 113472889A
Authority
CN
China
Prior art keywords
service
agent module
scheduling
grid agent
scheduling request
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
CN202110771865.8A
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 Pudong Development Bank Co Ltd
Original Assignee
Shanghai Pudong Development Bank 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 Pudong Development Bank Co Ltd filed Critical Shanghai Pudong Development Bank Co Ltd
Priority to CN202110771865.8A priority Critical patent/CN113472889A/en
Publication of CN113472889A publication Critical patent/CN113472889A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/50Network services
    • H04L67/51Discovery or management thereof, e.g. service location protocol [SLP] or web services
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/50Network services
    • H04L67/56Provisioning of proxy services

Abstract

The invention discloses a micro-service scheduling system and a method. The method comprises the following steps: the system comprises a service providing end, a first grid agent module, a service registration center, a service scheduling end and a second grid agent module; the second grid agent module receives a scheduling request sent by a service scheduling terminal, determines a target micro service according to the scheduling request, and acquires a service providing terminal corresponding to the target micro service from a service registration center; sending the scheduling request to a first grid agent module; the first grid agent module analyzes the scheduling request to obtain service data to be processed; sending the service data to be processed to a target micro service in a service providing end for processing to obtain a processing result; the service provider returns the processing result to the first grid agent module; the first grid agent module sends the processing result to the second grid agent module; and the second grid agent module returns the processing result to the service scheduling end. The cost of service development and maintenance can be reduced.

Description

Scheduling system and method of microservice
Technical Field
The embodiment of the invention relates to the technical field of computers, in particular to a micro-service scheduling system and method.
Background
In the internet era of rapid development, network service architecture is developed from a single architecture to a distributed architecture, the business development of banking network financial systems is increasingly rapid, the access flow is rapidly increased, most banking network financial systems use the distributed system architecture to process huge business requests, and the requests are distributed to servers in the system for processing by means of Remote Procedure Call (RPC).
With the development of internet technology, services are continuously split and decomposed, and the granularity is smaller and smaller until the micro-service architecture emerges. With the rise of the micro-service concept, how to reasonably and efficiently call the micro-service in a distributed scene is a problem worthy of discussion.
The traditional micro service does not realize the separation of the service and the service management, the service management is deployed in the same service through the frame configuration and other modes, the coupling is high, the upgrading iteration of the service is not facilitated, the development and maintenance personnel need to complete the service and also consider the service management work of service discovery, registration and the like, and the development and maintenance cost is undoubtedly increased.
Disclosure of Invention
The embodiment of the invention provides a micro-service scheduling system and a method, which are used for realizing the separation of service and service management and reducing the cost of service development and maintenance.
In a first aspect, an embodiment of the present invention provides a micro-service scheduling system, including: the system comprises a service providing end, a first grid agent module, a service registration center, a service scheduling end and a second grid agent module;
the service provider registers micro-service information to the service registration center through the first grid agent module;
the second grid agent module receives a scheduling request sent by the service scheduling terminal, determines a target micro service according to the scheduling request, and acquires a service providing terminal corresponding to the target micro service from the service registration center; sending the scheduling request to the first grid agent module;
the first grid agent module analyzes the scheduling request to obtain service data to be processed; sending the service data to be processed to the target micro-service in the service providing terminal for processing to obtain a processing result;
the service provider returns the processing result to the first grid agent module; the first grid agent module sends the processing result to the second grid agent module; and the second grid agent module returns the processing result to the service scheduling end.
In a second aspect, an embodiment of the present invention further provides a method for invoking a microservice, where the method is executed by a service scheduling end, and includes:
receiving an initial service scheduling request sent by a client; the initial service scheduling request comprises an interface message, request information and service provider information;
preprocessing the interface message, and coding the preprocessed interface message, the request information and the service providing end information according to a set protocol format to obtain a target service scheduling request;
calling a local grid agent module of the service scheduling terminal to obtain a service providing terminal address list according to the service providing terminal information;
sending the target service scheduling request to a service provider according to a service provider address list;
and receiving response data returned by the server, and analyzing the response data to obtain a processing result.
In a third aspect, an embodiment of the present invention further provides a method for invoking a microservice, where the method is executed by a service provider and includes:
a local network agent module of the service provider receives a service scheduling request of a service scheduling terminal;
unpacking and decoding the service scheduling request to obtain an interface message;
analyzing the interface message to obtain service data;
calling a target micro service to process the business processing to obtain response data;
and sending the response data to a service scheduling end.
The embodiment of the invention discloses a micro-service scheduling system and a method. The method comprises the following steps: the system comprises a service providing end, a first grid agent module, a service registration center, a service scheduling end and a second grid agent module; the service provider registers the micro-service information to the service registration center through the first grid agent module; the second grid agent module receives a scheduling request sent by a service scheduling terminal, determines a target micro service according to the scheduling request, and acquires a service providing terminal corresponding to the target micro service from a service registration center; sending the scheduling request to a first grid agent module; the first grid agent module analyzes the scheduling request to obtain service data to be processed; sending the service data to be processed to a target micro service in a service providing end for processing to obtain a processing result; the service provider returns the processing result to the first grid agent module; the first grid agent module sends the processing result to the second grid agent module; and the second grid agent module returns the processing result to the service scheduling end. The scheduling system of the micro-service provided by the embodiment of the invention realizes the separation of the service and the service management through the grid agent module, and can reduce the cost of service development and maintenance.
Drawings
Fig. 1 is a schematic structural diagram of a scheduling system of micro services according to a first embodiment of the present invention;
FIG. 2 is a block diagram of a micro-service scheduling system according to a first embodiment of the present invention;
FIG. 3 is a flowchart of a method for invoking micro-services according to a second embodiment of the present invention;
fig. 4 is a flowchart of a method for invoking micro services in the third embodiment of the present invention.
Detailed Description
The present invention will be described in further detail with reference to the accompanying drawings and examples. It is to be understood that the specific embodiments described herein are merely illustrative of the invention and are not limiting of the invention. It is to be further noted that, for the convenience of description, only a part of the structure relating to the present invention is shown in the drawings, not the whole structure.
Example one
Fig. 1 is a schematic structural diagram of a scheduling system of micro services according to an embodiment of the present invention, as shown in fig. 1, the system includes a service provider 10, a first grid agent module 20, a service registry 30, a service scheduler 40, and a second grid agent module 50.
The service provider 10 registers the micro-service information with the service registry through the first grid agent module 20. The second grid agent module 50 receives the scheduling request sent by the service scheduling terminal 40, determines a target micro service according to the scheduling request, and obtains a service provider corresponding to the target micro service from the service registry; the scheduling request is sent to the first mesh proxy module 20. The first grid agent module 20 analyzes the scheduling request to obtain service data to be processed; and sending the service data to be processed to a target micro service in the service providing end for processing to obtain a processing result. The service provider 10 returns the processing result to the first grid agent module 20; the first grid agent module 20 sends the processing result to the second grid agent module 50; the second grid agent module 50 returns the processing result to the service dispatcher 40.
Wherein, the second mesh agent module 50 is further configured to decode the scheduling request to obtain request information; determining a target micro service according to the request information; encodes the request message and sends the encoded request message to the first mesh agent module 20. The first mesh agent module 20 is also used to decode the received request information.
In this embodiment, a communication Protocol of the scheduling system adopts a Hypertext Transfer Protocol (HTTP) or a Netty Protocol, and schedules the microservice through a Remote Procedure Call (RPC) or an Application Programming Interface (API). The grid agent module integrates service management functions of service discovery, registration, load balancing and the like, and can reduce the coupling between micro-service and service management. The micro-services only contain specific business services, and development and maintenance personnel only need to concentrate on realizing the business services, so that the development and maintenance efficiency can be improved.
Specifically, the first mesh agent module includes a first codec, a first service configuration discovery unit, and a second codec. The second grid agent module comprises a third codec, a load balancing unit, a fourth codec and a second service configuration discovery unit. Fig. 2 is a block diagram of a scheduling system of the microservice in the present embodiment. As shown in fig. 2, the scheduling system works as follows:
1) after the first grid agent module is started, micro service information is registered to the service registration center through the first service configuration discovery unit.
2) The service scheduling end requests the second grid agent module through the communication protocol. The third codec decodes the received scheduling request, obtains request information, and sends the request information to the second service configuration discovery unit.
3) The second service configuration finding unit obtains the micro-service to be scheduled according to the request information, and pulls the information of the providing terminals providing the service to the service registration center through the second service configuration finding unit, if a plurality of providing terminals providing the service exist, the load balancing unit selects a route according to a weighted polling load balancing algorithm. After the service provider is determined, the request information is encoded through a first codec, and the encoded request information is sent to a first grid agent module through a communication protocol.
4) The second coder-decoder decodes the request information and sends the decoded request information to the first service configuration discovery unit, and the first service configuration discovery unit sends the request information to the service provider through the first coder-decoder.
5) And the service providing end analyzes the request information and calls the corresponding micro service to perform service processing to obtain a processing result. And returning the processing result to the service scheduling end according to the reverse direction.
The scheduling system of microservices provided by the embodiment comprises: the system comprises a service providing terminal, a first grid agent module, a service registration center, a service scheduling terminal and a second grid agent module; the service providing terminal registers the micro-service information to the service registration center through the first grid agent module; the second grid agent module receives a scheduling request sent by a service scheduling terminal, determines a target micro service according to the scheduling request, and acquires a service providing terminal corresponding to the target micro service from a service registration center; sending the scheduling request to a first grid agent module; the first grid agent module analyzes the scheduling request to obtain service data to be processed; sending the service data to be processed to a target micro service in a service providing end for processing to obtain a processing result; the service provider returns the processing result to the first grid agent module; the first grid agent module sends the processing result to the second grid agent module; and the second grid agent module returns the processing result to the service scheduling end. The scheduling system of the micro-service provided by the embodiment of the invention realizes the separation of the service and the service management through the grid agent module, and can reduce the cost of service development and maintenance.
Example two
Fig. 3 is a flowchart of a method for invoking a microservice according to a second embodiment of the present invention, where the method is executed by a service dispatcher, and as shown in fig. 3, the method includes the following steps:
step 310, receiving an initial service scheduling request sent by a client.
The initial service scheduling request comprises an interface message, request information and service provider information. The interface message carries service data to be processed. In this embodiment, the micro-service scheduling is implemented by using RPC or message driven API.
Step 320, preprocessing the interface message, and encoding the preprocessed interface message and the request information and the service providing end information according to a set protocol format to obtain a target service scheduling request.
The process of preprocessing the interface message may be: carrying out field and/or type conversion on the interface message; and carrying out serialization processing on the converted interface message.
Specifically, mapping conversion of field and/or type conversion is performed on the interface message through an interface mapping layer. The implementation mode can be that a customized field type is added in the existing interface specification (such as json schema format), a new interface specification is formed, and then the conversion of the field and/or the type is carried out according to the new interface specification. Serialization processing can be realized by adopting serialization protocols such as kryo, session, thrift and the like, and the interface message is converted into a byte array.
The set protocol format may be an RPC protocol. Specifically, the serialized interface message is assembled and encoded according to an RPC protocol message format, and request information, service providing end information, and the like are added before a message load (payload), so as to obtain a target service scheduling request.
Step 330, call the local grid agent module of the service dispatcher to obtain the address list of the service provider according to the information of the service provider.
The local grid agent module integrates service management functions such as service discovery, registration, load balancing and the like. And the local network agent module acquires the address list of the service provider according to the information of the service provider.
Optionally, after the local grid proxy module is called, the method further includes the following steps: judging whether to carry out current limiting or fusing processing on the target service scheduling request; if so, rejecting the target scheduling request.
In this embodiment, the local grid agent module automatically controls the current limiting according to the time consumption of the request and the complexity of the service. The access is carried out through the unified gateway address (namely the address of the service provider), the gateway distributes the request to the specific service, and the processing result is returned in a unified mode.
Step 340, sending the target service scheduling request to the service provider according to the service provider address list.
And 350, receiving response data returned by the server, analyzing the response data and obtaining a processing result.
The method for analyzing the response data may be: and decoding, deserializing, field and/or type converting the response data.
Optionally, the method further comprises the following steps: performing link tracking on a service scheduling end to obtain tracking data; and uploading the tracking data to the provisioning server.
When complex business logic is realized, a plurality of micro services are generally involved, the execution failure of the business logic can be caused when any micro service fails, when the execution of the business logic fails, limited error information can be obtained from a link for calling transaction generally, and specific problems cannot be found. Meanwhile, after service call information is collected, the system can analyze the performance of the service call link, if a service provider with performance problems on the call link is found, emergency treatment notification messages such as service current limiting and fusing are generated according to a preset degradation rule, and the service current limiting or fusing notification is sent through a message middleware Message Queue (MQ). After receiving the relevant emergency notification, the service grid agent performs control logic processing such as current limiting and fusing in the RPC call link, and RPC index data acquired by link tracking can be analyzed in real time and fed back to the RPC component, so that the overall stability and usability of the system are ensured.
According to the technical scheme of the embodiment, an initial service scheduling request sent by a client is received; the initial service scheduling request comprises an interface message, request information and service provider information; preprocessing the interface message, and coding the preprocessed interface message and request information and service providing end information according to a set protocol format to obtain a target service scheduling request; calling a local grid agent module of a service scheduling terminal to acquire a service providing terminal address list according to service providing terminal information; sending a target service scheduling request to a service provider according to the address list of the service provider; and receiving response data returned by the server, and analyzing the response data to obtain a processing result. The scheduling of the micro-service is realized through the local grid agent module, the scheduling efficiency can be improved, and the separation of the business service and the service management is realized through the grid agent module, so that the cost of service development and maintenance can be reduced.
EXAMPLE III
Fig. 4 is a flowchart of a method for invoking a microservice according to a third embodiment of the present invention, where the method is executed by a service provider, and as shown in fig. 4, the method includes the following steps:
in step 410, the local grid agent module of the service provider receives the service scheduling request of the service scheduler.
Optionally, after receiving the service scheduling request of the service scheduling end, the local grid agent module of the service providing end performs link tracking on the service providing end to obtain the tracking data, and uploads the tracking data to the set server.
Step 420, unpacking and decoding the service scheduling request to obtain an interface message.
Specifically, unpacking and decoding are performed on the message according to the RPC protocol message format, and actual load message data of the message is obtained.
And 430, analyzing the interface message to obtain service data.
Specifically, the process of analyzing the interface message to obtain the service data may be: and performing deserialization and field and/or type conversion on the interface message to obtain service data.
The deserialization can be realized by using a serialization protocol such as kryo, session, thick and the like. The interface mapping layer carries out field and/or type conversion processing on the interface message to obtain service data.
Step 440, the target microservice is called to process the business processing, and response data is obtained.
Specifically, the service logic of the scheduling service provider processes the service data to obtain response data.
And step 450, sending the response data to the service dispatching end.
In this embodiment, before sending the response data to the service scheduling end, the response data is subjected to field and/or type conversion, sequence number, encoding, and other processing. The specific processing manner is similar to that of the above embodiment, and is not described herein again. And returning the response data according to the data transmission link.
In the technical scheme of the embodiment, a local grid agent module of a service provider receives a service scheduling request of a service scheduling terminal; unpacking and decoding the service scheduling request to obtain an interface message; analyzing the interface message to obtain service data; calling a target micro service to process the business processing to obtain response data; and sending the response data to the service scheduling terminal. The local grid agent module is used for receiving the service scheduling request of the service scheduling terminal, so that the separation of service and service management is realized, and the cost of service development and maintenance can be reduced.
It is to be noted that the foregoing is only illustrative of the preferred embodiments of the present invention and the technical principles employed. It will be understood by those skilled in the art that the present invention is not limited to the particular embodiments described herein, but is capable of various obvious changes, rearrangements and substitutions without departing from the scope of the invention. Therefore, although the present invention has been described in more detail by the above embodiments, the present invention is not limited to the above embodiments, and may include other equivalent embodiments without departing from the spirit of the present invention, and the scope of the present invention is determined by the scope of the appended claims.

Claims (10)

1. A system for scheduling microservices, comprising: the system comprises a service providing end, a first grid agent module, a service registration center, a service scheduling end and a second grid agent module;
the service provider registers micro-service information to the service registration center through the first grid agent module;
the second grid agent module receives a scheduling request sent by the service scheduling terminal, determines a target micro service according to the scheduling request, and acquires a service provider corresponding to the target micro service from the service registration center; sending the scheduling request to the first grid agent module;
the first grid agent module analyzes the scheduling request to obtain service data to be processed; sending the to-be-processed business data to the target micro service in the service providing end for processing to obtain a processing result;
the service provider returns the processing result to the first grid agent module; the first grid agent module sends the processing result to the second grid agent module; and the second grid agent module returns the processing result to the service scheduling terminal.
2. The system of claim 1 wherein said second mesh agent module is further configured to decode said scheduling request to obtain request information; determining a target micro service according to the request information; encoding the request information, and sending the encoded request information to the first grid agent module;
the first mesh agent module is further configured to decode the received request message.
3. A calling method of micro service, which is executed by a service scheduling terminal, comprises the following steps:
receiving an initial service scheduling request sent by a client; the initial service scheduling request comprises an interface message, request information and service provider information;
preprocessing the interface message, and coding the preprocessed interface message, the request information and the service providing end information according to a set protocol format to obtain a target service scheduling request;
calling a local grid agent module of the service scheduling terminal to acquire a service providing terminal address list according to the service providing terminal information;
sending the target service scheduling request to a service provider according to a service provider address list;
and receiving response data returned by the server, and analyzing the response data to obtain a processing result.
4. The method of claim 3, after invoking the local grid proxy module, further comprising:
judging whether to carry out current limiting or fusing processing on the target service scheduling request; and if so, rejecting the target scheduling request.
5. The method of claim 3, wherein preprocessing the interface packet comprises:
converting fields and/or types of the interface message;
and carrying out serialization processing on the converted interface message.
6. The method of claim 5, wherein parsing the response data comprises:
and decoding, deserializing, field and/or type converting the response data.
7. The method of claim 3, further comprising: performing link tracking on the service scheduling terminal to obtain tracking data; and uploading the tracking data to a configuration server.
8. A calling method of micro service, wherein the method is executed by a service provider and comprises the following steps:
a local network agent module of the service provider receives a service scheduling request of a service scheduling terminal;
unpacking and decoding the service scheduling request to obtain an interface message;
analyzing the interface message to obtain service data;
calling a target micro service to process the business processing to obtain response data;
and sending the response data to a service scheduling end.
9. The method of claim 8, wherein parsing the interface packet to obtain service data comprises:
and performing deserialization and field and/or type conversion on the interface message to obtain service data.
10. The method according to claim 8, wherein the link tracking is performed on the service provider to obtain tracking data; and uploading the tracking data to a configuration server.
CN202110771865.8A 2021-07-08 2021-07-08 Scheduling system and method of microservice Pending CN113472889A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202110771865.8A CN113472889A (en) 2021-07-08 2021-07-08 Scheduling system and method of microservice

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202110771865.8A CN113472889A (en) 2021-07-08 2021-07-08 Scheduling system and method of microservice

Publications (1)

Publication Number Publication Date
CN113472889A true CN113472889A (en) 2021-10-01

Family

ID=77879097

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202110771865.8A Pending CN113472889A (en) 2021-07-08 2021-07-08 Scheduling system and method of microservice

Country Status (1)

Country Link
CN (1) CN113472889A (en)

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114844957A (en) * 2022-04-27 2022-08-02 工银科技有限公司 Link message conversion method, device, equipment, storage medium and program product
CN115242866A (en) * 2022-07-28 2022-10-25 度小满科技(北京)有限公司 Micro-service calling method and device, electronic equipment and storage medium
CN117076163A (en) * 2023-10-17 2023-11-17 建银工程咨询有限责任公司 Communication method and system between multiple standard service systems
WO2024061189A1 (en) * 2022-09-19 2024-03-28 华为云计算技术有限公司 Service mesh system and information transmission method based on service mesh system

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110225131A (en) * 2019-06-19 2019-09-10 广州小鹏汽车科技有限公司 A kind of service calling method and device
CN110401696A (en) * 2019-06-18 2019-11-01 华为技术有限公司 A kind of method, communication agent, host and the storage medium of decentralization processing
CN111131193A (en) * 2019-12-10 2020-05-08 四川新网银行股份有限公司 Distributed service governance method supporting multi-protocol heterogeneous non-code intrusion
CN111245925A (en) * 2020-01-09 2020-06-05 北京理工大学 Communication method and system for modern distributed micro-service architecture
CN112995324A (en) * 2021-03-10 2021-06-18 中国民航信息网络股份有限公司 Service calling method, device, computer readable medium and equipment

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110401696A (en) * 2019-06-18 2019-11-01 华为技术有限公司 A kind of method, communication agent, host and the storage medium of decentralization processing
CN110225131A (en) * 2019-06-19 2019-09-10 广州小鹏汽车科技有限公司 A kind of service calling method and device
CN111131193A (en) * 2019-12-10 2020-05-08 四川新网银行股份有限公司 Distributed service governance method supporting multi-protocol heterogeneous non-code intrusion
CN111245925A (en) * 2020-01-09 2020-06-05 北京理工大学 Communication method and system for modern distributed micro-service architecture
CN112995324A (en) * 2021-03-10 2021-06-18 中国民航信息网络股份有限公司 Service calling method, device, computer readable medium and equipment

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114844957A (en) * 2022-04-27 2022-08-02 工银科技有限公司 Link message conversion method, device, equipment, storage medium and program product
CN114844957B (en) * 2022-04-27 2024-03-08 工银科技有限公司 Link message conversion method, device, equipment, storage medium and program product
CN115242866A (en) * 2022-07-28 2022-10-25 度小满科技(北京)有限公司 Micro-service calling method and device, electronic equipment and storage medium
WO2024061189A1 (en) * 2022-09-19 2024-03-28 华为云计算技术有限公司 Service mesh system and information transmission method based on service mesh system
CN117076163A (en) * 2023-10-17 2023-11-17 建银工程咨询有限责任公司 Communication method and system between multiple standard service systems
CN117076163B (en) * 2023-10-17 2024-01-12 建银工程咨询有限责任公司 Communication method and system between multiple standard service systems

Similar Documents

Publication Publication Date Title
CN113472889A (en) Scheduling system and method of microservice
CN101917385B (en) Dispatch server and distributed system for multimedia trans-coding
CN110958281B (en) Data transmission method and communication device based on Internet of things
CN111082904B (en) Rtos-based rpc communication method
CN111200606A (en) Deep learning model task processing method, system, server and storage medium
Xu et al. Design of oneM2M-based fog computing architecture
CN112084042B (en) Message processing method and device
CN112286698A (en) Remote procedure call method and device and remote procedure call execution method
CN115550354A (en) Data processing method and device and computer readable storage medium
CN109547333A (en) Instant communicating method and device
US8200845B2 (en) Queuing of invocations for mobile web services
CN113973139A (en) Message processing method and device
CN112929453B (en) Method and device for sharing session data
CN115374207A (en) Service processing method and device, electronic equipment and computer readable storage medium
US9479599B2 (en) Reroute of a web service in a web based application
CN114968636A (en) Fault processing method and device
CN113992641A (en) Data processing method, device, equipment and storage medium
CN115250276A (en) Distributed system and data processing method and device
CN114090397A (en) Alarm information processing method and device
CN107943541B (en) Communication method of Windows local component
CN113326060A (en) Service request processing method, device and system and service configuration method and device
CN114745564B (en) Service scheduling method and device
CN117076057B (en) AI service request scheduling method, device, equipment and medium
CN113497783B (en) Method and device for processing data
US11755397B2 (en) Systems and methods for processing of messages subject to dead letter queues in representational state transfer architectures to prevent data loss in cloud-based computing environments

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
RJ01 Rejection of invention patent application after publication

Application publication date: 20211001

RJ01 Rejection of invention patent application after publication