CN113742100A - Service calling method, system, equipment and medium based on micro-service architecture - Google Patents

Service calling method, system, equipment and medium based on micro-service architecture Download PDF

Info

Publication number
CN113742100A
CN113742100A CN202110994820.7A CN202110994820A CN113742100A CN 113742100 A CN113742100 A CN 113742100A CN 202110994820 A CN202110994820 A CN 202110994820A CN 113742100 A CN113742100 A CN 113742100A
Authority
CN
China
Prior art keywords
service
group name
service provider
provider
micro
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
CN202110994820.7A
Other languages
Chinese (zh)
Other versions
CN113742100B (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.)
Oudian Cloud Information Technology Jiangsu Co ltd
Original Assignee
Oudian Cloud Information Technology Jiangsu 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 Oudian Cloud Information Technology Jiangsu Co ltd filed Critical Oudian Cloud Information Technology Jiangsu Co ltd
Priority to CN202110994820.7A priority Critical patent/CN113742100B/en
Priority claimed from CN202110994820.7A external-priority patent/CN113742100B/en
Publication of CN113742100A publication Critical patent/CN113742100A/en
Application granted granted Critical
Publication of CN113742100B publication Critical patent/CN113742100B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/547Remote procedure calls [RPC]; Web services
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/50Allocation of resources, e.g. of the central processing unit [CPU]
    • G06F9/5005Allocation of resources, e.g. of the central processing unit [CPU] to service a request
    • G06F9/5027Allocation of resources, e.g. of the central processing unit [CPU] to service a request the resource being a machine, e.g. CPUs, Servers, Terminals
    • G06F9/505Allocation of resources, e.g. of the central processing unit [CPU] to service a request the resource being a machine, e.g. CPUs, Servers, Terminals considering the load

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Stored Programmes (AREA)

Abstract

The invention discloses a method, a system, equipment and a medium for calling a service based on a micro-service architecture, wherein the method comprises the following steps: when a service calling party sends a service calling request carrying a service group name to a registration center, acquiring meta information carrying the service group name of a service provider from the registration center to obtain a service list; and if the service group name of the service provider matched with the service group name of the service caller is screened out from the service list, calling the service in the micro-service architecture corresponding to the service group name of the service provider. According to the invention, when the service calling party sends the service calling request to the registration center, the service list of the service provider is obtained from the registration center, and if the service group name of the service provider matched with the service group name of the service caller is screened from the service list, the service in the micro-service framework corresponding to the service group name of the service provider is called, so that the service can be called in a targeted manner based on the service group name, the influence among a plurality of different services is avoided, and the coding efficiency is improved.

Description

Service calling method, system, equipment and medium based on micro-service architecture
Technical Field
The invention relates to the technical field of computers, in particular to a method, a system, equipment and a medium for calling a service based on a micro-service architecture.
Background
With the development of the internet, the use of a microservice architecture is a common choice in enterprise-level software development, and the purpose of the microservice architecture is to split a complete system into a plurality of independently deployable components, each of which serves as an individual service, different service clusters are organized and managed through a registry, and communication between services is performed through a Remote Procedure Call (RPC) technology.
The micro-service architecture mainly comprises the following components: the system comprises a registration center, a service provider and a service caller. The registry is an independent middleware, can store meta information (such as addresses, ports and the like) of each service, and is mainly responsible for registration and discovery of the services. The service provider and the service caller are specific service instances, and one service can be used as the caller and the provider of the service at the same time. Each service registers its own access address to a registry, and different service clusters discover other service clusters through the registry, and after a service caller acquires an access address of a required service provider, the service caller can access the service provider through an RPC (remote procedure call).
Generally, a system using a microservice architecture is large, for example, 30 microservices, and a CPU (central processing unit) and a memory required by the microservice architecture are large, so that it is difficult to completely run on a development machine for development and debugging. However, a common method in the prior art is to set up a set of development environment shared by all developers, that is, to run all micro-services on a set of server, then run the micro-services in a single development on a development machine, and use the development environment to perform complete micro-service invocation and debugging. In the method, the micro-service running on the development machine and the micro-service running on the same name on the server can be automatically called by load balance, the micro-service on the development machine is unstable, and a breakpoint is more likely to be set in the development process, so that the development and debugging of other developers are influenced.
Disclosure of Invention
The invention provides a service calling method, a system, equipment and a medium based on a micro-service architecture, aiming at overcoming the defect that registration of a native service of a development machine to a public development environment in the prior art can cause other development machine services in the public development environment to be miscalled to the native service.
The invention solves the technical problems through the following technical scheme:
the invention provides a service calling method based on a micro-service architecture, which comprises the following steps:
when a service caller sends a service call request to a registry, acquiring meta-information of a service provider from the registry to obtain a service list of the service provider, wherein the service call request comprises a service group name of the service caller, and the meta-information of the service provider comprises the service group name of the service provider;
and if the service group name of the service provider matched with the service group name of the service caller is screened from the service list of the service provider, calling the service in the micro-service architecture corresponding to the service group name of the service provider.
Preferably, before the step of obtaining the meta information of the service provider from the registry to obtain the service list of the service provider when the service invoker sends the service invocation request to the registry, the service invocation method further includes:
and the service provider sends a registration request to the registration center, and stores the meta-information of the service provider to the registration center.
Preferably, the meta information of the service provider further includes IP address information and/or port information of the service provider, the service provider sends a registration request to a registry, and the step of storing the meta information of the service provider to the registry includes:
reading the connection information of the registration center in the configuration file;
and storing the IP address information of the service provider, the port information and/or the service group name of the service provider to the registration center according to the connection information.
Preferably, the connection information includes port information and/or an account password of the registry.
Preferably, before the step of acquiring the meta information of the service provider from the registry to obtain the service list of the service provider when the service invoker sends the service invocation request to the registry, the service invocation method includes:
the service calling party sends a connection request to the registry and reads the connection information of the registry in a configuration file;
and establishing communication connection between the service calling party and the registration center according to the connection information.
Preferably, if the service group name of the service provider matching the service group name of the service caller is screened from the service list of the service provider, the step of calling the service in the micro service architecture corresponding to the service group name of the service provider includes:
and if the service group name of the service provider matched with the service group name of the service caller is screened out from the service list of the service provider based on the load balancer, calling the service in the micro-service architecture corresponding to the service group name of the service provider.
Preferably, the service calling method further includes:
and if the service group names of the service providers matched with the service group name of the service caller are screened from the service list of the service providers, calling a service corresponding to the service group name of the service provider from any of a plurality of services in the micro service architecture corresponding to the service group names of the service providers according to a load balancing strategy.
Preferably, if the service group name of the service provider matching with the service group name of the service caller is not screened out from the service list of the service provider, the service in the public development environment is directly called.
A second aspect of the present invention provides a server, including a memory, a processor, and a computer program stored on the memory and executable on the processor, wherein the processor implements the micro service architecture based service invocation method according to the first aspect when executing the computer program.
A third aspect of the present invention provides a computer readable medium having stored thereon computer instructions which, when executed by a processor, implement the microservice architecture-based service invocation method according to the first aspect.
On the basis of the common knowledge in the field, the preferred conditions can be combined randomly to obtain the preferred embodiments of the invention.
The positive progress effects of the invention are as follows:
according to the method and the device, when the service calling party sends the service calling request to the registration center, the meta information of the service provider is obtained from the registration center to obtain the service list of the service provider, if the service group name of the service provider matched with the service group name of the service caller is screened out from the service list of the service provider, the service in the micro-service architecture corresponding to the service group name of the service provider is called, the required service can be called in a targeted mode based on the service group name, the influence among a plurality of different services is avoided, and the coding efficiency is improved.
Drawings
Fig. 1 is a first flowchart of a micro service architecture-based service invocation method according to embodiment 1 of the present invention.
Fig. 2 is a second flowchart of the micro service architecture based service invocation method according to embodiment 1 of the present invention.
Fig. 3 is a flowchart of step 100 of a micro service architecture based service invocation method according to embodiment 1 of the present invention.
Fig. 4 is a third flowchart of the micro service architecture-based service invocation method according to embodiment 1 of the present invention.
Fig. 5 is a fourth flowchart of a micro service architecture-based service invocation method according to embodiment 1 of the present invention.
Fig. 6 is a schematic structural diagram of an electronic device implementing a micro-service architecture based service invocation method according to embodiment 2 of the present invention.
Detailed Description
The invention is further illustrated by the following examples, which are not intended to limit the scope of the invention.
Example 1
In this embodiment, as shown in fig. 1, a service invocation method based on a micro-service architecture includes:
step 101, when a service caller sends a service call request to a registry, obtaining meta-information of a service provider from the registry to obtain a service list of the service provider, wherein the service call request comprises a service group name of the service caller, and the meta-information of the service provider comprises the service group name of the service provider;
in this embodiment, when the service caller initiates a service call request carrying a service group name of the service caller, the load balancer interfaces with the registry through an SDK (software development kit), and obtains meta information of all registered service providers from the registry, so as to obtain a service list of the service providers.
In this embodiment, the respective IP (international interconnection protocol) address information of the service provider and the service caller may be used as the respective service group names, that is, the IP address information of the service provider may be used as the service group name of the service provider, the IP address information of the service caller may be used as the service group name of the service caller, or other information of the service provider and the service caller may be used as the respective service group names, which is not specifically limited herein.
The service group name of the service provider and the service group name of the service caller may be the same or different.
For example, both the service provider and the service caller use respective IP address information as respective service group names; in the case that the service group name of the service provider and the service group name of the service invoker may be the same, for example, the service group names of the two are 192.168.1.10.
Step 102, if the service group name of the service provider matched with the service group name of the service caller is screened out from the service list of the service provider, step 103 is executed;
and 103, calling the service in the micro-service architecture corresponding to the service group name of the service provider.
In this embodiment, when a service caller calls a service, a load balancer filters service information of a specific access from a service list of a service provider, and then initiates an RPC call, specifically, the service list of the service provider is filtered by a service group name of the service caller, and if the service group name of the service provider matching the service group name of the service caller is filtered from the service list of the service provider (that is, if the service group name of the service provider identical to the service group name of the service caller is filtered from the service list of the service provider), a service in a micro-service framework corresponding to the service group name of the service provider is preferentially called.
The embodiment realizes the function of service call grouping by storing service grouping information in a registration center by the service itself and screening the service grouping information in the program according to the meta information of the service provider during calling. When a plurality of developers share one set of environment, the services of the developers and the services of others are not influenced by the characteristics of grouping, and because the group name is the IP address information used by the developers, the requests initiated on the machines of the developers can be preferentially called to the service providers started by the developers, and the tests of a plurality of different developers can be supported when the same set of public development environment is used. The implementation mode of using any mainstream registration center is simple and easy to understand, the operability is good, the cost for building a development environment can be greatly reduced while the code logic compatibility is strong, the coding efficiency is improved, and the development period is shortened.
In an implementation scheme, if a plurality of service group names of the service providers matched with the service group name of the service caller are screened from the service list of the service providers, a service corresponding to the service group name of the service provider is called from any of a plurality of services in the micro-service architecture corresponding to the service group names of the service providers according to a load balancing strategy.
In this embodiment, the service list of the service provider is filtered by the service group name of the service invoker (for example, the service group name of the service invoker is 192.168.1.10), and if a plurality of services with a service group of 192.168.1.10 are screened from the service list of the service provider (that is, if a plurality of service group names of service providers identical to the service group of the service invoker 192.168.1.10 are screened), one service is arbitrarily selected from a plurality of services in the micro-service framework corresponding to the service group names of the plurality of qualified service providers according to the load balancing policy, and the selected service is directly invoked. The required service can be invoked in a targeted manner based on the service group name, so that the influence among a plurality of different services is avoided, and the same public development environment can simultaneously support the test of a plurality of different developers.
In an implementable scenario, as shown in fig. 2, the service invocation method further includes:
step 100, the service provider sends a registration request to the registry, and stores the meta information of the service provider to the registry.
In this embodiment, when the service provider provides the service to the outside, the service provider sends a registration request to the registry, and the registry is docked by a Software Development Kit (SDK) to store the meta information of the service provider to the registry, so as to conveniently and normally provide the service to the outside.
In an implementable scenario, the meta information of the service provider further includes IP address information and/or port information of the service provider, as shown in fig. 3, step 100 includes:
step 1000, reading the connection information of the registration center in the configuration file;
and 10000, storing the IP address information, the port information and/or the service group name of the service provider to a registration center according to the connection information.
In an implementation, the connection information includes port information and/or an account password of the registry.
In this embodiment, information such as port information and an account password of a registration center in a configuration file is read, the registration center is docked by using an SDK according to the information of the registration center, IP address information, port information, and/or a service group name of a service provider are sent to the registration center by calling the registration port information provided by the registration center through the SDK to perform service registration (that is, after communication connection between the service provider and the registration center is established, the IP address information, the port information, and the service group name of the service provider (for example, the IP address information of the service provider is used as its own service group name) are saved in the registration center), and after the registration is completed, the service provider can normally provide services to the outside. For example, the service provider directly uses its own IP address information (for example, the IP address information is 192.168.1.10) as the service group name of the service provider.
In addition to storing the IP address information of the fixed service provider, in the present embodiment, a service group name of the service provider is additionally added to the meta information, for example, the service group name of the service provider added to the meta information is local Internet Protocol (IP) address information.
In an implementable scenario, as shown in fig. 4, the service invocation method further includes:
1001, the service calling party sends a connection request to a registry and reads the connection information of the registry in a configuration file;
step 1002, establishing communication connection between the service caller and the registration center according to the connection information.
In this embodiment, before the service caller calls the service, the service caller first sends a connection initiation request to the registry, then reads information such as port information and account password of the registry in the configuration file, and establishes a communication connection between the service caller and the registry based on the information of the registry, so as to respond to the service call request sent by the service caller.
In one implementation, step 102 includes:
if the service group name of the service provider matching the service group name of the service caller is screened from the service list of the service provider based on the load balancer, the above step 103 is executed.
In this embodiment, the service caller calls the service through the load balancer when calling the specific service, and the load balancer is a controller that processes the specific call request of the service caller.
Further, the load balancer screens out the service in the micro-service architecture corresponding to the service group name of the service provider with the same service group name as the service caller, acquires the IP address information and port information of the called service, makes an HTTP (request message from the client to the server) request for the service according to the IP address information and port information of the service, and returns the response obtained by the request to the service caller for subsequent service processing, wherein in the HTTP request, the service group name (for example 192.168.1.10) of the service caller is passed (i.e. the service group name of the service caller in the HTTP request is passed along with the call link to isolate different services), so that the downstream service can still preferentially call the service with the service group name of 192.168.1.10, and ensure that only the development service started locally by itself in the whole micro-service call link will be preferentially called, the local service caller can use the service in the public development environment, thus reducing the service which needs to be started locally, and the request of other development machines to the normal service can not be influenced by the service started locally due to the different service groups.
In an implementable scenario, as shown in fig. 5, the service invocation method further includes:
step 104, if the service group name of the service provider matched with the service group name of the service caller is not screened out from the service list of the service provider, step 105 is executed;
and step 105, directly calling the service in the public development environment.
In the embodiment, the local service provided with the service group name is called preferentially, and if the local service does not have the service identical to the service group name of the calling party, the service without the group name in the public development environment is called directly; it should be noted that, when a service on the public development environment is called, a service is generally randomly selected from the public development environment to be called directly.
In this embodiment, service groups are determined by setting service group names of service providers stored in a registry when a service provider is started, setting service group names of service callers in HTTP request content when RPC calls, and filtering and screening according to the service group names of the service callers when a specific called service address is selected after all services are acquired from the registry, and preferentially selecting a service with the same group name as the service invoker for calling. The method can pertinently call the required service based on the service group name, avoids the influence among a plurality of different services, enables a plurality of developers to share one set of development environment under the micro-service architecture, enables the calling among the services not to be influenced mutually, is simple in implementation mode and independent of a specific registration center, reduces the maintenance cost and improves the coding efficiency.
Example 2
Fig. 6 is a schematic structural diagram of an electronic device according to embodiment 2 of the present invention. The electronic device is a server, the server includes a memory, a processor, and a computer program stored in the memory and capable of running on the processor, and the processor implements the micro-service architecture based service invocation method of embodiment 1 when executing the program. The electronic device 30 shown in fig. 6 is only an example, and should not bring any limitation to the functions and the scope of use of the embodiment of the present invention.
As shown in fig. 6, the electronic device 30 may be embodied in the form of a general purpose computing device, which may be, for example, a server device. The components of the electronic device 30 may include, but are not limited to: the at least one processor 31, the at least one memory 32, and a bus 33 connecting the various system components (including the memory 32 and the processor 31).
The bus 33 includes a data bus, an address bus, and a control bus.
The memory 32 may include volatile memory, such as Random Access Memory (RAM)321 and/or cache memory 322, and may further include Read Only Memory (ROM) 323.
Memory 32 may also include a program/utility 325 having a set (at least one) of program modules 324, such program modules 324 including, but not limited to: an operating system, one or more application programs, other program modules, and program data, each of which, or some combination thereof, may comprise an implementation of a network environment.
The processor 31 executes various functional applications and data processing, such as the micro service architecture-based service calling method according to embodiment 1 of the present invention, by executing the computer program stored in the memory 32.
The electronic device 30 may also communicate with one or more external devices 34 (e.g., keyboard, pointing device, etc.). Such communication may be through input/output (I/O) interfaces 35. Also, model-generating device 30 may also communicate with one or more networks (e.g., a Local Area Network (LAN), a Wide Area Network (WAN), and/or a public network, such as the Internet) via network adapter 36. As shown in FIG. 6, network adapter 36 communicates with the other modules of model-generating device 30 via bus 33. It should be understood that although not shown in the figures, other hardware and/or software modules may be used in conjunction with the model-generating device 30, including but not limited to: microcode, device drivers, redundant processors, external disk drive arrays, RAID (disk array) systems, tape drives, and data backup storage systems, etc.
It should be noted that although in the above detailed description several units/modules or sub-units/modules of the electronic device are mentioned, such a division is merely exemplary and not mandatory. Indeed, the features and functionality of two or more of the units/modules described above may be embodied in one unit/module according to embodiments of the invention. Conversely, the features and functions of one unit/module described above may be further divided into embodiments by a plurality of units/modules.
Example 3
The present embodiment provides a computer-readable storage medium on which a computer program is stored, which when executed by a processor implements the micro service architecture based service invocation method of embodiment 1.
More specific examples, among others, that the readable storage medium may employ may include, but are not limited to: a portable disk, a hard disk, random access memory, read only memory, erasable programmable read only memory, optical storage device, magnetic storage device, or any suitable combination of the foregoing.
In a possible implementation, the invention may also be implemented in the form of a program product comprising program code for causing a terminal device to execute a method of invoking a service based on a micro-service architecture, which implements embodiment 1, when the program product is run on the terminal device.
Where program code for carrying out the invention is written in any combination of one or more programming languages, the program code may execute entirely on the user device, partly on the user device, as a stand-alone software package, partly on the user device and partly on a remote device or entirely on the remote device.
While specific embodiments of the invention have been described above, it will be appreciated by those skilled in the art that this is by way of example only, and that the scope of the invention is defined by the appended claims. Various changes and modifications to these embodiments may be made by those skilled in the art without departing from the spirit and scope of the invention, and these changes and modifications are within the scope of the invention.

Claims (10)

1. A service calling method based on micro service architecture is characterized in that the service calling method comprises the following steps:
when a service caller sends a service call request to a registry, acquiring meta-information of a service provider from the registry to obtain a service list of the service provider, wherein the service call request comprises a service group name of the service caller, and the meta-information of the service provider comprises the service group name of the service provider;
and if the service group name of the service provider matched with the service group name of the service caller is screened from the service list of the service provider, calling the service in the micro-service architecture corresponding to the service group name of the service provider.
2. The micro-service architecture based service invocation method according to claim 1, wherein before the step of obtaining the meta-information of the service provider from the registry to obtain the service list of the service provider when the service invocation party sends the service invocation request to the registry, the service invocation method further comprises:
and the service provider sends a registration request to the registration center, and stores the meta-information of the service provider to the registration center.
3. The micro-service architecture based service invocation method according to claim 2, wherein said service provider's meta-information further includes IP address information and/or port information of said service provider, said service provider sends a registration request to said registry, and the step of saving said service provider's meta-information to said registry comprises:
reading the connection information of the registration center in the configuration file;
and storing the IP address information of the service provider, the port information and/or the service group name of the service provider to the registration center according to the connection information.
4. The micro-services architecture based service invocation method according to claim 3, wherein said connection information comprises port information and/or account password of said registry.
5. The micro-service architecture based service invocation method according to claim 1, wherein before the step of obtaining the meta-information of the service provider from the registry to obtain the service list of the service provider when the service invocation party sends the service invocation request to the registry, the service invocation method comprises:
the service calling party sends a connection request to the registry and reads the connection information of the registry in a configuration file;
and establishing communication connection between the service calling party and the registration center according to the connection information.
6. The micro service architecture based service invocation method according to claim 1, wherein said step of invoking the service in the micro service architecture corresponding to the service group name of the service provider if the service group name of the service provider matching the service group name of the service invoker is screened from the service list of the service provider comprises:
and if the service group name of the service provider matched with the service group name of the service caller is screened out from the service list of the service provider based on the load balancer, calling the service in the micro-service architecture corresponding to the service group name of the service provider.
7. The microservice architecture-based service invocation method according to claim 1, wherein the service invocation method further comprises:
and if the service group names of the service providers matched with the service group name of the service caller are screened from the service list of the service providers, calling a service corresponding to the service group name of the service provider from any of a plurality of services in the micro service architecture corresponding to the service group names of the service providers according to a load balancing strategy.
8. The microservice-architecture-based service invocation method according to claim 1, wherein services in a common development environment are invoked directly if the service group name of the service provider matching the service group name of the service invoker is not screened from the service list of the service provider.
9. A server comprising a memory, a processor and a computer program stored on the memory and executable on the processor, wherein the processor implements the micro service architecture based service invocation method according to any one of claims 1-8 when executing the computer program.
10. A computer readable medium having stored thereon computer instructions, which when executed by a processor implement the microservice architecture-based service invocation method of any of claims 1-8.
CN202110994820.7A 2021-08-27 Service calling method, system, equipment and medium based on micro-service architecture Active CN113742100B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202110994820.7A CN113742100B (en) 2021-08-27 Service calling method, system, equipment and medium based on micro-service architecture

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202110994820.7A CN113742100B (en) 2021-08-27 Service calling method, system, equipment and medium based on micro-service architecture

Publications (2)

Publication Number Publication Date
CN113742100A true CN113742100A (en) 2021-12-03
CN113742100B CN113742100B (en) 2024-05-31

Family

ID=

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115914395A (en) * 2023-01-30 2023-04-04 禾多科技(北京)有限公司 Micro-service development method, device, equipment and medium

Citations (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2017185961A1 (en) * 2016-04-26 2017-11-02 中兴通讯股份有限公司 Method and apparatus for processing service discovery
CN107438107A (en) * 2017-09-05 2017-12-05 深圳乐信软件技术有限公司 The call method and device of background service in a kind of micro services framework
CN109257440A (en) * 2018-10-29 2019-01-22 南京南瑞信息通信科技有限公司 A kind of service discovery and client load equalization methods based on service register center
US20190104184A1 (en) * 2017-09-29 2019-04-04 Siemens Aktiengesellschaft Information processing method, apparatus, and system
WO2019104975A1 (en) * 2017-11-30 2019-06-06 平安科技(深圳)有限公司 Dubbo framework–based remote invoking method, server, and storage medium
CN110213382A (en) * 2019-06-12 2019-09-06 广州欢聊网络科技有限公司 A kind of dynamic domain name exchange method, device
CN110324177A (en) * 2019-05-31 2019-10-11 中国人民解放军国防科技大学 Service request processing method, system and medium under micro-service architecture
WO2019228515A1 (en) * 2018-05-31 2019-12-05 华为技术有限公司 Remote procedure call protocol self-adaptation method, related device, and server
CN110730197A (en) * 2018-07-17 2020-01-24 北京京东尚科信息技术有限公司 Service discovery method and system
CN110990047A (en) * 2019-11-06 2020-04-10 北京云思畅想科技有限公司 Fusion method and device for multiple microservice architectures
CN111131193A (en) * 2019-12-10 2020-05-08 四川新网银行股份有限公司 Distributed service governance method supporting multi-protocol heterogeneous non-code intrusion
US20200159591A1 (en) * 2018-11-16 2020-05-21 International Business Machines Corporation Application program interface based service lookup in a service architecture
CN111245901A (en) * 2019-12-31 2020-06-05 的卢技术有限公司 Distributed service registration discovery method and system supporting service parameter issuing
CN111615066A (en) * 2020-02-07 2020-09-01 中国海洋大学 Distributed micro-service registration and calling method based on broadcast
CN111866140A (en) * 2020-07-21 2020-10-30 腾讯科技(深圳)有限公司 Fusion management apparatus, management system, service calling method, and medium
CN112202605A (en) * 2020-09-27 2021-01-08 中国建设银行股份有限公司 Service configuration method, device, equipment and storage medium
CN112311869A (en) * 2020-10-28 2021-02-02 苏州万店掌网络科技有限公司 Multi-type micro-service registration center management system and method
CN113301166A (en) * 2021-06-16 2021-08-24 杭州华橙软件技术有限公司 Service calling method and device, storage medium and electronic device

Patent Citations (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2017185961A1 (en) * 2016-04-26 2017-11-02 中兴通讯股份有限公司 Method and apparatus for processing service discovery
CN107438107A (en) * 2017-09-05 2017-12-05 深圳乐信软件技术有限公司 The call method and device of background service in a kind of micro services framework
US20190104184A1 (en) * 2017-09-29 2019-04-04 Siemens Aktiengesellschaft Information processing method, apparatus, and system
WO2019104975A1 (en) * 2017-11-30 2019-06-06 平安科技(深圳)有限公司 Dubbo framework–based remote invoking method, server, and storage medium
WO2019228515A1 (en) * 2018-05-31 2019-12-05 华为技术有限公司 Remote procedure call protocol self-adaptation method, related device, and server
CN110730197A (en) * 2018-07-17 2020-01-24 北京京东尚科信息技术有限公司 Service discovery method and system
CN109257440A (en) * 2018-10-29 2019-01-22 南京南瑞信息通信科技有限公司 A kind of service discovery and client load equalization methods based on service register center
US20200159591A1 (en) * 2018-11-16 2020-05-21 International Business Machines Corporation Application program interface based service lookup in a service architecture
CN110324177A (en) * 2019-05-31 2019-10-11 中国人民解放军国防科技大学 Service request processing method, system and medium under micro-service architecture
CN110213382A (en) * 2019-06-12 2019-09-06 广州欢聊网络科技有限公司 A kind of dynamic domain name exchange method, device
CN110990047A (en) * 2019-11-06 2020-04-10 北京云思畅想科技有限公司 Fusion method and device for multiple microservice architectures
CN111131193A (en) * 2019-12-10 2020-05-08 四川新网银行股份有限公司 Distributed service governance method supporting multi-protocol heterogeneous non-code intrusion
CN111245901A (en) * 2019-12-31 2020-06-05 的卢技术有限公司 Distributed service registration discovery method and system supporting service parameter issuing
CN111615066A (en) * 2020-02-07 2020-09-01 中国海洋大学 Distributed micro-service registration and calling method based on broadcast
CN111866140A (en) * 2020-07-21 2020-10-30 腾讯科技(深圳)有限公司 Fusion management apparatus, management system, service calling method, and medium
CN112202605A (en) * 2020-09-27 2021-01-08 中国建设银行股份有限公司 Service configuration method, device, equipment and storage medium
CN112311869A (en) * 2020-10-28 2021-02-02 苏州万店掌网络科技有限公司 Multi-type micro-service registration center management system and method
CN113301166A (en) * 2021-06-16 2021-08-24 杭州华橙软件技术有限公司 Service calling method and device, storage medium and electronic device

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
张晶;王琰洁;黄小锋;: "一种微服务框架的实现", 计算机系统应用, no. 04, 15 April 2017 (2017-04-15) *
李春阳;刘迪;崔蔚;李晓珍;李春岐;: "基于微服务架构的统一应用开发平台", 计算机系统应用, no. 04 *

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115914395A (en) * 2023-01-30 2023-04-04 禾多科技(北京)有限公司 Micro-service development method, device, equipment and medium

Similar Documents

Publication Publication Date Title
CN112118565B (en) Multi-tenant service gray level publishing method, device, computer equipment and storage medium
CN109547570B (en) Service registration method, device, registration center management equipment and storage medium
AU2019257143B2 (en) Policy based service routing
US7421620B2 (en) Configuration proxy service for the extended firmware interface environment
US20180322162A1 (en) Query dispatch and execution architecture
US7937455B2 (en) Methods and systems for modifying nodes in a cluster environment
US6748525B1 (en) Method and apparatus for sending boot programs to workstation computers over a network in a controlled process
GB2594108A (en) Methods, systems and computer readable media for self-replicating cluster appliances
US20130080628A1 (en) System and method for dynamic discovery of origin servers in a traffic director environment
US20070260868A1 (en) Booting an operating system in discrete stages
CN113742105B (en) Method, device and medium for adapting micro-service framework
US20120005520A1 (en) Simplifying automated software maintenance of data centers
US20100262815A1 (en) Detection Mechanism for System Image Class
US20040172629A1 (en) Segmented virtual machine
US20020007410A1 (en) Scalable java servers for network server applications
WO2019085290A1 (en) Test preparation method and apparatus, terminal device, and storage medium
US20040143654A1 (en) Node location management in a distributed computer system
CN111510330A (en) Interface management apparatus, method and storage medium
WO2021135117A1 (en) Communication method, apparatus and device for node and chaincode in blockchain, and storage medium
WO2018146671A1 (en) Dynamically adaptive cloud computing infrastructure
CN113434283B (en) Service scheduling method and device, server and computer readable storage medium
CN113918174A (en) Bare metal server deployment method, deployment controller and server cluster
CN113742100B (en) Service calling method, system, equipment and medium based on micro-service architecture
CN112256351A (en) Implementation method of Feign component, micro-service calling method and device
CN113742100A (en) Service calling method, system, equipment and medium based on micro-service architecture

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