CN106330769B - Service processing method and server - Google Patents

Service processing method and server Download PDF

Info

Publication number
CN106330769B
CN106330769B CN201611024606.4A CN201611024606A CN106330769B CN 106330769 B CN106330769 B CN 106330769B CN 201611024606 A CN201611024606 A CN 201611024606A CN 106330769 B CN106330769 B CN 106330769B
Authority
CN
China
Prior art keywords
service
processing process
service processing
target
server
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
CN201611024606.4A
Other languages
Chinese (zh)
Other versions
CN106330769A (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.)
Tencent Technology Shenzhen Co Ltd
Original Assignee
Tencent Technology Shenzhen 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 Tencent Technology Shenzhen Co Ltd filed Critical Tencent Technology Shenzhen Co Ltd
Priority to CN201611024606.4A priority Critical patent/CN106330769B/en
Publication of CN106330769A publication Critical patent/CN106330769A/en
Application granted granted Critical
Publication of CN106330769B publication Critical patent/CN106330769B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

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/60Scheduling or organising the servicing of application requests, e.g. requests for application data transmissions using the analysis and optimisation of the required network resources
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L47/00Traffic control in data switching networks
    • H04L47/50Queue scheduling

Abstract

The invention discloses a service processing method and a server, belonging to the technical field of data processing, wherein the method comprises the following steps: receiving a service request data packet from a client from a preset target service interface, and storing the service request data packet into a message queue, wherein the target service interface corresponds to a target service type; when processing the service request data packet of the message queue, determining a target service processing process group for processing the service request data packet according to a target service type, wherein the service processing process group corresponding to the service type is preset in the server; and selecting a service processing process from the target service processing process group to process the service request data packet to obtain a service response data packet, and returning the service response data packet to the client. The embodiment of the invention divides the service and the service processing process, effectively distributes and manages the service processing according to the service processing process grouping, and improves the pertinence of service processing.

Description

Service processing method and server
Technical Field
The present invention relates to the field of data processing technologies, and in particular, to a service processing method and a server.
Background
A "message" is a unit of data that is transferred between two computers. The message may be very simple, such as containing only text strings; or may be more complex, such as possibly including embedded objects. A Message Queue (MQ) is a container that holds messages during their transmission. The message queue manager acts as a man-in-the-middle in relaying a message from its source to its destination. The main purpose of the message queue is to provide routing and guarantee delivery of the message; if the recipient is not available when the message is sent, the message queue will hold the message until it can be successfully delivered.
There are many message queue handling traffic solutions on the market, such as RabbitMQ, ZeroMQ, Kafka, etc. However, in the existing scheme for processing services by using message queues, all types of services are processed in a first-in first-out (i.e., sequentially stored in the message queues and then processed from the queue heads) manner in the message queues, and in this service allocation processing manner, because all types of services are processed by allocating idle service processing processes in sequence, service processing is not targeted, and service processing cannot be effectively managed.
Disclosure of Invention
In view of the above, an object of the present invention is to provide a service processing method and a server, so as to solve the problem that the current message queue processing is not targeted and cannot effectively manage the service processing process.
According to an aspect of the present invention, a service processing method is provided, which is applied to a server, in which at least one type of service interface for interacting data with a client is preset, and the method includes:
receiving a service request data packet from a client from a preset target service interface, and storing the service request data packet into a message queue, wherein the target service interface corresponds to a target service type;
when processing the service request data packet of the message queue, determining a target service processing process group for processing the service request data packet according to the target service type, wherein the service processing process group corresponding to the service type is preset in the server;
and selecting a service processing process from the target service processing process group to process the service request data packet to obtain a service response data packet, and returning the service response data packet to the client.
According to another aspect of the present invention, there is provided a server in which at least one type of service interface for interacting data with a client is preset, the server comprising:
the service receiving and storing unit is used for receiving a service request data packet from a client from a preset target service interface and storing the service request data packet into a message queue, wherein the target service interface corresponds to a target service type;
the service processing unit is used for determining a target service processing process group for processing the service request data packet according to the target service type when processing the service request data packet of the message queue, and the service processing process group corresponding to the service type is preset in the server; selecting a service processing process from the target service processing process group to process the service request data packet to obtain a service response data packet;
and the sending unit is used for returning the service response data packet to the client.
The embodiment of the invention receives a service request data packet from a client from a preset target service interface and stores the service request data packet into a message queue; when the service request data packet of the message queue is processed, determining a target service processing process group for processing the service request data packet according to the target service type, selecting a service processing process from the target service processing process group to process the service request data packet to obtain a service response data packet, and returning the service response data packet to the client. Because the target service interface corresponds to the target service type and the service processing process groups for processing the services of different service types are preset, the service request data packets of different service types can be distributed to the corresponding service processing process groups for processing, and the service processing processes are divided, so that the service processing can be effectively distributed and managed according to the service processing process groups, and the pertinence of service processing is improved.
Drawings
FIG. 1 is a block diagram of message queue transaction processing according to an embodiment of the present invention;
fig. 2 is a flowchart of a service processing method according to an embodiment of the present invention;
fig. 3 is a schematic architecture diagram of an embodiment of a method for implementing service processing according to the present invention;
fig. 4 is a flowchart of another service processing method according to an embodiment of the present invention;
FIG. 5 is a diagram illustrating an attribute field structure of a business processing process according to an embodiment of the present invention;
fig. 6 is a flowchart of a method for registering an application server according to an embodiment of the present invention;
fig. 7 is a block diagram of a server according to an embodiment of the present invention;
fig. 8 is a block diagram of another server according to an embodiment of the present invention;
fig. 9 is a block diagram of still another server provided in the embodiment of the present invention;
fig. 10 is a block diagram of a server according to still another embodiment of the present invention;
fig. 11 is a block diagram of still another server provided in the embodiment of the present invention;
fig. 12 is a schematic structural diagram of a server in an embodiment of the present invention.
The implementation, functional features and advantages of the objects of the present invention will be further explained with reference to the accompanying drawings.
Detailed Description
In order to make the technical problems, technical solutions and advantageous effects to be solved by the present invention clearer and clearer, the present invention is further described in detail below with reference to the accompanying drawings and embodiments. It should be understood that the specific embodiments described herein are merely illustrative of the invention and are not intended to limit the invention.
As shown in fig. 1, which is a schematic diagram of an architecture of a service processing system in a message queue, clients corresponding to different applications or services serve as service requesters (or service producers), generate service request data packets, send the service request data packets to a service receiving and storing unit of a server (service dispatcher), the service receiving and storing unit stores the service request data packets into the message queue, distributes the service request data packets to the service processing unit (service executor) to process the service request data packets to obtain service response data packets, and returns the service response data packets to the service requesters, that is, the application or service clients. The message queue of the service processing in the embodiment of the invention can be based on a Gearman architecture, taking the Gearman architecture as an example, and the processing process of one Gearman service request relates to three roles of a Client (Client), a Job Server (service access Server) and a Worker (application service process). Wherein, the Client is a requester of the service, i.e. the Client in fig. 1; the Job Server is a service dispatcher, i.e. a service receiving and storing unit in fig. 1, and is responsible for coordinating and forwarding the service request sent by the Client to a proper Worker, and the Worker is a service executor, i.e. a service processing unit in fig. 1. In the embodiment of the present invention, the service requester may be a client described below, and the client may be a web client.
The following describes an embodiment of a service processing method in an embodiment of the present invention, which is applied to a server, where the server may be the server in fig. 1, and at least one type of service interface for interacting data with a client is preset in the server,
referring to fig. 2, a schematic diagram of an embodiment of a service processing method according to an embodiment of the present invention is shown, where the method includes:
s201, receiving a service request data packet from a client from a preset target service interface, and storing the service request data packet into a message queue, wherein the target service interface corresponds to a target service type.
As shown in fig. 3, a Gearman task system is taken as an example, and is a schematic diagram of an architecture for service processing by a Gearman task system in a server according to an embodiment of the present invention, in this embodiment, a Web access layer service interface, a selling system service interface, a receipt supplementing system service interface, and an operation and maintenance system service interface are preset in the server, each service interface corresponds to a different service type, and different service request data packets from a Web access layer client, a selling system client, a receipt supplementing system service system client, and an operation and maintenance system client are respectively received through the different types of service interfaces and are stored in a message queue.
S202, when processing the service request data packet of the message queue, determining a target service processing progress grouping for processing the service request data packet according to the target service type.
The server is preset with service processing process groups corresponding to the service types, and the corresponding service processing process groups are searched according to the service types.
As shown in fig. 3, the description will be made by taking the example that a Web access layer service interface, a selling system service interface, a filling system service interface and an operation and maintenance system service interface are preset in the server. The server receives requests from the Web access layer system, the self-selling system, the order supplementing system service system and the operation and maintenance system through the Web access layer service interface, the selling system service interface, the order supplementing system service interface and the operation and maintenance system service interface respectively, and each interface corresponds to one service type. And the server distributes the service request data packet sent by the client to the corresponding service processing process group for processing. Specifically, a service request data packet sent by the Web access system is distributed to a Web access process group for processing, a service request data packet sent by the selling system is distributed to a selling process group for processing, a service request data packet sent by the form supplementing system is distributed to a form supplementing process group for processing, and a service request data packet sent by the operation and maintenance system is distributed to an operation and maintenance process group for processing.
S203, selecting a service processing process from the target service processing process group to process the service request data packet to obtain a service response data packet, and returning the service response data packet to the client.
Specifically, after the service request data packet is allocated to a specific target service processing process group, a service processing process is selected from the target service processing process group to process the service request data packet, for example, a relatively idle service processing process in the target service processing process group is selected to process the service request data packet to obtain a service response data packet, and the service response data packet is returned to the corresponding client through a sending unit of the server.
The embodiment of the invention receives a service request data packet from a client from a preset target service interface and stores the service request data packet into a message queue; when the service request data packet of the message queue is processed, determining a target service processing process group for processing the service request data packet according to the target service type, selecting a service processing process from the target service processing process group to process the service request data packet to obtain a service response data packet, and returning the service response data packet to the client. Because the target service interface corresponds to the target service type and the service processing process groups for processing the services of different service types are preset, the service request data packets of different service types can be distributed to the corresponding service processing process groups for processing, and the service processing processes are divided, so that the service processing can be effectively distributed and managed according to the service processing process groups, and the pertinence of service processing is improved.
As shown in fig. 4, in order to flexibly configure a service interface and improve scalability, in other embodiments, before step S201, the method may further include:
s200, registering at least one type of service interface for data interaction with the client, wherein the at least one type of service interface comprises a target service interface corresponding to a target service type.
Specifically, taking the georman task system as an example, the georman task system provides a service registration function, and only by writing a configuration file into a package (package) path, the system automatically imports a service interface when being started, and registers a corresponding service interface name at the same time.
In some embodiments of the present invention, before determining the target service processing process packet for processing the service request packet according to the target service type, the method further includes: and according to the service interface in the server, grouping the service processing processes of the allocable service corresponding to the server.
Each type of service interface corresponds to a service processing process group, and the service processing process in the service processing process group processes the service request data packet received in the service interface corresponding to the service type.
Further, grouping the service processing processes, to which the service can be allocated, corresponding to the server according to the service interface in the server specifically includes:
when service grouping is carried out on service processing processes which can distribute services and correspond to the server, attributes are configured on the service processing processes, the attributes comprise service processing process identifiers, service processing process grouping identifiers and work types, and the service processing process grouping identifiers correspond to the service types.
Correspondingly, determining the target service processing process group for processing the service request data packet according to the target service type specifically includes: determining a service processing process grouping identifier for processing the target service according to the type of the target service; and determining a target service processing process group for processing the target service request data packet according to the service processing process group identifier. As shown in fig. 5, the attributes of the business process at least include: service processing process identification, work type and service processing process grouping identification. The service process id distinguishes different service processes in the same service process group, and may be identified by sequence numbers 1,2, …, n, for example. The work type refers to a manner of triggering work, and includes a block (object) type and a timer (timer) type. For example, assuming that the type of the work of the business process is defined by type, when the type is block, the work type of the current business process is indicated as block type, and when the type is timer, the work type of the current business process is indicated as timer type. The service processing process grouping identification is used for distinguishing different service processing process groups, and the service processing process grouping identification corresponds to a service type. For example, the selling system service processing process group is identified by salt, the Timer system service processing process group is identified by Timer, and the operation and maintenance system service processing process group is identified by Maintain. Assuming that the group identifier of the service processing process to which the service processing process belongs is defined by a group, when the group is Sale, the group identifier indicates that the current service processing process belongs to a selling system service processing process group, when the group is Timer, the group identifier indicates that the current service processing process belongs to a Timer system service processing process group, and when the group is Maintain, the group identifier indicates that the current service processing process belongs to an operation and maintenance system service processing process group.
In the embodiment of the invention, the state of the service processing process in the server can be monitored, for example, a Gearman task system, a plurality of instances of the service processing process are operated, the state of the worker in the server is monitored, and the Gearman task system monitors the state through a management service process. For example, the abnormal exit of the business processing process can automatically pull up) to monitor and pull up the state of the business processing process.
The calling of the service processing process in the embodiment of the invention supports synchronous calling and/or asynchronous calling, specifically, the service processing process can be one server or different servers, and at the moment, a group of service processing processes can be deployed in a server in a mixed mode, in an exclusive mode or in a multi-machine mode. The configuration attributes comprise the number of the service processing processes, the working types of the service processing processes, packaging paths, logs and the like. The application server described in the embodiment of the present invention may be the server described in fig. 1. Further, the business processes in the same business process grouping may include business processes of the same application server, and/or the business processes of different application servers, e.g., the business processes in one business process grouping may include business processes in one or more application servers.
Preferably, in order to support the delayed and timed callback timing task, the method may further include:
acquiring a timing execution instruction set for a target service;
and calling a preset timer to register the target service.
And when the time set by the timer is reached, the service request data packet corresponding to the target service is processed by the service processing process. The allocation may be the same as in the embodiment described in fig. 2, and will not be described herein.
As shown in fig. 6, in order to dynamically configure the application server according to the service processing pressure and increase the configuration of the application server for processing the service, the method may further include the step of registering the application server, which specifically includes:
s601, receiving a registration request of a target application server, wherein the registration request comprises service processing progress information of allocable processing service.
S602, performing grouping configuration of the service processing process for the target application server according to the registration request.
S603, sending the grouping configuration information of the service processing process to the target application server.
Wherein the grouping configuration information comprises: the service processing process grouping identification of each service processing process in the target application server and the work type of the service processing process.
An embodiment of a server in an embodiment of the invention is described below.
Referring to fig. 7, a schematic diagram of an embodiment of a server according to the present invention, in which at least one type of service interface for interacting data with a client is preset, includes:
a service receiving and storing unit 10, configured to receive a service request data packet from a client from a preset target service interface, and store the service request data packet in a message queue, where the target service interface corresponds to a target service type;
a service processing unit 20, configured to determine, when processing a service request packet of a message queue, a target service processing process packet for processing the service request packet according to a target service type, where the service processing process packet corresponding to the service type is preset in a server; and selecting a service processing process from the target service processing process group to process the service request data packet to obtain a service response data packet.
And a sending unit 30, configured to return the service response data packet to the client.
Further, as shown in fig. 8, the server further includes:
and a service interface registration unit 40, configured to register at least one type of service interface for exchanging data with the client before receiving a service request data packet from the client through a preset target service interface, where the at least one type of service interface includes a target service interface corresponding to the target service type.
Further, as shown in fig. 9, the server further includes:
and the service processing process grouping unit 50 is configured to, before determining a target service processing process grouping for processing the service request data packet according to the target service type, perform service processing process grouping on a service processing process to which a service can be allocated and which corresponds to the server according to the service interface type in the server.
Each type of service interface corresponds to a service processing process group, and the service processing process in the service processing process group processes the service request data packet received in the service interface corresponding to the service type.
Further, the service processing process grouping unit 50 is specifically configured to: when service grouping is carried out on service processing processes which can distribute services and correspond to the server, attributes are configured on the service processing processes, the attributes comprise service processing process identifiers, service processing process grouping identifiers and work types, and the service processing process grouping identifiers correspond to the service types.
Correspondingly, the service processing unit 20 is specifically configured to: determining a service processing process grouping identifier for processing the target service according to the type of the target service; and determining a target service processing process group for processing the target service request data packet according to the service processing process group identifier.
Further, as shown in fig. 10, the server further includes an application server registration unit 60, where the application server registration unit 60 is specifically configured to: receiving a registration request of a target application server, wherein the registration request comprises service processing process information of allocable processing services; performing grouping configuration of a service processing process for the target application server according to the registration request; and sending the grouping configuration information of the service processing process to the target application server.
Wherein, the grouping configuration information includes: the service processing process grouping identification of each service processing process in the target application server and the work type of the service processing process.
Further, as shown in fig. 11, in order to support the delay and timing callback timing task, the server further includes a timing scheduling unit 70, specifically configured to: acquiring a timing execution instruction set for a target service; and calling a preset timer to register the target service. And when the time set by the timer is reached, the service request data packet corresponding to the target service is processed by the service processing process. The allocation may be the same as in the embodiment described in fig. 2, and will not be described herein.
Fig. 12 is a schematic diagram of a server structure provided by an embodiment of the present invention, which may have a relatively large difference due to different configurations or performances, and may include one or more Central Processing Units (CPUs) 922 (e.g., one or more processors) and a memory 932, and one or more storage media 930 (e.g., one or more mass storage devices) for storing applications 942 or data 944. Memory 932 and storage media 930 can be, among other things, transient storage or persistent storage. The program stored on the storage medium 930 may include one or more modules (not shown), each of which may include a series of instruction operations for the server. Still further, the central processor 922 may be arranged to communicate with the storage medium 930 to execute a series of instruction operations in the storage medium 930 on the server.
The server may also include one or more power supplies 926, one or more wired or wireless network interfaces 950, one or more input-output interfaces 958, and/or one or more operating systems 941, such as Windows Server, Mac OS XTM, UnixTM, LinuxTM, FreeBSDTM, etc.
The steps performed by the server in the above embodiment may be based on the server structure shown in fig. 12.
It should be noted that, in the above embodiments, the included units are only divided according to functional logic, but are not limited to the above division as long as the corresponding functions can be realized; in addition, specific names of the functional units are only for convenience of distinguishing from each other, and are not used for limiting the protection scope of the present invention.
The server receives a service request data packet from a client through a preset target service interface, and stores the service request data packet into a message queue; when the service request data packet of the message queue is processed, determining a target service processing process group for processing the service request data packet according to the target service type, selecting a service processing process from the target service processing process group to process the service request data packet to obtain a service response data packet, and returning the service response data packet to the client. Because the target service interface corresponds to the target service type and the service processing process groups for processing the services of different service types are preset, the service request data packets of different service types can be distributed to the corresponding service processing process groups for processing, and the service processing processes are divided, so that the service processing can be effectively distributed and managed according to the service processing process groups, and the pertinence of service processing is improved.
It will be understood by those skilled in the art that all or part of the steps in the above method embodiments may be implemented by using a program to instruct relevant hardware to perform the steps, and the corresponding program may be stored in a computer-readable storage medium, where the above storage medium may be a read-only memory, a magnetic disk or an optical disk, etc.
The above description is only for the preferred embodiment of the present invention, but the scope of the present invention is not limited thereto, and any changes or substitutions that can be easily conceived by those skilled in the art within the technical scope of the embodiment of the present invention are included in the scope of the present invention. Therefore, the protection scope of the present invention shall be subject to the protection scope of the claims.

Claims (9)

1. A service processing method is applied to a server, at least one type of service interface for interacting data with a client is preset in the server, and the method comprises the following steps:
registering at least one type of service interface for data interaction with a client, wherein the at least one type of service interface comprises a target service interface corresponding to a target service type, or acquiring a timing execution instruction set for the target service and calling a preset timer to register the target service;
receiving a service request data packet from a client from a preset target service interface, and storing the service request data packet into a message queue, wherein the target service interface corresponds to a target service type;
according to the service interfaces in the server, service processing process grouping is carried out on service processing processes of allocable services corresponding to the server, wherein each type of service interface corresponds to one service processing process grouping, and the service processing processes in the service processing process grouping process service request data packets received in the service interfaces corresponding to the service types;
when processing the service request data packet of the message queue, determining a service processing process grouping identifier for processing the target service according to the target service type;
determining a target service processing process group for processing the service request data packet according to the service processing process group identifier, and monitoring a service processing process in the target service process group, wherein a service processing process group corresponding to the service type is preset in the server, and the service processing process in the same service processing process group comprises a service processing process of the same application server and/or service processing processes of different application servers;
and when the service request data packet of the message queue is processed or the time set by the timer is reached, selecting an idle service processing process from the target service processing process group to process the service request data packet to obtain a service response data packet, and returning the service response data packet to the client.
2. The service processing method according to claim 1, wherein the grouping service processing processes of the service processing processes to which the service can be allocated corresponding to the server according to the service interface in the server further comprises:
when service grouping is carried out on service processing processes which can distribute services and correspond to the server, attributes are configured on the service processing processes, wherein the attributes comprise service processing process identifiers, service processing process grouping identifiers and work types, and the service processing process grouping identifiers correspond to the service types.
3. The traffic processing method according to any of claims 1 to 2, wherein the method further comprises:
receiving a registration request of a target application server, wherein the registration request comprises service processing process information of allocable processing services;
performing grouping configuration of a service processing process for the target application server according to the registration request;
sending the grouping configuration information of the service processing process to the target application server;
wherein the packet configuration information includes: and the service processing process grouping identification of each service processing process in the target application server and the working type of the service processing process.
4. A server, wherein at least one type of service interface for data interaction with a client is preset in the server, and the server comprises:
the service receiving and storing unit is used for receiving a service request data packet from a client from a preset target service interface and storing the service request data packet into a message queue, wherein the target service interface corresponds to a target service type;
a service processing process grouping unit, configured to perform service processing process grouping on service processing processes to which services can be allocated and which correspond to the server according to the service interface types in the server, where each type of service interface corresponds to one service processing process group, and a service processing process in the service processing process group processes a service request data packet received in the service interface corresponding to the service type;
a service processing unit, configured to determine, according to the target service type, a service processing process packet identifier for processing the target service when processing the service request data packet of the message queue; determining a target service processing process group for processing the service request data packet according to the service processing process group identifier and monitoring a service processing process in the target service process group, wherein a service processing process group corresponding to a service type is preset in the server, and service processing processes in the same service processing process group comprise service processing processes of the same application server and/or service processing processes of different application servers; when the service request data packet of the message queue is processed, or when the time set by the timer is reached, selecting an idle service processing process from the target service processing process group to process the service request data packet, so as to obtain a service response data packet;
and the sending unit is used for returning the service response data packet to the client.
5. The server of claim 4, further comprising:
and a service interface registration unit, configured to register at least one type of service interface for exchanging data with the client before receiving the service request data packet from the client through a preset target service interface, or acquire a timing execution instruction set for the target service, and call a preset timer to register the target service, where the at least one type of service interface includes a target service interface corresponding to the target service type.
6. The server according to claim 4, wherein the service processing process grouping unit is specifically configured to:
when service grouping is carried out on service processing processes which can distribute services and correspond to the server, attributes are configured on the service processing processes, wherein the attributes comprise service processing process identifiers, service processing process grouping identifiers and work types, and the service processing process grouping identifiers correspond to the service types.
7. The server according to any one of claims 4 to 6, wherein the server further comprises an application server registration unit;
the application server registration unit is specifically configured to:
receiving a registration request of a target application server, wherein the registration request comprises service processing process information of allocable processing services;
performing grouping configuration of a service processing process for the target application server according to the registration request;
sending the grouping configuration information of the service processing process to the target application server;
wherein the packet configuration information includes: and the service processing process grouping identification of each service processing process in the target application server and the working type of the service processing process.
8. A server, comprising:
a memory for storing executable instructions;
a processor, configured to implement the service processing method according to any one of claims 1 to 3 when executing the executable instructions stored in the memory.
9. A computer-readable storage medium storing executable instructions for implementing the service processing method of any one of claims 1 to 3 when executed by a processor.
CN201611024606.4A 2016-11-15 2016-11-15 Service processing method and server Active CN106330769B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201611024606.4A CN106330769B (en) 2016-11-15 2016-11-15 Service processing method and server

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201611024606.4A CN106330769B (en) 2016-11-15 2016-11-15 Service processing method and server

Publications (2)

Publication Number Publication Date
CN106330769A CN106330769A (en) 2017-01-11
CN106330769B true CN106330769B (en) 2022-03-08

Family

ID=57817516

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201611024606.4A Active CN106330769B (en) 2016-11-15 2016-11-15 Service processing method and server

Country Status (1)

Country Link
CN (1) CN106330769B (en)

Families Citing this family (20)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106850830B (en) * 2017-02-28 2020-11-20 北京神州绿盟信息安全科技股份有限公司 Service request processing method, device and system and related server
CN108512814B (en) * 2017-02-28 2021-02-05 腾讯科技(北京)有限公司 Media data processing method, device and system
CN108920144B (en) * 2017-04-11 2022-02-01 北京京东尚科信息技术有限公司 Message processing method and device
CN108733476B (en) * 2017-04-20 2021-04-30 北京京东尚科信息技术有限公司 Method and device for executing multiple tasks
CN108874513A (en) * 2017-05-11 2018-11-23 北京京东尚科信息技术有限公司 Handle method, system, electronic equipment and the computer-readable medium of timed task
CN107742208A (en) * 2017-11-23 2018-02-27 中国平安财产保险股份有限公司 Vehicle is in danger querying method, device, equipment and the computer media of flow
CN109831466B (en) * 2017-11-23 2021-09-07 深圳市金证科技股份有限公司 Micro-service business processing method and nginx server
CN108765083B (en) * 2018-05-30 2023-06-02 平安科技(深圳)有限公司 Routing order configuration and processing method and system
CN108848037B (en) * 2018-05-31 2023-06-20 平安医疗科技有限公司 Service request processing method, device, computer equipment and storage medium
CN108961039B (en) * 2018-07-02 2023-03-31 创新先进技术有限公司 Transaction processing method, device and system
CN109359809A (en) * 2018-09-03 2019-02-19 中国平安人寿保险股份有限公司 Task distribution method, system, computer equipment and storage medium
CN109873863B (en) * 2019-01-18 2021-10-15 北京百度网讯科技有限公司 Asynchronous calling method and device of service
CN110764745B (en) * 2019-09-16 2024-02-02 平安科技(深圳)有限公司 Variable transmission and collection method, device and computer readable storage medium
CN111124692B (en) * 2020-01-02 2023-05-12 神州数码融信软件有限公司 Service request processing system
CN111277628B (en) * 2020-01-10 2021-09-21 腾讯科技(深圳)有限公司 Server configuration method and device and service server
CN111737012B (en) * 2020-07-31 2020-12-04 腾讯科技(深圳)有限公司 Data packet synchronization method, device, equipment and storage medium
CN112839084B (en) * 2021-01-04 2022-06-07 浙江诺诺网络科技有限公司 Service processing method, device, equipment and computer readable storage medium
CN113515369B (en) * 2021-04-23 2022-03-29 深圳希施玛数据科技有限公司 Data processing method, system, terminal and storage medium
CN113590362A (en) * 2021-08-10 2021-11-02 中孚信息股份有限公司 Inter-process message processing method and device, electronic equipment and storage medium
CN113791894A (en) * 2021-08-16 2021-12-14 新奇点智能科技集团有限公司 Road data processing system

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104572290A (en) * 2013-10-11 2015-04-29 中兴通讯股份有限公司 Method and device for controlling message processing threads
WO2015096681A1 (en) * 2013-12-27 2015-07-02 乐视网信息技术(北京)股份有限公司 Method and device for processing service access
CN104796465A (en) * 2015-04-08 2015-07-22 广州杰赛科技股份有限公司 Method and system for processing business of cloud platforms
CN105007192A (en) * 2015-08-05 2015-10-28 浪潮(北京)电子信息产业有限公司 Network interface management method and system, and network interface management server
CN105245588A (en) * 2015-09-28 2016-01-13 浪潮(北京)电子信息产业有限公司 Separation processing method of web service port

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104572290A (en) * 2013-10-11 2015-04-29 中兴通讯股份有限公司 Method and device for controlling message processing threads
WO2015096681A1 (en) * 2013-12-27 2015-07-02 乐视网信息技术(北京)股份有限公司 Method and device for processing service access
CN104796465A (en) * 2015-04-08 2015-07-22 广州杰赛科技股份有限公司 Method and system for processing business of cloud platforms
CN105007192A (en) * 2015-08-05 2015-10-28 浪潮(北京)电子信息产业有限公司 Network interface management method and system, and network interface management server
CN105245588A (en) * 2015-09-28 2016-01-13 浪潮(北京)电子信息产业有限公司 Separation processing method of web service port

Also Published As

Publication number Publication date
CN106330769A (en) 2017-01-11

Similar Documents

Publication Publication Date Title
CN106330769B (en) Service processing method and server
CN108737270B (en) Resource management method and device for server cluster
US20190377604A1 (en) Scalable function as a service platform
US10467725B2 (en) Managing access to a resource pool of graphics processing units under fine grain control
US10282229B2 (en) Asynchronous task management in an on-demand network code execution environment
US8584136B2 (en) Context-aware request dispatching in clustered environments
US9942273B2 (en) Dynamic detection and reconfiguration of a multi-tenant service
KR102341809B1 (en) System and method for supporting a bypass-domain model and a proxy model and updating service information for across-domain messaging in a transactional middleware machine environment
US9104488B2 (en) Support server for redirecting task results to a wake-up server
CN104462370A (en) Distributed task scheduling system and method
CN111858054B (en) Resource scheduling system and method based on edge computing in heterogeneous environment
US9229794B1 (en) Signaling service interface module
CN105592110B (en) Resource scheduling method and device
US10498817B1 (en) Performance tuning in distributed computing systems
CN108121599A (en) A kind of method for managing resource, apparatus and system
CN113014611A (en) Load balancing method and related equipment
US9268621B2 (en) Reducing latency in multicast traffic reception
CN108028806A (en) The method and apparatus that virtual resource is distributed in network function virtualization NFV networks
CN115640100B (en) Virtual machine information synchronization method and computer readable medium
CN109067573B (en) Traffic scheduling method and device
CN111835809A (en) Work order message distribution method, work order message distribution device, server and storage medium
US20180331934A1 (en) State synchronization for global control in a distributed security system
CN111913784A (en) Task scheduling method and device, network element and storage medium
CN111045778B (en) Virtual machine creation method, device, server and storage medium
Rashmi et al. Factors influencing job rejections in cloud environment

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant