CN110740187B - Method for realizing micro-service architecture - Google Patents

Method for realizing micro-service architecture Download PDF

Info

Publication number
CN110740187B
CN110740187B CN201911023352.8A CN201911023352A CN110740187B CN 110740187 B CN110740187 B CN 110740187B CN 201911023352 A CN201911023352 A CN 201911023352A CN 110740187 B CN110740187 B CN 110740187B
Authority
CN
China
Prior art keywords
service
gateway
external
internal
information
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
CN201911023352.8A
Other languages
Chinese (zh)
Other versions
CN110740187A (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.)
Home Interactive Xiamen Network Technology Co ltd
Original Assignee
Home Interactive Xiamen Network Technology Co ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Home Interactive Xiamen Network Technology Co ltd filed Critical Home Interactive Xiamen Network Technology Co ltd
Priority to CN201911023352.8A priority Critical patent/CN110740187B/en
Publication of CN110740187A publication Critical patent/CN110740187A/en
Application granted granted Critical
Publication of CN110740187B publication Critical patent/CN110740187B/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/51Discovery or management thereof, e.g. service location protocol [SLP] or web services
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L63/00Network architectures or network communication protocols for network security
    • H04L63/08Network architectures or network communication protocols for network security for authentication of entities
    • H04L63/0807Network architectures or network communication protocols for network security for authentication of entities using tickets, e.g. Kerberos
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/01Protocols
    • H04L67/10Protocols in which an application is distributed across nodes in the network
    • H04L67/1001Protocols in which an application is distributed across nodes in the network for accessing one among a plurality of replicated servers
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/14Session management
    • H04L67/141Setup of application sessions
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/08Protocols for interworking; Protocol conversion

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Computer Security & Cryptography (AREA)
  • Computer Hardware Design (AREA)
  • Computing Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Data Exchanges In Wide-Area Networks (AREA)
  • Computer And Data Communications (AREA)

Abstract

The invention realizes providing a uniform service entrance to the outside through the external gateway, and enables each sub-service to be more similar to the functions of the service through encapsulating the public modules of each service, such as a security authentication module and the like, thereby reducing the system redundancy, and simultaneously improving the development efficiency of service developers by enabling the external gateway to support the development habit of dynamic languages; through the internal gateway, the unified service entrance is provided internally, the isolation between the core service and the business service is ensured, the reliability of the core service is improved, and meanwhile, the development efficiency of bottom developers is improved by enabling the internal gateway to support the static language development habit.

Description

Method for realizing micro-service architecture
Technical Field
The invention belongs to the technical field of computer internet application, and particularly relates to a method for realizing a micro-service architecture.
Background
With the advent of the cloud era, current server programs are evolving into micro-service architectures. The micro-service architecture can decompose each service function module into discrete services, thereby reducing the coupling of the system, improving the expandability of the system, enabling the continuous integration and continuous deployment of software to be more convenient and faster, but inevitably facing new challenges, such as increased complexity of operation and maintenance, increased complexity of problem location, increased difficulty of system performance evaluation, and the like.
Currently, background service programs can be divided into a support system core functional service and a support business logic service according to functional differentiation. The core function service of the system requires to ensure the operation efficiency, so the system is mainly developed by a static language and a TCP/UDP protocol, such as c + +, java and the like; the business logic service requires to ensure development efficiency, so the development is mainly carried out by using a dynamic language and an HTTP/WEBSOCKET protocol, such as php, pyhon and the like. How to be compatible with different development modes brought by different development languages and different protocols in software development, the threshold of accessing a micro-service architecture is reduced, the development efficiency is improved, and the problem to be solved by the micro-service architecture is also solved.
Disclosure of Invention
Aiming at the defects in the prior art, the invention provides a set of highly reliable and easily-expanded micro-service architecture solution, the framework bottom layer is compiled by using golang, and the high performance and high concurrency of the architecture are ensured by using the golang protocol and the csp characteristics, and meanwhile, the transverse expansion is supported, and the high availability of the architecture is ensured. The architecture is mainly composed of the following basic components: an external gateway, an internal gateway and a service configuration center. The invention realizes providing a uniform service entrance to the outside through the external gateway, and enables each sub-service to be more similar to the functions of the service through encapsulating the public modules of each service, such as a security authentication module and the like, thereby reducing the system redundancy, and simultaneously improving the development efficiency of service developers by enabling the external gateway to support the development habit of dynamic languages; through the internal gateway, the unified service entrance is provided internally, the isolation between the core service and the business service is ensured, the reliability of the core service is improved, and meanwhile, the development efficiency of bottom developers is improved by enabling the internal gateway to support the static language development habit.
The invention adopts the following technical scheme:
a method for implementing a micro service architecture includes,
s1: the external service transmits the information M1 to the external gateway through the service configuration center;
s2, the external gateway receives the information M1, constructs a routing table and establishes connection with the external service;
s3: the internal gateway transmits the information M2 to the internal service and the external service through the service configuration center;
s4, the internal service receives the information M2, the internal service establishes connection with the internal gateway;
s5: the external service receives the information M2, and the external service establishes connection with the internal gateway;
s6: the client sends the information M3 to the external gateway, the external gateway processes the information to obtain information M4, and the information M4 is forwarded to external services;
s7: the external service receives the information M4, performs protocol conversion, and calls a corresponding processing function;
providing a uniform service entrance to the outside through an external gateway, so that the external gateway supports a dynamic language development habit; providing a uniform service entrance for the interior gateway through the interior gateway, so that the interior gateway supports a static language development habit; the external service is specifically a business service, and the internal service is specifically a core service.
The further optimization of the technical proposal also comprises that,
s8: the external service accesses the internal service, and the external service constructs information M5 and sends the information to the internal gateway;
s9: the interior gateway receives the information M5, performs fusing current limiting, routing distribution and load balancing, performs routing according to the target service ID, and sends the information M6 to the interior service;
s10, the internal service receives the information M6, returns the processing result information M7 to the internal gateway;
s11: after the internal gateway processes the information M7, the original path returns processing result information M8 to the external service;
s12: the external service processes the information M8 and returns processing result information M9 to the external gateway;
s13: the external gateway original path returns processing result information M10 to the client.
In the further optimization of the technical scheme, the method flow executed by the external service and the external gateway is as follows,
a1: the external service calls an external service registration module to register a message processing function and distributes configuration information to a service configuration center;
a2: the external gateway acquires external service information from the service configuration center, constructs a routing table and establishes connection with external services;
a3: the external gateway receives an external service request, calls an identity verification module to perform identity authentication, and calls a fusing current limiting module to perform fusing judgment and processing;
a4: the external gateway calls the routing module and the load balancing module to find an external service node to forward the request;
a5: the external gateway calls a protocol conversion module, encapsulates the request header and the request message body into private protocol message data, and forwards the private protocol message data to an external service node selected by A4;
a6: the external service receives the Request, calls a protocol conversion module, constructs a standard Request example and transmits the standard Request example to a corresponding processing function for processing;
a7: the external service records the link call information and returns the result.
The technical scheme is further optimized, and the identity verification module is realized based on an http token authentication mode.
In the further optimization of the technical scheme, the method flow executed by the internal service and the internal gateway is as follows,
b1: the internal gateway issues configuration information to a service configuration center;
b2: the internal service calls an internal service registration module to register a message processing function, and the internal service acquires internal gateway information from the service configuration center and establishes connection with the internal gateway information;
b3: the internal service calls an internal service registration module and sends registration service routing information to the internal gateway;
b4: the internal gateway receives the service registration message, performs admission verification and generates a routing table;
b5: the internal gateway receives the request message;
b6: the internal gateway calls a fusing current limiting module to perform fusing judgment and processing;
b7: the internal gateway calls a routing module and a load balancing module, and finds an internal service node to forward a request;
b8: the internal service receives the request message forwarded by the internal gateway and calls a corresponding message processing function to process the request message;
b9: the internal service records the link calling information and returns the result.
In the further optimization of the technical scheme, the data transmission mode of the interior gateway comprises unicast message and broadcast message.
According to the further optimization of the technical scheme, the fusing current limiting module is realized based on the use of a third party bag hystrix.
According to the technical scheme, further optimization is achieved, and the load balancing module is achieved by adopting a consistent hash algorithm.
The technical scheme is further optimized, and the protocol conversion is realized based on a standard http packet.
According to the technical scheme, the routing table is further optimized by using two-level mapping construction, so that multiple versions of the same service can be compatible, and updating iteration of the service is facilitated.
Compared with the prior art, the invention has the following beneficial effects:
1. the invention realizes a micro-service architecture, and solves the problem that the updating and repairing of large-scale integral application become more and more difficult along with the continuous increase of new requirements of the traditional integral architecture application development system (CRM, ERP and other large-scale application);
2. according to the invention, the external service processing function prototype is consistent with the standard http processing function, so that the migration of the web historical project is facilitated, and the development efficiency of web background developers is improved;
3. the internal service processing function prototype is very simple, and background developers can concentrate on the development function;
4. in the invention, the system public modules are uniformly realized on the gateway level, such as identity authentication, fusing current limiting, data statistics and the like, so that the redundancy of the system is greatly reduced;
5. the double gateways improve the isolation of the system and can ensure that the core service of the system is more reliable and safer. The invention provides external services through the external gateway, ensures core services through the internal gateway, and isolates the external environment from the internal environment by using the double gateways, thereby ensuring more reliability and safety of the system.
Drawings
FIG. 1 is a diagram illustrating an exemplary method according to an embodiment of the present invention;
fig. 2 is a flow chart of an external gateway;
FIG. 3 is an external service flow diagram;
FIG. 4 is a flow chart of an interior gateway;
FIG. 5 is an internal service flow diagram;
fig. 6 is a flow chart of route table generation and route distribution.
Detailed Description
To further illustrate the various embodiments, the invention provides the accompanying drawings. The accompanying drawings, which are incorporated in and constitute a part of this disclosure, illustrate embodiments of the invention and, together with the description, serve to explain the principles of the embodiments. Those skilled in the art will appreciate still other possible embodiments and advantages of the present invention with reference to these figures. Elements in the figures are not drawn to scale and like reference numerals are generally used to indicate like elements.
The invention will now be further described with reference to the accompanying drawings and detailed description.
Fig. 1 is a diagram illustrating a method according to an embodiment of the present invention. The method for implementing the micro-service architecture in the preferred embodiment of the invention comprises the following steps,
s1: the external service issues service information M1 to the service configuration center, and the service configuration center sends the information M1 to the external gateway;
s2: the external gateway receives the configuration information M1, constructs a routing table and establishes tcp connection with the external service;
s3: the internal gateway issues gateway information M2 to the service configuration center, and the service configuration center transmits the information M2 to the internal service and the external service;
s4: the internal service receives the configuration information M2 and establishes tcp connection with the internal gateway;
s5: the external service receives the configuration information M2 and is connected with the internal gateway connection tcp;
s6: the external gateway receives the client APP request information M3, performs identity authentication, fusing and current limiting, routing distribution and protocol conversion, encapsulates the http header and the message body into data M4 of private messages, and forwards the data to an external service;
s7: receiving data M4 by the external service, converting the protocol to construct a Request instance, and calling a corresponding processing message;
s8: the external service needs to access the internal service, and the external service constructs information M5 and sends the information to the internal gateway;
s9: the interior gateway receives the information M5, performs fusing current limiting, routing distribution and load balancing, performs routing according to the target service ID, and sends the information M6 to the interior service;
s10: the internal service receives the information M6, calls a corresponding processing function, records a call log and returns processing result information M7 to the internal gateway;
s11: the original path of the internal gateway returns processing result information M8 to the external service;
s12: the external service receives the processing result information M8, records a call log, and returns the processing result information M9 to the external gateway;
s13: the external gateway original path returns processing result information M10 to the client APP.
It should be noted that the external service and the internal service are two independent service systems, and the external service needs to access the internal service, and then the external service needs to call the internal service SDK to access the internal gateway according to the internal service flow.
Referring to fig. 2, a flowchart of the external gateway according to the embodiment is shown, and includes the following steps,
a11, monitoring external service information change of a service configuration center, constructing a routing table, and establishing tcp connection with external services;
a12, receiving a client request;
a13, authentication is carried out, if the authentication is successful, the step A13 is carried out, and if the authentication is failed, the step A12 is carried out;
the authentication is identity authentication, and the authentication mode has a plurality of modes, and the embodiment adopts a token-based identity authentication method: the method comprises the following steps:
1) the client requests login by using a user name and a password;
2) the server receives the request to verify the user name and the password of the client;
3) after the verification is successful, the server side issues a token and then sends the token to the client side;
4) the client receives and stores the token;
5) each time a client requests a resource from a server, a token is used to assign a specific header field (header fields include, but are not limited to: timestamp, random string, etc.) and transmit the signature to the server;
6) the server side generates a signature in the same step, compares the signature with the signature of the client side, and if the signature is the same, the identity authentication is successful; if not, the identity authentication fails.
A14, identifying the state of the fuse, if opening, going to step A12, closing, going to step A15;
a15, distributing routes, selecting service nodes, converting protocols and constructing private data;
and A16, the forwarding private data is timed out to wait correspondingly, and a result is returned.
Referring to fig. 3, a flow chart of the external service of the embodiment includes the following steps,
a20, registering a message processing function;
a21, issuing external service information to a service configuration center, and waiting for an external gateway to establish connection;
a22, receiving external gateway information;
a23, calling a protocol conversion module, constructing a Request instance, and calling a corresponding routing processing function;
and A24, recording the link information and returning the processing result.
The external services and appearance gateway implementation flow of this embodiment, includes the following steps,
a1: the external service calls an external service registration module to register a message processing function, and the function prototype is consistent with a standard http processing function, such as a function handler (rw http. responsewriter, r http. request), so as to adapt to the habit of a web developer;
traditional web backend projects (specifically implemented with golang) register service processing functions that are prototyped as: while the embodiment samples the same function prototype, seamless migration of history items can be achieved, and the expansion of the system is more convenient in the form of a registered service processing function.
A2: the external service issues configuration information to a service configuration center, wherein the configuration information comprises a service address, routing information and the like;
a3: the external gateway acquires external service information from the service configuration center, constructs a routing table and establishes tcp connection with the routing table;
a4: the external gateway receives the restful request and calls the identity module to perform identity authentication;
a5: the external gateway calls a fusing current limiting module to perform fusing judgment and processing;
a6: the external gateway calls the routing module and the load balancing module to find a proper external service node to forward the request;
a7: the external gateway calls a protocol conversion module, encapsulates the request header and the request message body into private protocol message data, and forwards the private protocol message data to an external service node selected by A6;
a8: the external service receives the Request, calls a protocol conversion module, constructs a Request example of a standard http library, and transmits the Request example to a corresponding processing function for processing;
a9: the external service records the link call information and returns the result.
Referring to fig. 4, a flow chart of the interior gateway is shown, which specifically includes the following steps,
b11, issuing gateway information to the service configuration center, waiting for the internal service to establish connection;
b12, receiving the internal service information and judging;
b13, if the message type is heartbeat message of the internal service, carrying out heartbeat response;
b14, if the message type is the registration message of the internal service, performing admission authentication on the internal service, and if the authentication is successful, generating a routing entry of the internal service;
b15, if the message type is a request message, performing the following steps:
a, executing a fusing current limiting process: judging whether the fusing is started or not, and if the fusing is started, refusing the service;
if not, executing step b.
b, route distribution: and searching for target service and carrying out load balancing.
And c, forwarding the message, setting timeout time and waiting for response.
And d, returning a response result.
Referring to fig. 5, an internal service flow diagram is shown, which specifically includes the following steps,
b20, registering a message handling function;
b21, obtaining the internal gateway information from the service configuration center, and establishing tcp connection with the internal gateway information;
b22, sending the registration message to the internal gateway for admission authentication;
b23, waiting for the gateway to forward the request message;
b24, calling a corresponding message processing function;
b25, recording the link information and returning the result.
The internal service processing function prototype is: a function handler (so, Socket, msg, Message), so is a connection handle for sending data; msg is customer data, which developers can directly perform corresponding logic processing.
The implementation flow of the internal service and the internal gateway of this embodiment includes the following steps,
b1: the internal gateway issues configuration information to a service configuration center, wherein the configuration information comprises a service address and the like;
b2: the internal service calls an internal service registration module to register a message processing function, wherein the function prototype is as follows: a function handler (so Socket, msg Message) for adapting to the habit of the developer at the back end of the static language;
b3: the internal service acquires the internal gateway information from the configuration center and establishes tcp connection with the internal gateway information;
b4: the internal service calls an internal service registration module to register service routing information including a service name, a service identifier, a node identifier and the like in the internal gateway;
b5: the internal gateway receives the service registration message, performs admission verification and generates a routing table;
b6: the internal gateway receives the request message;
b7: the internal gateway calls a fusing current limiting module to perform fusing judgment and processing;
b8: the internal gateway calls the routing module and the load balancing module to find a proper internal service node to forward the request;
b9: the internal service receives the request message forwarded by the internal gateway and calls a corresponding message processing function to process the request message;
b10: the internal service records the link calling information and returns the result.
Referring to fig. 6, a flow chart of route table generation and route distribution is shown.
The method comprises the following steps: the external gateway acquires the route information registered by the external service from the service configuration center.
Step two: and the external gateway extracts the address and the monitoring port of the external service from the routing information and establishes tcp connection with the external service.
Step three: and the external gateway generates a routing entry of the external service according to the routing information and the connection information established in the step two. The key of the first-level route is a service name for distinguishing different services; the key of the secondary route is a version number used for distinguishing different versions of the same service; the routing information includes a service node number, a load balancing weight, a connection socket, a service path list, etc.
Step four: the external gateway receives the client request (the URL of the request is agreed as:http://domain/name/ version/path) And finding out specific service according to the name in the URL, finding out specific version of the specific service according to version in the URL, and judging whether the external service provides the service of the corresponding path or not according to the path of the URL.
Step five: and calculating the service nodes with balanced load by using a consistent Hash algorithm.
Step six: and forwarding the request, setting timeout time and waiting for a processing result.
Step seven: and responding the processing result to the client.
While the invention has been particularly shown and described with reference to a preferred embodiment, it will be understood by those skilled in the art that various changes in form and detail may be made therein without departing from the spirit and scope of the invention as defined by the appended claims.

Claims (10)

1. A method for implementing a micro service architecture includes,
s1: the external service transmits the information M1 to the external gateway through the service configuration center;
s2, the external gateway receives the information M1, constructs a routing table and establishes connection with the external service;
s3: the internal gateway transmits the information M2 to the internal service and the external service through the service configuration center;
s4, the internal service receives the information M2, the internal service establishes connection with the internal gateway;
s5: the external service receives the information M2, and the external service establishes connection with the internal gateway;
s6: the client sends the information M3 to the external gateway, the external gateway processes the information to obtain information M4, and the information M4 is forwarded to external services;
s7: the external service receives the information M4, performs protocol conversion, and calls a corresponding processing function;
providing a uniform service entrance to the outside through an external gateway, so that the external gateway supports a dynamic language development habit; providing a uniform service entrance for the interior gateway through the interior gateway, so that the interior gateway supports a static language development habit; the external service is specifically a business service, and the internal service is specifically a core service.
2. The method of claim 1, further comprising,
s8: the external service accesses the internal service, and the external service constructs information M5 and sends the information to the internal gateway;
s9: the interior gateway receives the information M5, performs fusing current limiting, routing distribution and load balancing, performs routing according to the target service ID, and sends the information M6 to the interior service;
s10, the internal service receives the information M6, returns the processing result information M7 to the internal gateway;
s11: after the internal gateway processes the information M7, the original path returns processing result information M8 to the external service;
s12: the external service processes the information M8 and returns processing result information M9 to the external gateway;
s13: the external gateway original path returns processing result information M10 to the client.
3. The method of claim 1, wherein the external services and external gateways perform a method flow comprising,
a1: the external service calls an external service registration module to register a message processing function and distributes configuration information to a service configuration center;
a2: the external gateway acquires external service information from the service configuration center, constructs a routing table and establishes connection with external services;
a3: the external gateway receives an external service request, calls an identity verification module to perform identity authentication, and calls a fusing current limiting module to perform fusing judgment and processing;
a4: the external gateway calls the routing module and the load balancing module to find an external service node to forward the request;
a5: the external gateway calls a protocol conversion module, encapsulates the request header and the request message body into private protocol message data, and forwards the private protocol message data to an external service node selected by A4;
a6: the external service receives the Request, calls a protocol conversion module, constructs a standard Request example and transmits the standard Request example to a corresponding processing function for processing;
a7: the external service records the link call information and returns the result.
4. The method for implementing the micro service architecture as claimed in claim 3, wherein the identity verification module is implemented based on http token authentication.
5. The method of claim 1, wherein the internal services and the internal gateway execute a method flow as follows,
b1: the internal gateway issues configuration information to a service configuration center;
b2: the internal service calls an internal service registration module to register a message processing function, and the internal service acquires internal gateway information from the service configuration center and establishes connection with the internal gateway information;
b3: the internal service calls an internal service registration module and sends registration service routing information to the internal gateway;
b4: the internal gateway receives the service registration message, performs admission verification and generates a routing table;
b5: the internal gateway receives the request message;
b6: the internal gateway calls a fusing current limiting module to perform fusing judgment and processing;
b7: the internal gateway calls a routing module and a load balancing module, and finds an internal service node to forward a request;
b8: the internal service receives the request message forwarded by the internal gateway and calls a corresponding message processing function to process the request message;
b9: the internal service records the link calling information and returns the result.
6. The method of claim 1, wherein the data transmission modes of the interior gateway include unicast messages and broadcast messages.
7. The method for implementing the micro-service architecture as claimed in claim 3 or 5, wherein the fuse current limiting module is implemented based on using a third party package hystrix.
8. The method for implementing the micro service architecture according to claim 3 or 5, wherein the load balancing module is implemented by using a consistent hash algorithm.
9. A method for implementing a microservice architecture according to claim 1 or 3, characterised in that said protocol conversion is implemented on the basis of standard http packets.
10. The method of implementing the microservice architecture of claim 1, 3 or 5, wherein the routing table is constructed using a two-level mapping.
CN201911023352.8A 2019-10-25 2019-10-25 Method for realizing micro-service architecture Active CN110740187B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201911023352.8A CN110740187B (en) 2019-10-25 2019-10-25 Method for realizing micro-service architecture

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201911023352.8A CN110740187B (en) 2019-10-25 2019-10-25 Method for realizing micro-service architecture

Publications (2)

Publication Number Publication Date
CN110740187A CN110740187A (en) 2020-01-31
CN110740187B true CN110740187B (en) 2021-12-28

Family

ID=69271463

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201911023352.8A Active CN110740187B (en) 2019-10-25 2019-10-25 Method for realizing micro-service architecture

Country Status (1)

Country Link
CN (1) CN110740187B (en)

Families Citing this family (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112104640B (en) * 2020-09-11 2022-10-14 深圳前海微众银行股份有限公司 Data processing method, device and equipment of gateway and readable storage medium
CN112149079A (en) * 2020-10-22 2020-12-29 国网冀北电力有限公司经济技术研究院 Planning review management platform based on micro-service architecture and user access authorization method
CN112565093A (en) * 2020-12-11 2021-03-26 山东大学 Method and storage medium for realizing micro-service route dynamic change based on memory database
CN112738184B (en) * 2020-12-24 2022-11-18 上海家睦网络科技有限公司 Plug-in dynamic registration distributed micro-service gateway system
CN113014640B (en) * 2021-02-23 2023-06-20 北京明朝万达科技股份有限公司 Request processing method, request processing device, electronic equipment and storage medium
CN114124976B (en) * 2021-11-30 2024-06-25 北京中电普华信息技术有限公司 Service request processing system and method for realizing penetration of internal and external networks
CN114884752B (en) * 2022-07-11 2022-09-23 天津金城银行股份有限公司 Inline gateway system, inline loan service docking method, apparatus, and medium
CN114942856B (en) * 2022-07-22 2022-11-04 浙江中控技术股份有限公司 Data processing method and device of micro-service system and electronic equipment
CN117971799B (en) * 2023-12-14 2024-08-13 北京宇信科技集团股份有限公司 Data development platform and data development method

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101420455A (en) * 2007-08-30 2009-04-29 软件Ag公司 Systems and/or methods for streaming reverse http gateway, and network including the same
CN104410651A (en) * 2014-12-26 2015-03-11 浪潮通用软件有限公司 Enterprise information system architecture under mobile internet environment

Family Cites Families (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10673839B2 (en) * 2015-11-16 2020-06-02 Mastercard International Incorporated Systems and methods for authenticating network messages
US9921894B1 (en) * 2017-03-17 2018-03-20 Accenture Global Solutions Limited Extensible single point orchestration system for application program interfaces
CN108512748A (en) * 2018-03-21 2018-09-07 上海艾融软件股份有限公司 A kind of implementation method of micro services gateway
CN110324293B (en) * 2018-03-30 2021-12-28 阿里巴巴集团控股有限公司 Traffic data processing system and method
CN108965442A (en) * 2018-07-23 2018-12-07 珠海宏桥高科技有限公司 A kind of micro services infrastructure services dissemination system and model-based optimization method
CN109639572B (en) * 2018-12-06 2021-01-26 网易(杭州)网络有限公司 Route management method and device and micro-service system
CN110008271B (en) * 2019-04-04 2020-12-15 航天云网科技发展有限责任公司 Micro-service transaction submitting method based on single database
CN110287249A (en) * 2019-06-17 2019-09-27 中电科大数据研究院有限公司 A kind of service system based on micro services framework

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101420455A (en) * 2007-08-30 2009-04-29 软件Ag公司 Systems and/or methods for streaming reverse http gateway, and network including the same
CN104410651A (en) * 2014-12-26 2015-03-11 浪潮通用软件有限公司 Enterprise information system architecture under mobile internet environment

Also Published As

Publication number Publication date
CN110740187A (en) 2020-01-31

Similar Documents

Publication Publication Date Title
CN110740187B (en) Method for realizing micro-service architecture
US12052233B2 (en) Identity verification method for network function service and related apparatus
US10708376B2 (en) Message bus service directory
CN108650262B (en) Cloud platform expansion method and system based on micro-service architecture
US10645181B2 (en) Meta broker for publish-subscribe-based messaging
US10313858B2 (en) Service layer interworking using MQTT protocol
WO2017140216A1 (en) Method and device for network load balancing, control, and network interaction
US11856065B2 (en) Data transmission for service integration between a virtual private cloud and an intranet
JP2018536935A (en) Access request conversion method and apparatus
Nugur et al. Design and development of an IoT gateway for smart building applications
CN103095479A (en) Method and device of business configuration
WO2022007406A1 (en) K8s-based service deployment method, apparatus, device, and medium
US20060209830A1 (en) Packet processing system including control device and packet forwarding device
CN101848235A (en) Real-time multimedia data P2P transmission scheme for supporting NAT traversal
Nugur et al. Design and development of an iot gateway for smart building applications
CN103347087B (en) The service registry of a kind of structural P 2 P and UDDI and lookup method and system
Kookarinrat et al. Design and implementation of a decentralized message bus for microservices
CN104980484A (en) System and method for device registration and discovery in content-centric networks
WO2024193085A1 (en) Gateway service request processing method and device, and cloud native gateway system management method and device
CN113824685A (en) Mobile terminal directional flow proxy system and method realized based on Android VpnService
CN109922148B (en) Cross-platform service method, device and system
CN115567521A (en) Communication method and device between local area network and public cloud, and computing equipment
WO2024067338A1 (en) Cloud networking system, secure access method, and device and storage medium
CN108141704B (en) Location identification of previous network message processors
WO2018201367A1 (en) Node authentication method and node authentication system

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