WO2021047252A1 - 多环境下的网关自动路由方法、装置、设备及存储介质 - Google Patents

多环境下的网关自动路由方法、装置、设备及存储介质 Download PDF

Info

Publication number
WO2021047252A1
WO2021047252A1 PCT/CN2020/099579 CN2020099579W WO2021047252A1 WO 2021047252 A1 WO2021047252 A1 WO 2021047252A1 CN 2020099579 W CN2020099579 W CN 2020099579W WO 2021047252 A1 WO2021047252 A1 WO 2021047252A1
Authority
WO
WIPO (PCT)
Prior art keywords
interface path
isolation identifier
service request
environment
identifier
Prior art date
Application number
PCT/CN2020/099579
Other languages
English (en)
French (fr)
Inventor
郑炳秋
Original Assignee
平安科技(深圳)有限公司
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 平安科技(深圳)有限公司 filed Critical 平安科技(深圳)有限公司
Publication of WO2021047252A1 publication Critical patent/WO2021047252A1/zh

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L45/00Routing or path finding of packets in data switching networks
    • H04L45/30Routing of multiclass traffic
    • 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
    • H04L67/63Routing a service request depending on the request content or context

Definitions

  • This application relates to the field of cloud technology, and in particular to a gateway automatic routing method, device, equipment, and storage medium in multiple environments.
  • the gateway is responsible for forwarding service requests to the correct microservice component for processing according to the routing strategy.
  • the gateway is responsible for forwarding service requests to the correct microservice component for processing according to the routing strategy.
  • the same microservice component has the same interface in different environments.
  • the gateway cannot decide to change the interface. Which environment of the corresponding microservice component the request is routed to.
  • a gateway automatic routing method in multiple environments includes the following steps:
  • the interface path includes the environment isolation identifier, determine the microservice component corresponding to the service request according to the interface path and the environment isolation identifier;
  • the service request is sent to the corresponding microservice component for processing, and the processing result is received, and the processing result is returned to the client.
  • this application proposes a computer device that includes a memory and a processor, and computer-readable instructions are stored in the memory.
  • the processor executes the following steps:
  • the interface path includes the environment isolation identifier, determine the microservice component corresponding to the service request according to the interface path and the environment isolation identifier;
  • the service request is sent to the corresponding microservice component for processing, and the processing result is received, and the processing result is returned to the client.
  • this application proposes a storage medium that can be read and written by a processor, the storage medium stores computer-readable instructions, and the computer-readable instructions are executed by one or more processors When, make one or more processors execute the following steps:
  • the interface path includes the environment isolation identifier, determine the microservice component corresponding to the service request according to the interface path and the environment isolation identifier;
  • the service request is sent to the corresponding microservice component for processing, and the processing result is received, and the processing result is returned to the client.
  • this application proposes a gateway automatic routing device in multiple environments, including the following modules:
  • the receiving module is used to receive the service request sent by the user terminal, and extract the interface path from the service request;
  • the query module is used to traverse the preset interface path classification table containing the environmental isolation identifier to query whether the interface path includes the environmental isolation identifier;
  • a processing module configured to determine the microservice component corresponding to the service request according to the interface path and the environment isolation identifier if the interface path includes the environment isolation identifier;
  • the sending module is used to send the service request to the corresponding microservice component for processing, receive the processing result, and return the processing result to the client.
  • the present application uses the environment isolation identification to solve the current problem that the gateway cannot decide which test environment of the corresponding microservice component to route the interface request to.
  • FIG. 1 is an overall flowchart of a gateway automatic routing method in multiple environments in an embodiment of the present application
  • FIG. 2 is a schematic diagram of a process of extracting an interface path in a gateway automatic routing method under multiple environments in an embodiment of the present application;
  • FIG. 3 is a schematic diagram of a process of determining microservice components in a method for automatic gateway routing in multiple environments in an embodiment of the present application
  • Fig. 4 is a structural diagram of a gateway automatic routing device in multiple environments in an embodiment of the present application.
  • FIG. 1 is an overall flowchart of a gateway automatic routing method in multiple environments in an embodiment of the present application.
  • a gateway automatic routing method in multiple environments includes the following steps:
  • S1 Receive a service request sent by a user terminal, and extract an interface path from the service request;
  • the service request refers to a request for a microservice component to provide a corresponding functional service under the microservice architecture.
  • the correction component provides correction function services
  • the printing component provides printing function services
  • the query component provides data (such as insurance policies, Batch order, etc.) query function service. If you need to query the insurance policy data, you can send a service request to the gateway.
  • the service request contains the interface path.
  • the corresponding query component can be matched in the routing policy file, and the service request is forwarded to
  • the query component can provide query services.
  • the interface path of the query component is /query/policy; when there are multiple test environments, the interface path usually carries an environment isolation identifier.
  • the preset interface path classification table containing environmental isolation identifiers is preset, and all interface paths containing different environmental isolation identifiers are recorded in the classification table.
  • the environment isolation identifier is in the form of a string. If the interface path contains the environment isolation identifier, the environment isolation identifier is usually attached to the interface path. For example, the interface path with the environment isolation identifier of the query component is /query_stg1/policy, where The "_stg1" is the environmental isolation identifier.
  • the traversing a preset interface path classification table containing an environmental isolation identifier, and querying whether the interface path includes an environmental isolation identifier includes:
  • the interface path is queried in the preset interface path classification table containing the environment isolation identifier, it is determined that the interface path includes the environment isolation identifier; otherwise, it is determined that the interface path does not include the environment isolation identifier.
  • the interface path includes the environment isolation identifier, determine the microservice component corresponding to the service request according to the interface path and the environment isolation identifier;
  • different environment isolation identifiers correspond to different microservice components.
  • the correction component in the microservice component provides correction function services
  • the printing component provides printing function services
  • the query component provides data (such as insurance policies, batch orders, etc.) Query functional services.
  • the environment isolation identifier corresponding to the correction component is "query_stg1" in the interface path /query_stg1/policy, that is, if there is "query_stg1" in the interface path, then the interface path corresponds to the correction component.
  • the processing result of the microservice component can be a normal result or an abnormal result.
  • the processing result Before the processing result of the microservice component is returned to the client, the processing result can be classified. If it is a normal result, it will be returned directly. An abnormal result is assigned an abnormal label.
  • FIG. 2 is a schematic diagram of the interface path extraction process in a gateway automatic routing method under multiple environments in an embodiment of the present application.
  • the S1 includes:
  • S101 Receive multiple service requests sent by a user terminal through a preset receiving portal, and extract level information of the service request from each of the service requests;
  • the level of the service request can be divided into ordinary, urgent, urgent, etc. According to the different level of the service request, the service request with the level of "urgent" is generally prioritized.
  • S102 Perform hierarchical ordering of the service requests according to the level information of the service requests
  • the sorting rule is that it is preferable to rank service requests with a level of "urgent” as priority tasks, and tasks with a level of "urgent” are ranked behind "urgent".
  • the sub-information about the interface path at the same level is extracted in parallel, thereby accelerating the speed of obtaining the interface path and improving the efficiency of path selection.
  • Fig. 3 is a schematic diagram of the process of determining microservice components in a gateway automatic routing method under multiple environments in an embodiment of the present application. As shown in the figure, the S3 includes:
  • step S301 the method further includes the following steps:
  • a preset extraction rule extract a first character string determined by a first designated characteristic character and a first designated position from the interface path, wherein the first designated position refers to the position of the first designated characteristic character ;
  • the preset extraction rule refers to extracting the characteristic characters of the specified type and the specified position, such as "/endorse_stg1/quote", extracting the characteristic character of the specified type as "/”, and the characteristic character of the specified position as the first "/”
  • the interface path wherein the second designated position refers to the position of the second designated characteristic character, and the second designated characteristic character is different from the first designated characteristic character.
  • intercept the second characteristic character of the specified type and position in the first character string and the second character string after the second characteristic character for example, intercept the "_" characteristic character and “_” in "endorse_stg1"
  • the second character string "stg1" after the characteristic character, the intercepted "_stg1” is the environmental isolation identifier, and the "_stg1" is removed from the interface path to obtain the interface path without the environmental isolation identifier.
  • the corresponding relationship between the interface path and the microservice component is recorded in the routing policy file.
  • the microservice component corresponding to the interface path "/endorse/quote" is a.
  • the interface path in the routing policy file does not contain the environment isolation identifier, so the environment isolation identifier must be removed to find the application name of the corresponding microservice component in the routing policy file.
  • the environment isolation identifier separated from the interface path is added after the application name of the microservice component to obtain the application name of the microservice component containing the environment isolation identifier;
  • the microservice component when deployed to the runtime environment, its application name will be registered in the registry (the microservice component may have multiple servers, and the IP and port of each server will be recorded in the registry after registration).
  • the service name of the correction component registered in the registry is a
  • the request interface /endorse/quote matches the microservice component a from the routing rule set
  • the gateway finds the server with the service name a from the configuration center Address, which forwards the interface to the correcting component a.
  • the service name of the correction component running on the test environment stg1 registered in the registry is a_stg1
  • the request interface /endorse_stg1/quote is /endorse/quote after removing the environment isolation identifier
  • the matching microservice component is a
  • the gateway checks whether the service name exists in the registry based on a_stg1. If it exists, it obtains the server address of the component, and then forwards the interface request to the test environment stg1 Correction components.
  • the gateway will have a default solution, such as forwarding to the test environment stg1 by default.
  • the environment isolation identifier is flexible.
  • the environment isolation identifier is effectively separated from the interface path, thereby improving the efficiency of searching for microservice components.
  • the S4 includes:
  • this embodiment there are three terminals, which are a local server, a cloud server, and a client, respectively, and the execution subject of this embodiment is the local server.
  • the feedback information can be divided into several sub-segments, and the rules for sub-segment division are special symbols, such as ",”, ";” and other punctuation marks. Then the result characteristic character recognition is performed on the characters in each sub-segment, and the result characteristic characters are preset in the database, which can be retrieved from the database and then compared.
  • the server address is used to accurately send the processing result of the microservice component to the corresponding user end, thereby avoiding the result error caused by improper selection of the microservice component.
  • the automatic gateway routing method in multiple environments further includes:
  • the interface path does not include the environment isolation identifier, search for the application name of the microservice component corresponding to the interface path in a preset routing policy file according to the interface path, and according to the microservice component
  • the application name of searches the corresponding microservice components in multiple environments in the registry, and sends the service request to the microservice components in any environment for processing.
  • a gateway automatic routing device in multiple environments includes a receiving module 10, a query module 20, a processing module 30, and a sending module 40. Specifically:
  • the receiving module 10 is configured to receive a service request sent by a user terminal, and extract an interface path from the service request;
  • the query module 20 is configured to traverse a preset interface path classification table containing an environmental isolation identifier to query whether the interface path includes an environmental isolation identifier;
  • the processing module 30 is configured to, if the interface path includes the environment isolation identifier, determine the microservice component corresponding to the service request according to the interface path and the environment isolation identifier;
  • the sending module 40 is configured to send the service request to the corresponding microservice component for processing, receive the processing result, and return the processing result to the client.
  • receiving module 10 is also used for:
  • query module 20 is also used for:
  • the interface path is queried in the preset interface path classification table containing the environment isolation identifier, it is determined that the interface path includes the environment isolation identifier; otherwise, it is determined that the interface path does not include the environment isolation identifier.
  • processing module 30 is also used for:
  • the interface path includes the environment isolation identifier, separating the environment isolation identifier from the interface path to obtain an interface path without the environment isolation identifier;
  • the application name of the microservice component with the environment isolation identifier search the registry for the target microservice component corresponding to the application name with the same environment isolation identifier, where the target microservice component is the microservice component corresponding to the service request .
  • processing module 30 is also used for:
  • a preset extraction rule extract a first character string determined by a first designated characteristic character and a first designated position from the interface path, wherein the first designated position refers to the position of the first designated characteristic character ;
  • the interface path wherein the second designated position refers to the position of the second designated characteristic character, and the second designated characteristic character is different from the first designated characteristic character.
  • sending module 40 is also used for:
  • the automatic gateway routing device in multiple environments further includes:
  • the search module is configured to, if the interface path does not include the environment isolation identifier, search for the application name of the microservice component corresponding to the interface path in the preset routing policy file according to the interface path, and according to The application name of the microservice component searches the corresponding microservice component in multiple environments in the registry, and sends the service request to the microservice component in any environment for processing.
  • a computer device in one embodiment, includes a memory and a processor.
  • the memory stores computer-readable instructions.
  • the processor executes the foregoing embodiments. The steps of the gateway automatic routing method in the multi-environment described in.
  • a storage medium storing computer-readable instructions.
  • the computer-readable instructions are executed by one or more processors, the one or more processors execute all of the foregoing embodiments.
  • the steps of the gateway automatic routing method under multiple environments are described.
  • the storage medium may be a non-volatile storage medium or a volatile storage medium.
  • the program can be stored in a computer-readable storage medium, and the storage medium can include: Read only memory (ROM, Read Only Memory), random access memory (RAM, Random Access Memory), magnetic disk or optical disk, etc.

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Data Exchanges In Wide-Area Networks (AREA)

Abstract

本申请涉及云技术领域,尤其涉及一种多环境下的网关自动路由方法、装置、设备及存储介质,包括:接收用户端发送的服务请求,从所述服务请求中提取接口路径;遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识;若所述接口路径包含所述环境隔离标识,则根据所述接口路径和所述环境隔离标识确定所述服务请求对应的微服务组件;将所述服务请求发送给所述服务请求对应的微服务组件进行处理,并接收处理结果,将所述处理结果返回给所述用户端。本申请过环境隔离标识,很好的解决了目前网关无法决策将接口请求路由给对应微服务组件的哪个测试环境的问题。

Description

多环境下的网关自动路由方法、装置、设备及存储介质
本申请要求于2019年9月9日提交中国专利局、申请号为201910846020.3,发明名称为“多环境下的网关自动路由方法及相关设备”的中国专利申请的优先权,其全部内容通过引用结合在申请中。
技术领域
本申请涉及云技术领域,尤其涉及一种多环境下的网关自动路由方法、装置、设备及存储介质。
背景技术
微服务架构下,网关负责根据路由策略将服务请求转发给正确的微服务组件处理。一般地,微服务组件的接口和微服务是一一对应的。
发明人意识到,在迭代开发中,微服务组件会有多套测试环境用于不同版本的测试,相同的微服务组件在不同的环境中具有相同的接口,这种情况下网关无法决策将接口请求路由给对应微服务组件的哪个环境。
发明内容
基于此,针对目前网关无法决策,将接口请求路由给对应微服务组件的测试环境的问题,提供一种多环境下的网关自动路由方法、装置、设备及存储介质。
一种多环境下的网关自动路由方法,包括如下步骤:
接收用户端发送的服务请求,从所述服务请求中提取接口路径;
遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识;
若所述接口路径包含所述环境隔离标识,则根据所述接口路径和所述环境隔离标识确定所述服务请求对应的微服务组件;
将所述服务请求发送给对应的微服务组件进行处理,并接收处理结果,将所述处理结果返回给所述用户端。
基于相同的构思,本申请提出了一种计算机设备,所述计算机设备包括存储器和处理器,所述存储器中存储有计算机可读指令,所述计算机可读指令被所述处理器执行时,使得所述处理器执行如下步骤:
接收用户端发送的服务请求,从所述服务请求中提取接口路径;
遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识;
若所述接口路径包含所述环境隔离标识,则根据所述接口路径和所述环境隔离标识确定所述服务请求对应的微服务组件;
将所述服务请求发送给对应的微服务组件进行处理,并接收处理结果,将所述处理结果返回给所述用户端。
基于相同的构思,本申请提出了一种存储介质,所述存储介质可被处理器读写,所述存储介质存储有计算机可读指令,所述计算机可读指令被一个或多个处理器执行时,使得一个或多个处理器执行如下步骤:
接收用户端发送的服务请求,从所述服务请求中提取接口路径;
遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识;
若所述接口路径包含所述环境隔离标识,则根据所述接口路径和所述环境隔离标识确 定所述服务请求对应的微服务组件;
将所述服务请求发送给对应的微服务组件进行处理,并接收处理结果,将所述处理结果返回给所述用户端。
基于相同的构思,本申请提出了一种多环境下的网关自动路由装置,包括如下模块:
接收模块,用于接收用户端发送的服务请求,从所述服务请求中提取接口路径;
查询模块,用于遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识;
处理模块,用于若所述接口路径包含所述环境隔离标识,则根据所述接口路径和所述环境隔离标识确定所述服务请求对应的微服务组件;
发送模块,用于将所述服务请求发送给对应的微服务组件进行处理,并接收处理结果,将所述处理结果返回给所述用户端。
与现有技术相比,本申请通过环境隔离标识,很好的解决了目前网关无法决策将接口请求路由给对应微服务组件的哪个测试环境的问题。
附图说明
通过阅读下文优选实施方式的详细描述,各种其他的优点和益处对于本领域普通技术人员将变得清楚明了。附图仅用于示出优选实施方式的目的,而并不认为是对本申请的限制。
图1为本申请在一个实施例中的一种多环境下的网关自动路由方法的整体流程图;
图2为本申请在一个实施例中的一种多环境下的网关自动路由方法中的提取接口路径过程示意图;
图3为本申请在一个实施例中的一种多环境下的网关自动路由方法中的确定微服务组件过程示意图;
图4为本申请在一个实施例中的一种多环境下的网关自动路由装置的结构图。
具体实施方式
为了使本申请的目的、技术方案及优点更加清楚明白,以下结合附图及实施例,对本申请进行进一步详细说明。应当理解,此处所描述的具体实施例仅仅用以解释本申请,并不用于限定本申请。
本技术领域技术人员可以理解,除非特意声明,这里使用的单数形式“一”、“一个”、“所述”和“该”也可包括复数形式。应该进一步理解的是,本申请的说明书中使用的措辞“包括”是指存在所述特征、整数、步骤、操作、元件和/或组件,但是并不排除存在或添加一个或多个其他特征、整数、步骤、操作、元件、组件和/或它们的组。
图1为本申请在一个实施例中的一种多环境下的网关自动路由方法的整体流程图,一种多环境下的网关自动路由方法,包括以下步骤:
S1、接收用户端发送的服务请求,从所述服务请求中提取接口路径;
其中,所述服务请求是指在微服务架构下,请求微服务组件提供相应的功能服务。比如,微服务架构下,系统会按功能划分成多个微服务组件,以restful接口形式对外提供服务,批改组件提供批改的功能服务,打印组件提供打印功能服务,查询组件提供数据(比如保单、批单等)查询功能服务。如果需要查询保单数据,则可以向网关发送服务请求,所述服务请求中包含有接口路径,根据所述接口路径,在路由策略文件中可以匹配到相应的查询组件,将所述服务请求转发给该查询组件即可以提供查询服务。具体的,当只有一套测试环境时,查询组件的接口路径为/query/policy;当有多套测试环境时,接口路径通常会带上环境隔离标识。
S2、遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识;
其中,预设的含有环境隔离标识的接口路径分类表是预先设置的,在该分类表中,记录了所有含有不同环境隔离标识的接口路径。环境隔离标识是字符串的形式,如果接口路径上含有环境隔离标识,则环境隔离标识通常是附带在接口路径上,比如,查询组件的带有环境隔离标识的接口路径为/query_stg1/policy,其中的“_stg1”即为环境隔离标识。
在一个实施例中,所述遍历预设的含有环境隔离标识的接口路径分类表,查询所述接口路径是否包含环境隔离标识,包括:
调取预设的含有环境隔离标识的接口路径分类表,根据预设的含有环境隔离标识的接口路径分类表中的条目,对所述接口路径进行关键字查询;
若在预设的含有环境隔离标识的接口路径分类表中查询到所述接口路径,则确定所述接口路径包含环境隔离标识,否则,确定所述接口路径不包含环境隔离标识。
S3、若所述接口路径包含所述环境隔离标识,则根据所述接口路径和所述环境隔离标识确定所述服务请求对应的微服务组件;
具体的,不同的环境隔离标识对应着不同的微服务组件,比如,微服务组件中的批改组件提供批改的功能服务,打印组件提供打印功能服务,查询组件提供数据(比如保单、批单等)查询功能服务。而批改组件对应的环境隔离标识为接口路径/query_stg1/policy中的“query_stg1”,即在接口路径中存在有“query_stg1”,那么该接口路径对应的是批改组件。
S4、将所述服务请求发送给对应的微服务组件进行处理,并接收处理结果,将所述处理结果返回给所述用户端。
具体的,微服务组件的处理结果可以是正常结果,也可以是异常结果,在将微服务组件的处理结果返回给用户端之前,可以对处理结果进行分类,若是正常结果,则直接返回,若是异常结果,则赋予异常标签。
本实施例,通过环境隔离标识,很好的解决了目前网关无法决策,将接口请求路由给对应微服务组件的哪个测试环境的问题。
图2为本申请在一个实施例中的一种多环境下的网关自动路由方法中的提取接口路径过程示意图,如图所示,所述S1包括:
S101、通过预设的接收入口接收用户端发送的多个服务请求,从各所述服务请求中提取服务请求的等级信息;
其中,服务请求的等级可以划分为普通、加急、紧急等,根据服务请求的等级不同,一般优先安排级别为“紧急”的服务请求。
S102、根据所述服务请求的等级信息,对所述服务请求进行分级排序;
具体的,排序规则是优选将等级为“紧急”的服务请求排在优先执行的任务,等级为“加急”的任务排到等级为“紧急”的后面。
S103、并行提取处于同一等级的服务请求中的接口路径。
本实施例,通过对服务请求进行等级排序,将处于同一等级的关于接口路径的子信息并行提取,从而加快了获得接口路径的速度,提升了路径选取的效率。
图3为本申请在一个实施例中的一种多环境下的网关自动路由方法中的确定微服务组件过程示意图,如图所示,所述S3包括:
S301、若所述接口路径包含所述环境隔离标识,则将所述环境隔离标识从所述接口路径中分离,得到不含环境隔离标识的接口路径;
在一个实施例中,在步骤S301之后,所述方法还包括如下步骤:
按照预设的提取规则,从所述接口路径中提取由第一指定特征字符和第一指定位置确定的第一字符串,其中,所述第一指定位置指所述第一指定特征字符的位置;
其中,预设的提取规则是指提取指定种类和指定位置的特征字符,比如“/endorse_stg1/quote”,提取指定种类的特征字符为“/”,指定位置的特征字符为第一个“/”的特征字符和第二个“/”的特征字符之间的第一字符串,即“endorse_stg1”
截取所述第一字符串中由第二指定特征字符和第二指定位置确定的第二字符串,将所述第二字符串从所述接口路径中分离,得到所述不含环境隔离标识的接口路径,其中,所述第二指定位置指所述第二指定特征字符的位置,所述第二指定特征字符与第一指定特征字符不相同。
其中,截取所述第一字符串中指定种类和位置的第二特征字符和所述第二特征字符之后的第二字符串,比如,截取“endorse_stg1”中的“_”特征字符和“_”特征字符之后的第二字符串“stg1”,截取的“_stg1”即为环境隔离标识,将“_stg1”从接口路径中去除,则得到不含环境隔离标识的接口路径。
S302、根据所述不含环境隔离标识的接口路径,在预设的路由策略文件中查找与所述不含环境隔离标识的接口路径对应的微服务组件的应用名;
其中,路由策略文件中记录着接口路径和微服务组件的对应关系,比如接口路径“/endorse/quote”对应的微服务组件是a。路由策略文件中的接口路径不含有环境隔离标识,所以要去掉环境隔离标识才能在路由策略文件中找到对应的微服务组件的应用名。
S303、将从所述接口路径中分离出来的所述环境隔离标识添加在所述微服务组件的应用名之后,得到含有环境隔离标识的微服务组件的应用名;
S304、根据所述含有环境隔离标识的微服务组件的应用名,在注册中心查找含有相同环境隔离标识的应用名所对应的目标微服务组件,所述目标微服务组件为所述服务请求对应的微服务组件。
其中,微服务组件部署到运行环境时,会把其应用名注册到注册中心(微服务组件可能有多台服务器,每台服务器的IP和端口在注册后会记录在注册中心)。比如,只有一套测试环境时,批改组件在注册中心注册的服务名是a,请求接口/endorse/quote从路由规则集合中匹配到微服务组件a,网关从配置中心找服务名为a的服务器地址,从而将接口转发给批改组件a。
有多套测试环境时,测试环境stg1上运行的批改组件在注册中心注册的服务名是a_stg1,请求接口/endorse_stg1/quote去掉环境隔离标识后是/endorse/quote,匹配的微服务组件是a,然后在匹配到的微服务组件名加上环境隔离标识,即a_stg1,网关根据a_stg1在注册中心查找服务名是否存在,如果存在则获取到组件下属的服务器地址,继而将接口请求转发给测试环境stg1的批改组件。假设接口路径中不包含环境隔离标识,虽然也可以从路由集合中匹配到微服务组件是a,但由于没有环境隔离标识,接下来根据服务名a去查注册中心就找不到服务组件了,这样就找不到服务了。对于这种情况,网关会有默认的处理方案,比如默认转发到测试环境stg1上。环境隔离标识是灵活的,微服务组件注册时服务名带环境隔离标识,那么接口路径就要带环境隔离标识;微服务组件注册时服务名不带环境隔离标识,那么接口路径就不需要带环境隔离标识。
本实施例,有效的从接口路径中分离出环境隔离标识,从而提升了查找微服务组件的效率。
在一个实施例中,所述S4包括:
获取微服务组件的服务器地址;
根据所述服务器地址连接对应的云端服务器,并将所述服务请求发送至所述云端服务器进行处理;
接收所述云端服务器的反馈信息,并从所述反馈信息中提取所述处理结果以及将所述处理结果返回给所述用户端。
其中,本实施例中,包含有三个终端,分别为本地服务器、云端服务器和用户端,本实施例的执行主体为本地服务器。
具体的,对于反馈信息可以将其划分成数个子段,子段划分的规则是特殊符号,如“,”、“;”等标点符号。然后对每一个子段中的字符进行结果特征字符识别,结果特征字符预设在数据库中,可以从数据库中调取后,再进行比对。
本实施例,利用服务器地址,准确的将微服务组件的处理结果发送至对应的用户端,避免了由于选择微服务组件不当,导致的结果错误。
在一个实施例中,所述遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识之后,所述多环境下的网关自动路由方法还包括:
若所述接口路径不包含所述环境隔离标识,则根据所述接口路径,在预设的路由策略文件中查找与所述接口路径对应的微服务组件的应用名,并根据所述微服务组件的应用名,在注册中心查找对应的多个环境下的微服务组件,将所述服务请求发送给任一环境下的微服务组件进行处理。
在一个实施例中,提出一种多环境下的网关自动路由装置,如图所示,包括接收模块10、查询模块20、处理模块30、发送模块40,具体的:
接收模块10,用于接收用户端发送的服务请求,从所述服务请求中提取接口路径;
查询模块20,用于遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识;
处理模块30,用于若所述接口路径包含所述环境隔离标识,则根据所述接口路径和所述环境隔离标识确定所述服务请求对应的微服务组件;
发送模块40,用于将所述服务请求发送给对应的微服务组件进行处理,并接收处理结果,将所述处理结果返回给所述用户端。
进一步地,所述接收模块10还用于:
通过预设的接收入口接收用户端发送的多个服务请求,从各所述服务请求中提取服务请求的等级信息;
根据所述服务请求的等级信息,对所述服务请求进行分级排序;
并行提取处于同一等级的服务请求中的接口路径。
进一步地,所述查询模块20还用于:
调取预设的含有环境隔离标识的接口路径分类表,根据预设的含有环境隔离标识的接口路径分类表中的条目,对所述接口路径进行关键字查询;
若在预设的含有环境隔离标识的接口路径分类表中查询到所述接口路径,则确定所述接口路径包含环境隔离标识,否则,确定所述接口路径不包含环境隔离标识。
进一步地,所述处理模块30还用于:
若所述接口路径包含所述环境隔离标识,则将所述环境隔离标识从所述接口路径中分离,得到不含环境隔离标识的接口路径;
根据所述不含环境隔离标识的接口路径,在预设的路由策略文件中查找与所述不含环境隔离标识的接口路径对应的微服务组件的应用名;
将从所述接口路径中分离出来的所述环境隔离标识添加在所述微服务组件的应用名之后,得到含有环境隔离标识的微服务组件的应用名;
根据所述含有环境隔离标识的微服务组件的应用名,在注册中心查找含有相同环境隔离标识的应用名所对应的目标微服务组件,所述目标微服务组件为所述服务请求对应的微服务组件。
进一步地,所述处理模块30还用于:
按照预设的提取规则,从所述接口路径中提取由第一指定特征字符和第一指定位置确 定的第一字符串,其中,所述第一指定位置指所述第一指定特征字符的位置;
截取所述第一字符串中由第二指定特征字符和第二指定位置确定的第二字符串,将所述第二字符串从所述接口路径中分离,得到所述不含环境隔离标识的接口路径,其中,所述第二指定位置指所述第二指定特征字符的位置,所述第二指定特征字符与第一指定特征字符不相同。
进一步地,所述发送模块40还用于:
获取微服务组件的服务器地址;
根据所述服务器地址连接对应的云端服务器,并将所述服务请求发送至所述云端服务器进行处理;
接收所述云端服务器的反馈信息,并从所述反馈信息中提取所述处理结果以及将所述处理结果返回给所述用户端。
进一步地,所述多环境下的网关自动路由装置还包括:
查找模块,用于若所述接口路径不包含所述环境隔离标识,则根据所述接口路径,在预设的路由策略文件中查找与所述接口路径对应的微服务组件的应用名,并根据所述微服务组件的应用名,在注册中心查找对应的多个环境下的微服务组件,将所述服务请求发送给任一环境下的微服务组件进行处理。
在一个实施例中,提出了一种计算机设备,所述计算机设备包括存储器和处理器,存储器中存储有计算机可读指令,计算机可读指令被处理器执行时,使得处理器执行上述各实施例中的所述多环境下的网关自动路由方法的步骤。
在一个实施例中,提出了一种存储有计算机可读指令的存储介质,该计算机可读指令被一个或多个处理器执行时,使得一个或多个处理器执行上述各实施例中的所述多环境下的网关自动路由方法的步骤。其中,所述存储介质可以为非易失性存储介质,也可以为易失性存储介质。
本领域普通技术人员可以理解上述实施例的各种方法中的全部或部分步骤是可以通过程序来指令相关的硬件来完成,该程序可以存储于一计算机可读存储介质中,存储介质可以包括:只读存储器(ROM,Read Only Memory)、随机存取存储器(RAM,Random Access Memory)、磁盘或光盘等。
以上所述实施例的各技术特征可以进行任意的组合,为使描述简洁,未对上述实施例中的技术特征所有可能的组合都进行描述,然而,只要这些技术特征的组合不存在矛盾,都应当认为是本说明书记载的范围。
以上所述实施例仅表达了本申请一些示例性实施例,其中描述较为具体和详细,但并不能因此而理解为对本申请专利范围的限制。应当指出的是,对于本领域的普通技术人员来说,在不脱离本申请构思的前提下,还可以做出若干变形和改进,这些都属于本申请的保护范围。因此,本申请专利的保护范围应以所附权利要求为准。

Claims (20)

  1. 一种多环境下的网关自动路由方法,其中,包括:
    接收用户端发送的服务请求,从所述服务请求中提取接口路径;
    遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识;
    若所述接口路径包含所述环境隔离标识,则根据所述接口路径和所述环境隔离标识确定所述服务请求对应的微服务组件;
    将所述服务请求发送给对应的微服务组件进行处理,并接收处理结果,将所述处理结果返回给所述用户端。
  2. 根据权利要求1所述的多环境下的网关自动路由方法,其中,所述接收用户端发送的服务请求,从所述服务请求中提取接口路径,包括:
    通过预设的接收入口接收用户端发送的多个服务请求,从各所述服务请求中提取服务请求的等级信息;
    根据所述服务请求的等级信息,对所述服务请求进行分级排序;
    并行提取处于同一等级的服务请求中的接口路径。
  3. 根据权利要求1所述的多环境下的网关自动路由方法,其中,所述遍历预设的含有环境隔离标识的接口路径分类表,查询所述接口路径是否包含环境隔离标识,包括:
    调取预设的含有环境隔离标识的接口路径分类表,根据预设的含有环境隔离标识的接口路径分类表中的条目,对所述接口路径进行关键字查询;
    若在预设的含有环境隔离标识的接口路径分类表中查询到所述接口路径,则确定所述接口路径包含环境隔离标识,否则,确定所述接口路径不包含环境隔离标识。
  4. 根据权利要求1所述的多环境下的网关自动路由方法,其中,所述若所述接口路径包含所述环境隔离标识,则根据所述接口路径和所述环境隔离标识确定所述服务请求对应的微服务组件,包括:
    若所述接口路径包含所述环境隔离标识,则将所述环境隔离标识从所述接口路径中分离,得到不含环境隔离标识的接口路径;
    根据所述不含环境隔离标识的接口路径,在预设的路由策略文件中查找与所述不含环境隔离标识的接口路径对应的微服务组件的应用名;
    将从所述接口路径中分离出来的所述环境隔离标识添加在所述微服务组件的应用名之后,得到含有环境隔离标识的微服务组件的应用名;
    根据所述含有环境隔离标识的微服务组件的应用名,在注册中心查找含有相同环境隔离标识的应用名所对应的目标微服务组件,所述目标微服务组件为所述服务请求对应的微服务组件。
  5. 根据权利要求4所述的多环境下的网关自动路由方法,其中,所述若所述接口路径包含所述环境隔离标识,则将所述环境隔离标识从所述接口路径中分离,得到不含环境隔离标识的接口路径之后,还包括:
    按照预设的提取规则,从所述接口路径中提取由第一指定特征字符和第一指定位置确定的第一字符串,其中,所述第一指定位置指所述第一指定特征字符的位置;
    截取所述第一字符串中由第二指定特征字符和第二指定位置确定的第二字符串,将所述第二字符串从所述接口路径中分离,得到所述不含环境隔离标识的接口路径,其中,所述第二指定位置指所述第二指定特征字符的位置,所述第二指定特征字符与第一指定特征字符不相同。
  6. 根据权利要求1所述的多环境下的网关自动路由方法,其中,所述将所述服务请求发送给对应的微服务组件进行处理,并接收处理结果,将所述处理结果返回给所述用户端,包括:
    获取微服务组件的服务器地址;
    根据所述服务器地址连接对应的云端服务器,并将所述服务请求发送至所述云端服务器进行处理;
    接收所述云端服务器的反馈信息,并从所述反馈信息中提取所述处理结果以及将所述处理结果返回给所述用户端。
  7. 根据权利要求1所述的多环境下的网关自动路由方法,其中,所述遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识之后,所述多环境下的网关自动路由方法还包括:
    若所述接口路径不包含所述环境隔离标识,则根据所述接口路径,在预设的路由策略文件中查找与所述接口路径对应的微服务组件的应用名,并根据所述微服务组件的应用名,在注册中心查找对应的多个环境下的微服务组件,将所述服务请求发送给任一环境下的微服务组件进行处理。
  8. 一种多环境下的网关自动路由设备,其中,所述多环境下的网关自动路由设备包括存储器、处理器及存储在所述存储器上并可在所述处理器上运行的计算机程序,所述处理器执行所述计算机程序时实现如下步骤:
    接收用户端发送的服务请求,从所述服务请求中提取接口路径;
    遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识;
    若所述接口路径包含所述环境隔离标识,则根据所述接口路径和所述环境隔离标识确定所述服务请求对应的微服务组件;
    将所述服务请求发送给对应的微服务组件进行处理,并接收处理结果,将所述处理结果返回给所述用户端。
  9. 如权利要求8所述的多环境下的网关自动路由设备,其中,所述计算机程序被所述处理器执行实现所述接收用户端发送的服务请求,从所述服务请求中提取接口路径时,包括如下步骤:
    通过预设的接收入口接收用户端发送的多个服务请求,从各所述服务请求中提取服务请求的等级信息;
    根据所述服务请求的等级信息,对所述服务请求进行分级排序;
    并行提取处于同一等级的服务请求中的接口路径。
  10. 如权利要求8所述的多环境下的网关自动路由设备,其中,所述计算机程序被所述处理器执行实现所述遍历预设的含有环境隔离标识的接口路径分类表,查询所述接口路径是否包含环境隔离标识时,包括如下步骤:
    调取预设的含有环境隔离标识的接口路径分类表,根据预设的含有环境隔离标识的接口路径分类表中的条目,对所述接口路径进行关键字查询;
    若在预设的含有环境隔离标识的接口路径分类表中查询到所述接口路径,则确定所述接口路径包含环境隔离标识,否则,确定所述接口路径不包含环境隔离标识。
  11. 如权利要求8所述的多环境下的网关自动路由设备,其中,所述计算机程序被所述处理器执行实现所述若所述接口路径包含所述环境隔离标识,则根据所述接口路径和所述环境隔离标识确定所述服务请求对应的微服务组件时,包括如下步骤:
    若所述接口路径包含所述环境隔离标识,则将所述环境隔离标识从所述接口路径中分离,得到不含环境隔离标识的接口路径;
    根据所述不含环境隔离标识的接口路径,在预设的路由策略文件中查找与所述不含环境隔离标识的接口路径对应的微服务组件的应用名;
    将从所述接口路径中分离出来的所述环境隔离标识添加在所述微服务组件的应用名之后,得到含有环境隔离标识的微服务组件的应用名;
    根据所述含有环境隔离标识的微服务组件的应用名,在注册中心查找含有相同环境隔离标识的应用名所对应的目标微服务组件,所述目标微服务组件为所述服务请求对应的微服务组件。
  12. 如权利要求11所述的多环境下的网关自动路由设备,其中,所述计算机程序被所述处理器执行实现所述若所述接口路径包含所述环境隔离标识,则将所述环境隔离标识从所述接口路径中分离,得到不含环境隔离标识的接口路径之后,包括如下步骤:
    按照预设的提取规则,从所述接口路径中提取由第一指定特征字符和第一指定位置确定的第一字符串,其中,所述第一指定位置指所述第一指定特征字符的位置;
    截取所述第一字符串中由第二指定特征字符和第二指定位置确定的第二字符串,将所述第二字符串从所述接口路径中分离,得到所述不含环境隔离标识的接口路径,其中,所述第二指定位置指所述第二指定特征字符的位置,所述第二指定特征字符与第一指定特征字符不相同。
  13. 如权利要求8所述的多环境下的网关自动路由设备,其中,所述计算机程序被所述处理器执行实现所述将所述服务请求发送给对应的微服务组件进行处理,并接收处理结果,将所述处理结果返回给所述用户端时,包括如下步骤:
    获取微服务组件的服务器地址;
    根据所述服务器地址连接对应的云端服务器,并将所述服务请求发送至所述云端服务器进行处理;
    接收所述云端服务器的反馈信息,并从所述反馈信息中提取所述处理结果以及将所述处理结果返回给所述用户端。
  14. 如权利要求8所述的多环境下的网关自动路由设备,其中,所述计算机程序被所述处理器执行实现所述遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识之后,包括如下步骤:
    若所述接口路径不包含所述环境隔离标识,则根据所述接口路径,在预设的路由策略文件中查找与所述接口路径对应的微服务组件的应用名,并根据所述微服务组件的应用名,在注册中心查找对应的多个环境下的微服务组件,将所述服务请求发送给任一环境下的微服务组件进行处理。
  15. 一种计算机可读存储介质,其中,所述计算机可读存储介质中存储计算机指令,当所述计算机指令在计算机上运行时,使得计算机执行如下步骤:
    接收用户端发送的服务请求,从所述服务请求中提取接口路径;
    遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识;
    若所述接口路径包含所述环境隔离标识,则根据所述接口路径和所述环境隔离标识确定所述服务请求对应的微服务组件;
    将所述服务请求发送给对应的微服务组件进行处理,并接收处理结果,将所述处理结果返回给所述用户端。
  16. 如权利要求15所述的计算机可读存储介质,其中,当所述计算机指令在计算机上运行时,使得计算机还执行如下步骤:
    通过预设的接收入口接收用户端发送的多个服务请求,从各所述服务请求中提取服务请求的等级信息;
    根据所述服务请求的等级信息,对所述服务请求进行分级排序;
    并行提取处于同一等级的服务请求中的接口路径。
  17. 如权利要求15所述的计算机可读存储介质,其中,当所述计算机指令在计算机上运行时,使得计算机还执行如下步骤:
    调取预设的含有环境隔离标识的接口路径分类表,根据预设的含有环境隔离标识的接 口路径分类表中的条目,对所述接口路径进行关键字查询;
    若在预设的含有环境隔离标识的接口路径分类表中查询到所述接口路径,则确定所述接口路径包含环境隔离标识,否则,确定所述接口路径不包含环境隔离标识。
  18. 如权利要求15所述的计算机可读存储介质,其中,当所述计算机指令在计算机上运行时,使得计算机还执行如下步骤:
    若所述接口路径包含所述环境隔离标识,则将所述环境隔离标识从所述接口路径中分离,得到不含环境隔离标识的接口路径;
    根据所述不含环境隔离标识的接口路径,在预设的路由策略文件中查找与所述不含环境隔离标识的接口路径对应的微服务组件的应用名;
    将从所述接口路径中分离出来的所述环境隔离标识添加在所述微服务组件的应用名之后,得到含有环境隔离标识的微服务组件的应用名;
    根据所述含有环境隔离标识的微服务组件的应用名,在注册中心查找含有相同环境隔离标识的应用名所对应的目标微服务组件,所述目标微服务组件为所述服务请求对应的微服务组件。
  19. 如权利要求18所述的计算机可读存储介质,其中,当所述计算机指令在计算机上运行时,使得计算机还执行如下步骤:
    按照预设的提取规则,从所述接口路径中提取由第一指定特征字符和第一指定位置确定的第一字符串,其中,所述第一指定位置指所述第一指定特征字符的位置;
    截取所述第一字符串中由第二指定特征字符和第二指定位置确定的第二字符串,将所述第二字符串从所述接口路径中分离,得到所述不含环境隔离标识的接口路径,其中,所述第二指定位置指所述第二指定特征字符的位置,所述第二指定特征字符与第一指定特征字符不相同。
  20. 一种多环境下的网关自动路由装置,其中,所述多环境下的网关自动路由装置包括:
    接收模块,用于接收用户端发送的服务请求,从所述服务请求中提取接口路径;
    查询模块,用于遍历预设的含有环境隔离标识的接口路径分类表,以查询所述接口路径是否包含环境隔离标识;
    处理模块,用于若所述接口路径包含所述环境隔离标识,则根据所述接口路径和所述环境隔离标识确定所述服务请求对应的微服务组件;
    发送模块,用于将所述服务请求发送给对应的微服务组件进行处理,并接收处理结果,将所述处理结果返回给所述用户端。
PCT/CN2020/099579 2019-09-09 2020-06-30 多环境下的网关自动路由方法、装置、设备及存储介质 WO2021047252A1 (zh)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201910846020.3 2019-09-09
CN201910846020.3A CN110620727B (zh) 2019-09-09 2019-09-09 多环境下的网关自动路由方法及相关设备

Publications (1)

Publication Number Publication Date
WO2021047252A1 true WO2021047252A1 (zh) 2021-03-18

Family

ID=68922630

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2020/099579 WO2021047252A1 (zh) 2019-09-09 2020-06-30 多环境下的网关自动路由方法、装置、设备及存储介质

Country Status (2)

Country Link
CN (1) CN110620727B (zh)
WO (1) WO2021047252A1 (zh)

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112965700A (zh) * 2021-05-17 2021-06-15 太平金融科技服务(上海)有限公司 基于路由的微服务处理方法、装置、计算机设备和介质
CN114064475A (zh) * 2021-11-11 2022-02-18 中国联合网络通信集团有限公司 云原生应用测试方法、装置、设备及存储介质
CN114500027A (zh) * 2022-01-21 2022-05-13 杭州玳数科技有限公司 基于Nacos的服务注册和服务调用的方法和系统
CN114726854A (zh) * 2021-12-27 2022-07-08 天翼云科技有限公司 一种服务请求的处理方法、装置及云服务系统

Families Citing this family (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110620727B (zh) * 2019-09-09 2022-02-22 平安科技(深圳)有限公司 多环境下的网关自动路由方法及相关设备
CN112953996B (zh) * 2020-08-03 2022-09-27 深圳市明源云链互联网科技有限公司 服务方法及其系统
CN112532523B (zh) * 2020-11-23 2021-11-12 福建顶点软件股份有限公司 一种基于子服务路由的进程内调度方法和存储设备
CN112995269B (zh) * 2020-12-10 2022-01-11 腾讯科技(深圳)有限公司 数据处理方法、计算机设备以及可读存储介质
CN112882752B (zh) * 2021-01-26 2022-10-28 苏州达家迎信息技术有限公司 微服务的批量处理方法、装置、计算机设备及存储介质
CN112801504A (zh) * 2021-01-28 2021-05-14 国网浙江省电力有限公司信息通信分公司 基于微服务架构的电网服务处理方法
CN113301155B (zh) * 2021-05-24 2022-08-16 挂号网(杭州)科技有限公司 数据路由方法、装置、设备和存储介质

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106911648A (zh) * 2015-12-23 2017-06-30 阿里巴巴集团控股有限公司 一种环境隔离方法及设备
US20180063153A1 (en) * 2014-12-19 2018-03-01 Microsoft Technology Licensing, Llc Security and permission architecture
US20180288136A1 (en) * 2015-08-29 2018-10-04 Vmware, Inc. Enterprise connectivity to the hybrid cloud
CN110620727A (zh) * 2019-09-09 2019-12-27 平安科技(深圳)有限公司 多环境下的网关自动路由方法及相关设备

Family Cites Families (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106878393A (zh) * 2017-01-16 2017-06-20 深圳市商沃科技发展有限公司 一种基于融合微服务架构的系统
CN107612959A (zh) * 2017-07-21 2018-01-19 哈尔滨工程大学 一种基于云微服务自管理的云服务平台
US10467039B2 (en) * 2017-08-07 2019-11-05 Open Data Group Inc. Deployment and management platform for model execution engine containers
CN107979508B (zh) * 2017-11-24 2020-08-04 深圳乐信软件技术有限公司 微服务测试方法及装置
CN109688191B (zh) * 2018-10-24 2021-02-12 华为技术有限公司 流量调度方法及通信装置
CN109495559B (zh) * 2018-11-06 2022-02-22 用友网络科技股份有限公司 微服务客户端的服务注册及调用方法、注册及调用系统

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20180063153A1 (en) * 2014-12-19 2018-03-01 Microsoft Technology Licensing, Llc Security and permission architecture
US20180288136A1 (en) * 2015-08-29 2018-10-04 Vmware, Inc. Enterprise connectivity to the hybrid cloud
CN106911648A (zh) * 2015-12-23 2017-06-30 阿里巴巴集团控股有限公司 一种环境隔离方法及设备
CN110620727A (zh) * 2019-09-09 2019-12-27 平安科技(深圳)有限公司 多环境下的网关自动路由方法及相关设备

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112965700A (zh) * 2021-05-17 2021-06-15 太平金融科技服务(上海)有限公司 基于路由的微服务处理方法、装置、计算机设备和介质
CN114064475A (zh) * 2021-11-11 2022-02-18 中国联合网络通信集团有限公司 云原生应用测试方法、装置、设备及存储介质
CN114726854A (zh) * 2021-12-27 2022-07-08 天翼云科技有限公司 一种服务请求的处理方法、装置及云服务系统
CN114726854B (zh) * 2021-12-27 2024-06-07 天翼云科技有限公司 一种服务请求的处理方法、装置及云服务系统
CN114500027A (zh) * 2022-01-21 2022-05-13 杭州玳数科技有限公司 基于Nacos的服务注册和服务调用的方法和系统
CN114500027B (zh) * 2022-01-21 2024-01-12 杭州玳数科技有限公司 基于Nacos的服务注册和服务调用的方法和系统

Also Published As

Publication number Publication date
CN110620727B (zh) 2022-02-22
CN110620727A (zh) 2019-12-27

Similar Documents

Publication Publication Date Title
WO2021047252A1 (zh) 多环境下的网关自动路由方法、装置、设备及存储介质
US10257092B2 (en) CCN routing using hardware-assisted hash tables
US10305776B2 (en) Network verification
US9059884B2 (en) Routing of IP traffic directed at domain names using DNS redirection
AU2020204340A1 (en) Synthetic supernet compression
US10659486B2 (en) Universal link to extract and classify log data
CN109714239B (zh) 一种管理消息的下发方法、vnfm设备和服务器
US11922222B1 (en) Generating a modified component for a data intake and query system using an isolated execution environment image
US7814165B2 (en) Message classification system and method
US11599396B2 (en) Resegmenting chunks of data based on source type to facilitate load balancing
CN114401319B (zh) 一种请求处理方法、装置、服务器及存储介质
US20150370906A1 (en) System and method for mapping identifier with locator using bloom filter
US20160204988A1 (en) Intelligent Device Data Router
US20180300685A1 (en) Non-transitory computer-readable medium and email processing device
CN113992364B (zh) 一种网络数据包阻断优化方法以及系统
US9667815B2 (en) Information processing system, information processing device, and information processing method
US10936488B1 (en) Incident response in an information technology environment using cached data from external services
US11057470B2 (en) Communication device and communication method for processing meta data
US20170244642A1 (en) Multi-dimensional packet classification
CN112564928A (zh) 服务分类方法及设备、互联网系统
CN111669338B (zh) 一种报文转发方法、装置、高密度服务器及存储介质
CN105978865B (zh) 应用包名验证方法及装置
CN112367262B (zh) 一种五元组规则的匹配方法及装置
US20240111742A1 (en) Management device, management method, and recording medium
CN111132121B (zh) 信息处理方法和网络仓库功能nrf网元

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 20862574

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 20862574

Country of ref document: EP

Kind code of ref document: A1