CN112988274B - Method, device and system for dynamically loading micro-service gateway plug-in and storage medium thereof - Google Patents

Method, device and system for dynamically loading micro-service gateway plug-in and storage medium thereof Download PDF

Info

Publication number
CN112988274B
CN112988274B CN202110318551.2A CN202110318551A CN112988274B CN 112988274 B CN112988274 B CN 112988274B CN 202110318551 A CN202110318551 A CN 202110318551A CN 112988274 B CN112988274 B CN 112988274B
Authority
CN
China
Prior art keywords
plug
file
gateway
new
instance
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
CN202110318551.2A
Other languages
Chinese (zh)
Other versions
CN112988274A (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.)
Beijing Deepexi Technology Co Ltd
Original Assignee
Beijing Deepexi 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 Beijing Deepexi Technology Co Ltd filed Critical Beijing Deepexi Technology Co Ltd
Priority to CN202110318551.2A priority Critical patent/CN112988274B/en
Publication of CN112988274A publication Critical patent/CN112988274A/en
Application granted granted Critical
Publication of CN112988274B publication Critical patent/CN112988274B/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/44Arrangements for executing specific programs
    • G06F9/445Program loading or initiating
    • G06F9/44521Dynamic linking or loading; Link editing at or after load time, e.g. Java class loading
    • G06F9/44526Plug-ins; Add-ons
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L12/00Data switching networks
    • H04L12/66Arrangements for connecting between networks having differing types of switching systems, e.g. gateways

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Stored Programmes (AREA)

Abstract

The invention relates to the technical field of networks, in particular to a method, a device and a system for dynamically loading a micro service gateway plug-in and a storage medium thereof, wherein the method comprises the following steps: monitoring a storage manager in real time, and acquiring a current plug-in file when the plug-in file stored in the storage manager is monitored to be changed; releasing the currently cached plug-in instance, and then instantiating the current plug-in file to obtain a new plug-in instance and caching the new plug-in instance; adapting the cached new plug-in instance to be a plug-in filter; adding the plug-in filter into a filter chain of a gateway to construct a new filter chain; according to the invention, the requirement of gateway filtering can be adjusted without restarting gateway service, so that the hot-plug function is realized, and the use experience of a user is effectively improved.

Description

Method, device and system for dynamically loading micro-service gateway plug-in and storage medium thereof
Technical Field
The invention relates to the technical field of image processing, in particular to a micro-service gateway plug-in dynamic loading method, a micro-service gateway plug-in dynamic loading device, a micro-service gateway plug-in dynamic loading system and a readable storage medium storing the method.
Background
With the rapid development of network science and technology, the utilization rate of micro services is higher and higher; the micro-services are a structural style, that is, a single application is divided into small service units, and the micro-services use an HTTP API for resource access and operation. Gateways are arranged between a client and a server in the existing micro-service, and all external requests pass through the gateway layer; the gateway has the functions of providing a unified entrance, authentication check, dynamic routing and reducing the coupling degree in the micro service; while Spring Cloud is a commonly used integrated suite component to micro-service architecture solutions on the market, where Spring Cloud Gateway is the Gateway in Spring Cloud that aims to provide a simple and efficient way to route APIs and to provide some filter functions.
In the existing Spring Cloud Gateway, when a user needs to adjust the filtering requirement of a Gateway, the user needs to modify and add a self-defined filter class on the basis of a Gateway source code, and then the user needs to restart the Gateway service to complete the customization requirement after compiling and packaging a series of actions; therefore, the method does not support dynamic loading of the plug-in and realize hot plug, so that a user cannot quickly adjust the filtering requirement of the gateway, and the use experience of the user is greatly influenced.
Disclosure of Invention
In order to overcome the above-mentioned drawbacks, an object of the present invention is to provide a method, an apparatus, a system for dynamically loading a plug-in of a micro service gateway capable of implementing hot plug, and a readable storage medium storing the method.
The purpose of the invention is realized by the following technical scheme:
the invention relates to a method for dynamically loading a micro-service gateway plug-in, which comprises the following steps:
monitoring a storage manager in real time, and acquiring a current plug-in file when the plug-in file stored in the storage manager is monitored to be changed;
releasing the currently cached plug-in instance, and then instantiating the current plug-in file to obtain a new plug-in instance and caching the new plug-in instance;
adapting the cached new plug-in instance into a plug-in filter;
and adding the plug-in filter into a filter chain of the gateway to construct a new filter chain.
In the present invention, before the monitoring that the plug-in file stored in the storage manager is changed, the method includes:
and adjusting the plug-in file in the storage manager.
In the present invention, the adjusting the plug-in file in the storage manager includes:
and uploading, removing and modifying the plug-in files in the storage manager.
In the present invention, the adding the plug-in filter to the filter chain of the gateway, and the constructing a new filter chain includes:
and adding the built-in filter and the plug-in filter in the gateway into the filter chain according to a preset sequence to construct a new filter chain.
In the present invention, when it is monitored that the plug-in file stored in the storage manager changes, the acquiring of the current plug-in file includes:
reading a definition identifier of a plug-in file stored in a storage manager, judging whether the definition identifier is changed, if so, judging whether the plug-in files in the plug-in instance currently cached by the plug-in file are the same, and if not, acquiring the current plug-in file.
In the present invention, the monitoring of the storage manager in real time includes:
and receiving an access request of the client, and performing real-time monitoring on the storage manager when the access request is matched with the route configured by the gateway.
In the present invention, the construction of the new filter chain comprises:
and filtering the received access request according to the new filtering chain, and sending the filtered access request to the server side.
Based on the same conception, the invention also provides a micro service gateway plug-in dynamic loading device, which comprises:
the storage management module is used for managing and storing the plug-in file;
the monitoring management module is connected with the storage management module and is used for monitoring the storage management module in real time, and when the situation that the plug-in files stored in the storage management module are changed is monitored, the current plug-in files in the storage management module are obtained and drive the instance cache module and the monitoring management module; the cached new plug-in instance is adapted to be a plug-in filter, and the plug-in filter is added into a filter chain of the gateway to construct a new filter chain;
the instance caching module is connected with the monitoring management module and used for releasing the currently cached plug-in instance or caching a new plug-in instance according to the driving of the monitoring management module;
and the instantiation module is respectively connected with the instance cache module and the monitoring management module and is used for instantiating the plug-in file obtained by the monitoring management module to obtain a new plug-in instance.
Based on the same conception, the invention also provides a micro service gateway plug-in dynamic loading system, which comprises: a client, a server and a gateway;
the gateway is arranged between the client and the server, and the gateway is internally provided with the micro-service gateway plug-in dynamic loading device.
Based on the same concept, the present invention also provides a computer-readable program storage medium storing computer program instructions which, when executed by a computer, cause the computer to perform the method as described above.
In the method for dynamically loading the micro service gateway plug-in, the change condition of the plug-in file is monitored in real time, the updated plug-in file is instantiated to form a new plug-in filter, and the new plug-in filter is read to dynamically complete the loading of the plug-in, so that a user can adjust the requirement of the gateway filtering without restarting the gateway service, the hot plug function is realized, and the use experience of the user is effectively improved.
Drawings
For the purpose of easy explanation, the present invention will be described in detail with reference to the following preferred embodiments and the accompanying drawings.
FIG. 1 is a schematic diagram illustrating a working flow of an embodiment of a method for dynamically loading a plug-in of a microservice gateway according to the present invention;
fig. 2 is a schematic diagram illustrating a working flow of another embodiment of a method for dynamically loading a plug-in of a microservice gateway according to the present invention;
FIG. 3 is a schematic diagram of a logic structure of a dynamic loading apparatus for a micro service gateway plug-in according to the present invention;
FIG. 4 is a schematic diagram of a logic structure of the dynamic loading system of the micro service gateway plug-in according to the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the present invention more apparent, the present invention is further described in detail below with reference to the accompanying drawings and embodiments. It should be understood that the specific embodiments described herein are merely illustrative of the invention and are not intended to limit the invention.
In the description of the present invention, it is to be understood that the terms "center", "longitudinal", "lateral", "length", "width", "thickness", "upper", "lower", "front", "rear", "left", "right", "vertical", "horizontal", "top", "bottom", "inner", "outer", "clockwise", "counterclockwise", and the like, indicate orientations and positional relationships based on those shown in the drawings, and are used only for convenience of description and simplicity of description, and do not indicate or imply that the device or element being referred to must have a particular orientation, be constructed and operated in a particular orientation, and thus, should not be considered as limiting the present invention. Furthermore, the terms "first", "second" and "first" are used for descriptive purposes only and are not to be construed as indicating or implying relative importance or implicitly indicating the number of technical features indicated. Thus, features defined as "first", "second", may explicitly or implicitly include one or more of the described features. In the description of the present invention, "a plurality" means two or more unless specifically defined otherwise.
In the description of the present invention, it should be noted that the terms "mounted," "connected," and "connected" are to be construed broadly and may be, for example, fixedly connected, detachably connected, or integrally connected unless otherwise explicitly stated or limited. Either mechanically or electrically. Either directly or indirectly through intervening media, either internally or in any other relationship. The specific meanings of the above terms in the present invention can be understood by those skilled in the art according to specific situations.
The following describes a dynamic loading method of a Spring Cloud Gateway plug-in according to an embodiment of the present invention, please refer to fig. 1, which includes:
s101, monitoring a storage manager in real time
Monitoring a storage manager in real time; the storage manager stores more than one plug-in file, and the plug-in files are packaged into a Jar file package; in the present embodiment, it is specifically: and monitoring whether the Jar file package in the storage manager is changed or not in real time.
S102, acquiring the current plug-in file
When the situation that the plug-in file stored in the storage manager is changed is monitored, acquiring the current plug-in file; wherein, the plug-in file changing comprises the following steps: uploading a new Jar file package, deleting the Jar file package, and changing the content of the Jar file package; the user can adjust the Jar package according to the specific filtering requirements.
S103, releasing the current plug-in example
In this embodiment, the last plugin instance is cached in the gateway, and since a new plugin instance needs to be generated in the subsequent step, the currently cached plugin instance needs to be released in this step.
S104, instantiation is carried out on new plug-in files
Instantiating the current plug-in file to obtain a new plug-in instance and caching the new plug-in instance; the instantiation refers to a process of creating an object by using a class in object-oriented programming, and is called instantiation; it is a process of embodying an abstract conceptual class to such a real object.
S105, adapting the new plug-in instance into a plug-in filter
The cached new plug-in instance is adapted to be a plug-in filter, and simultaneously, all plug-in filters are collected for use when a filter chain is constructed;
s106, constructing a new filter chain
Adding the plug-in filter into a filter chain of a gateway to construct a new filter chain; the gateway can perform the filtering request according to its new filter chain without restarting.
In the following, a dynamic loading method of a Spring Cloud Gateway plug-in according to another embodiment of the present invention is described in detail with reference to fig. 2, which includes:
s201, receiving an access request of a client
And receiving an access request of the client, and performing real-time monitoring on the storage manager when the access request is matched with the route configured by the gateway.
S202, adjusting the plug-in file
Adjusting the plug-in files in the storage manager; specifically, the plug-in files in the storage manager are uploaded, removed and modified.
S203, monitoring the storage manager in real time
Monitoring a storage manager in real time; the storage manager stores more than one plug-in file, the plug-in file is packaged into a Jar file package, and a definition identifier is arranged in the plug-in file; in the present embodiment, it is specifically: and monitoring whether the Jar file package in the storage manager is changed or not in real time.
S204, acquiring the current plug-in file
Reading a definition identifier of a plug-in file stored in a storage manager, judging whether the definition identifier is changed, if so, judging whether the plug-in files in a plug-in instance currently cached by the plug-in file are the same, and if not, acquiring the current plug-in file; in this embodiment, the definition identifier is used to determine whether the plug-in file is changed, and after the definition identifier is changed, determine whether the contents of the plug-in file are the same, if so, directly obtain the currently cached plug-in instance, which effectively avoids the problem of frequent initialization of plug-ins with the same contents; wherein, the plug-in file changing comprises the following steps: uploading a new Jar file package, deleting the Jar file package, and changing the content of the Jar file package; the user can adjust the Jar package according to the specific filtering requirements.
S205, releasing the current plug-in instance
In this embodiment, the last plugin instance is cached in the gateway, and since a new plugin instance needs to be generated in the subsequent step, the current cached plugin instance needs to be released in this step.
S206, instantiation is carried out on new plug-in files
Instantiating the current plug-in file to obtain a new plug-in instance and caching the new plug-in instance; the instantiation refers to a process of creating an object by using a class in object-oriented programming, and is called instantiation; it is a process of embodying an abstract conceptual class to such a real object.
S207, adapting the new plug-in instance into a plug-in filter
The cached new plug-in instance is adapted to be a plug-in filter, and simultaneously, all plug-in filters are collected for use when a filter chain is constructed;
s208, constructing a new filter chain
Sequencing built-in filters and the plug-in filters in the gateway from small to large according to the sequencing numbers, and then adding the filters into a filter chain to construct a new filter chain; in this embodiment, a new filter chain is obtained by integrating the built-in filter and the plug-in filter.
S209, filtering the access request according to the new filter chain
And filtering the received access request according to the new filtering chain, and sending the filtered access request to the server side.
The present invention includes a computer readable storage medium having stored thereon a program product capable of implementing the above-described method of the present specification. In some possible embodiments, aspects of the invention may also be implemented in the form of a program product comprising program code means for causing a terminal device to carry out the steps according to various exemplary embodiments of the invention described in the above section "exemplary methods" of the present description, when said program product is run on the terminal device.
The program product may employ any combination of one or more readable media. The readable medium may be a readable signal medium or a readable storage medium. The readable storage medium may be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, or device, or any combination of the foregoing. More specific examples (a non-exhaustive list) of the readable storage medium include: an electrical connection having one or more wires, a portable disk, a hard disk, a Random Access Memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or flash memory), an optical fiber, a portable compact disc read-only memory (CD-ROM), an optical storage device, a magnetic storage device, or any suitable combination of the foregoing.
A computer readable signal medium may include a propagated data signal with readable program code embodied therein, for example, in baseband or as part of a carrier wave. Such a propagated data signal may take many forms, including, but not limited to, electro-magnetic, optical, or any suitable combination thereof. A readable signal medium may also be any readable medium that is not a readable storage medium and that can communicate, propagate, or transport a program for use by or in connection with an instruction execution system, apparatus, or device.
Program code embodied on the above readable medium may be transmitted using any appropriate medium, including but not limited to wireless, wireline, optical fiber cable, RF, etc., or any suitable combination of the foregoing.
The following describes an embodiment of a dynamic loading device of a Spring Cloud Gateway plug-in of the present invention, referring to fig. 3, which includes:
the storage management module plug Definition Store is used for managing and storing the plug-in file; the method specifically comprises the following steps: the method comprises uploading, removing, modifying and reading of the plug-in files, wherein the plug-in files are Jar file packages, and users can adjust the Jar file packages according to specific filtering requirements of the users.
Monitoring management module plug Loader, monitoring management module with storage management module is connected for carry out real-time supervision to storage management module, when monitoring plug-in components file that stores in storage management module takes place the change, if: uploading a new plug-in file, removing an existing plug-in file, modifying an existing plug-in file and the like; acquiring the current plug-in file in the storage management module and driving an instance cache module and a monitoring management module; the cached new plug-in instance is adapted to be a plug-in filter, and the plug-in filter is added into a filter chain of the gateway to construct a new filter chain; the gateway can perform the filtering request according to its new filter chain without restarting.
And the instance caching module is connected with the monitoring management module and used for releasing the currently cached plug-in instance or caching a new plug-in instance according to the drive of the monitoring management module.
The plug-in Class Loader is connected with the instance cache module and the monitoring management module respectively and used for instantiating the plug-in file obtained by the monitoring management module to obtain a new plug-in instance; the instantiation refers to a process of creating an object by using a class in object-oriented programming, and is called instantiation; the method is a process for embodying an abstract concept class to a class real object.
An embodiment of a dynamic loading system for a Spring Cloud Gateway plug-in according to the present invention is described in detail below, with reference to fig. 4, which includes:
a client, a server and a gateway; wherein, the Gateway is Spring Cloud Gateway;
the gateway is arranged between the client and the server, and the gateway is internally provided with the micro-service gateway plug-in dynamic loading device. The specific process comprises the following steps: the client initiates a request, and when the initiated request is matched with the configured route, the plug-in dynamic loading device collects the built-in filter and the plug-in filter and reconstructs and executes a filter chain; the request initiated by the client enters the server after being filtered by the filter chain so as to execute corresponding operation.
In the description of the present specification, reference to the description of the terms "one embodiment", "some embodiments", "an illustrative embodiment", "an example", "a specific example", or "some examples", etc., means that a particular feature, structure, material, or characteristic described in connection with the embodiment or example is included in at least one embodiment or example of the present invention. In this specification, schematic representations of the above terms do not necessarily refer to the same embodiment or example. Furthermore, the particular features, structures, materials, or characteristics described may be combined in any suitable manner in any one or more embodiments or examples.
The above description is only for the purpose of illustrating the preferred embodiments of the present invention and is not to be construed as limiting the invention, and any modifications, equivalents and improvements made within the spirit and principle of the present invention are intended to be included within the scope of the present invention.

Claims (9)

1. A method for dynamically loading a micro service gateway plug-in is characterized by comprising the following steps:
monitoring a storage manager in real time, and acquiring a current plug-in file when the plug-in file stored in the storage manager is monitored to be changed;
releasing the currently cached plug-in instance, and then instantiating the current plug-in file to obtain a new plug-in instance and caching the new plug-in instance;
adapting the cached new plug-in instance to be a plug-in filter;
and adding the plug-in filter into a filter chain of the gateway to construct a new filter chain.
2. The method for dynamically loading the microservice gateway plug-in of claim 1, wherein the monitoring of the plug-in file stored in the storage manager before the plug-in file is changed comprises:
and adjusting the plug-in file in the storage manager.
3. The method for dynamically loading the microservice gateway plug-in according to claim 2, wherein the adjusting the plug-in file in the storage manager comprises:
and uploading, removing and modifying the plug-in file in the storage manager.
4. The method for dynamically loading microservice gateway plug-ins according to claim 3, wherein the adding the plug-in filter to the filter chain of the gateway, and the constructing a new filter chain comprises:
and adding the built-in filter and the plug-in filter in the gateway into the filter chain according to a preset sequence to construct a new filter chain.
5. The method for dynamically loading the plug-in of the micro service gateway according to claim 4, wherein the step of acquiring the current plug-in file when the plug-in file stored in the storage manager is monitored to be changed comprises the following steps:
reading a definition identifier of a plug-in file stored in a storage manager, judging whether the definition identifier is changed, if so, judging whether the plug-in files in the plug-in instance currently cached by the plug-in file are the same, and if not, acquiring the current plug-in file.
6. The method for dynamically loading the microservice gateway plug-in according to claim 5, wherein the monitoring the storage manager in real time comprises:
and receiving an access request of the client, and performing real-time monitoring on the storage manager when the access request is matched with the route configured by the gateway.
7. The method for dynamically loading the microservice gateway plug-in according to claim 6, wherein the building of the new filter chain comprises:
and filtering the received access request according to the new filtering chain, and sending the filtered access request to the server side.
8. A micro service gateway plug-in dynamic loading device is characterized by comprising:
the plug-in monitoring module is used for monitoring a storage manager in real time and acquiring a current plug-in file when the plug-in file stored in the storage manager is monitored to be changed;
the instance caching module is used for releasing the currently cached plug-in instance, then instantiating the current plug-in file to obtain a new plug-in instance and caching the new plug-in instance;
the adaptation module is used for adapting the cached new plug-in instance into a plug-in filter; and
and the filter chain building module is used for adding the plug-in filter into a filter chain of the gateway to build a new filter chain.
9. A computer-readable program storage medium storing computer program instructions which, when executed by a computer, cause the computer to perform the method according to any one of claims 1 to 7.
CN202110318551.2A 2021-03-25 2021-03-25 Method, device and system for dynamically loading micro-service gateway plug-in and storage medium thereof Active CN112988274B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202110318551.2A CN112988274B (en) 2021-03-25 2021-03-25 Method, device and system for dynamically loading micro-service gateway plug-in and storage medium thereof

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202110318551.2A CN112988274B (en) 2021-03-25 2021-03-25 Method, device and system for dynamically loading micro-service gateway plug-in and storage medium thereof

Publications (2)

Publication Number Publication Date
CN112988274A CN112988274A (en) 2021-06-18
CN112988274B true CN112988274B (en) 2023-01-31

Family

ID=76333742

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202110318551.2A Active CN112988274B (en) 2021-03-25 2021-03-25 Method, device and system for dynamically loading micro-service gateway plug-in and storage medium thereof

Country Status (1)

Country Link
CN (1) CN112988274B (en)

Families Citing this family (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113347041B (en) * 2021-06-21 2022-03-01 深圳壹账通智能科技有限公司 Dynamic current-limiting fusing configuration method, device, equipment and storage medium
CN113595788B (en) * 2021-07-28 2024-05-28 上海华兴数字科技有限公司 API gateway management method and device based on plug-in
CN113726662B (en) * 2021-08-19 2023-02-10 成都民航西南凯亚有限责任公司 Micro-service routing and management system
CN115102849A (en) * 2022-05-11 2022-09-23 浪潮云信息技术股份公司 Method and device for dynamically loading and configuring service gateway plug-in
CN115134235A (en) * 2022-06-22 2022-09-30 武汉东湖学院 Method, device and system for dynamically loading micro-service gateway plug-in and storage medium thereof
CN115883353A (en) * 2022-12-08 2023-03-31 普元信息技术股份有限公司 Routing plug-in arranging and executing system based on Spring Cloud Gateway in trusted environment

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101646995A (en) * 2007-03-26 2010-02-10 国际商业机器公司 Data stream filters and plug-ins for storage managers
CN111610979A (en) * 2020-04-15 2020-09-01 河南大学 API gateway subjected to persistence and coupling degree optimization and method thereof
WO2020237797A1 (en) * 2019-05-31 2020-12-03 烽火通信科技股份有限公司 Dynamic configuration management method and system in microservice framework

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR101626117B1 (en) * 2009-06-22 2016-05-31 삼성전자주식회사 Client, brokerage sever and method for providing cloud storage

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101646995A (en) * 2007-03-26 2010-02-10 国际商业机器公司 Data stream filters and plug-ins for storage managers
WO2020237797A1 (en) * 2019-05-31 2020-12-03 烽火通信科技股份有限公司 Dynamic configuration management method and system in microservice framework
CN111610979A (en) * 2020-04-15 2020-09-01 河南大学 API gateway subjected to persistence and coupling degree optimization and method thereof

Also Published As

Publication number Publication date
CN112988274A (en) 2021-06-18

Similar Documents

Publication Publication Date Title
CN112988274B (en) Method, device and system for dynamically loading micro-service gateway plug-in and storage medium thereof
US8676848B2 (en) Configuring cloud resources
CN113641311B (en) Method and system for dynamically allocating container storage resources based on local disk
US9141364B2 (en) Caching and analyzing images for faster and simpler cloud application deployment
WO2019051948A1 (en) Method, apparatus, server, and storage medium for processing monitoring data
CN112653656B (en) Data communication method and device based on application layer protocol
CN110780887B (en) Method and equipment for providing application installation package
CN111258627A (en) Interface document generation method and device
CN112615929B (en) Method and equipment for pushing messages
US20210112032A1 (en) System of a Distributed Web Application Firewall Cluster
CN113709810A (en) Method, device and medium for configuring network service quality
WO2017054533A1 (en) External resource management method, apparatus and system through cloud interworking
CN113794652A (en) Data processing method and device, electronic equipment and storage medium
EP4004754A1 (en) Network-based media processing (nbmp) workflow management through 5g framework for live uplink streaming (flus) control
US20170142189A1 (en) Attachment of cloud services to big data services
CN113220481B (en) Request processing and feedback method, device, computer equipment and readable storage medium
CN114697387A (en) Data packet transmission method, device and storage medium
CN114731342A (en) Hosted data derivation from edge devices to remote networks
CN107483637B (en) NFS-based client link management method and device
EP4340436A1 (en) Operation and maintenance method, apparatus, and system, server, electronic device, and medium
CN107404410B (en) Method and device for constructing virtual network function platform in cloud environment
CN114327404A (en) File processing method and device, electronic equipment and computer readable medium
CN114662102A (en) File processing method and device and storage medium
CN110719303B (en) Containerization NRF method and system
JP2022530953A (en) How to manage remote devices by management device

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