CN106506605B - SaaS application construction method based on micro-service architecture - Google Patents

SaaS application construction method based on micro-service architecture Download PDF

Info

Publication number
CN106506605B
CN106506605B CN201610900219.6A CN201610900219A CN106506605B CN 106506605 B CN106506605 B CN 106506605B CN 201610900219 A CN201610900219 A CN 201610900219A CN 106506605 B CN106506605 B CN 106506605B
Authority
CN
China
Prior art keywords
micro
service
instance
metadata
instances
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
CN201610900219.6A
Other languages
Chinese (zh)
Other versions
CN106506605A (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.)
South China University of Technology SCUT
Original Assignee
South China University of Technology SCUT
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 South China University of Technology SCUT filed Critical South China University of Technology SCUT
Priority to CN201610900219.6A priority Critical patent/CN106506605B/en
Publication of CN106506605A publication Critical patent/CN106506605A/en
Application granted granted Critical
Publication of CN106506605B publication Critical patent/CN106506605B/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/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
    • H04L67/1004Server selection for load balancing

Abstract

The invention provides a method for constructing SaaS application based on micro-service architecture, aiming at the defects of a plurality of construction methods based on traditional SOA architecture, the method comprises the following steps: formulating a design principle and an attribute model for developing the micro-service, and realizing the deployment of the micro-service instance through a Docker container; a distributed micro-service metadata cluster is set up, and metadata of micro-services, micro-service providers and micro-service users are uniformly managed; high-availability storage schemes are respectively designed for the real-time updated state data and the relatively fixed attribute data; aiming at the real-time high-concurrency reading and writing requirements of metadata, a set of scheme combining a Redis master-slave server model and a reading and writing separation architecture is designed; aiming at the situation of dynamic addition and deletion of the micro-service instances, a load balancing strategy based on a consistent hash algorithm is designed. The invention solves the development, deployment and management scheme of the micro-service and improves the efficiency of developing the SaaS application.

Description

SaaS application construction method based on micro-service architecture
Technical Field
The invention belongs to the field of SaaS application development, and particularly relates to a SaaS application construction method based on a micro-service architecture.
Background
The cloud computing technology has strong computing power and high-efficiency IT resource integration capability, and brings a revolution in the development and use modes of software in the Internet era. The SaaS application development mode is a brand-new mode for providing software service through the Internet generated under the background of wide development of cloud computing technology, and users can flexibly use software in a renting mode according to actual requirements of the users.
With the development of the SaaS application mode, the increasingly changing requirements of people lead to frequent changes of software function requirements, so that the delivery and iteration periods of software are gradually shortened, and the traditional long-period development mode cannot meet the software development requirements in the internet era. The microservice architecture model that has emerged with the evolution of the Docker container technology can better address the issue of frequent deliveries.
The microservice architecture calls for splitting an application into multiple independent servlets, each dedicated to its own independent function and running in separate processes. There is a clear boundary between services, and the services communicate with each other through some relatively lightweight communication mechanisms.
The concept of the micro-service is similar to that of the SOA, and the method advocates dividing the complex application program into different services according to different and reusable functions, but the micro-service has finer service granularity, is deployed in an independent process to operate, communicates through a lightweight mechanism, and is more suitable for the Internet application with frequent change of the current demand, high iteration speed and short delivery cycle. Therefore, it is very important to research the design principle, attribute model and deployment method of the key micro-service constituting the micro-service architecture, and the principles to be followed in the process of designing and developing the micro-service need to be made clear, and the advantages brought by the architecture can be better brought into play by developing and deploying under the condition of conforming to the principles as much as possible.
When a developer develops the SaaS application by using the micro-service architecture in a cloud environment, the situations of rapid increase of the number of micro-services, dynamic update of a real-time state, dynamic addition and deletion of nodes and the like occur, and a management scheme capable of effectively aiming at the characteristics of the micro-services is needed so as to improve the efficiency of the developer developing the SaaS application by using the micro-service architecture.
Disclosure of Invention
The technical problem to be solved by the invention is to develop micro-services according to a micro-service design principle and an attribute model, and deploy a plurality of micro-service instances by using a Docker container; updating the metadata of the micro-service instance to a distributed metadata cluster in real time; triggering load balancing service while updating metadata, calculating the change of the instance distribution condition through a consistency hash algorithm, and informing a caller of the instance; and the SaaS application developer selects an optimal micro-service instance through the load balancing service and calls the micro-service instance through the REST interface.
In order to solve the above technical problem, the present invention provides a high availability management method for a microservice architecture, which includes:
(1) designing an attribute model of the microservice: according to micro-service design principles such as single function, independent deployment, stateless and lightweight communication, the attributes which can be used for describing micro-services are formulated, wherein the attributes comprise names, positions, versions, real-time states, identity authentication information, support concurrency, provider information and the like;
(2) micro-service deployment: generating an executable JAR package through a Spring Boot framework, and deploying and operating a micro-service instance by using a Docker container based on a Linux container virtualization technology;
(3) updating the metadata of the microservice: updating real-time updated state data into a Redis memory database, updating relatively fixed attribute data into a MySQL relational database, and realizing the updating function of different types of metadata by adopting different storage schemes;
(4) micro-service instance allocation: a micro-service can have a plurality of running instances, and the micro-service instances can be dynamically added and deleted, and the instances are distributed through a load balancing service, so that the instances are uniformly distributed to different callers.
(5) Micro-service calling: after the SaaS application developer obtains the optimal instance through the load balancing service, the SaaS application developer can call the micro-service through the REST interface and realize efficient development of the SaaS application by combining different optimal micro-services.
Compared with the prior art, the SaaS application construction method based on the micro-service architecture achieves the following effects:
(1) the invention adopts a deployment method that the Spring Boot framework generates executable JAR package and Docker container, thus effectively realizing independent deployment of micro-service instances.
(2) The method and the system have the advantages that the unified management of massive micro-service metadata is taken as a core, a series of schemes including high-availability micro-service metadata storage, read-write separation supporting real-time updating, load balancing supporting dynamic change and the like are included, and the problem that the types and the number of micro-services are increased sharply when a developer develops SaaS application by using a micro-service framework in a cloud environment is solved effectively.
Drawings
FIG. 1 is a logical diagram of a microservice metadata unified management scheme architecture.
FIG. 2 is a schematic diagram of a high availability metadata storage scheme architecture.
Fig. 3 is a flow diagram of a load balancing scheme supporting dynamic changes.
Detailed Description
The practice of the present invention will be further illustrated, but is not limited, by the accompanying drawings and examples.
Microservice design principles and attribute model formulation
The microservice architecture as a software development mode has many points of identity and difference with the traditional SOA service-oriented architecture, and the reason for the difference is the difference of the objects researched by the microservice architecture. Therefore, it is very important to research the design principles and attribute models of the key microservices constituting the microservice architecture, and the principles to be followed in the microservice process need to be clearly designed and developed, and the advantages brought by the architecture can be better brought out by developing and deploying under the condition of conforming to the principles as much as possible.
The microservice design rules formulated in this example are as follows:
(1) single functional principle: the business logic handled by a single microservice is dedicated to a specific function and has well-designed external interfaces that explicitly define the boundaries between functions, specifying which factors change to cause a change in the function.
(2) Independent deployment principle: the whole process of development, test, construction and deployment of each micro-service is defined in a physically independent environment from the perspective of physical attributes, and when a single micro-service is modified, upgraded and redeployed, the operation of other micro-services is not influenced.
(3) Stateless principles: the micro-service does not need to record communication information related to external users when receiving and processing external requests, so that stateless instances can be added or reduced very swiftly when a certain micro-service instance fails or is dynamically expanded or reduced.
(4) Lightweight communication principle: some mechanism unrelated to the development language and the development platform is adopted for interaction. Common lightweight communication protocols include XML and JSON, and the protocols have the expression capability on complex information and can realize cross-platform information transmission.
According to the above design principle, we formulate an attribute model of the microservice needs, including: name attribute, location attribute, version attribute, real-time status attribute, authentication attribute, capacity support attribute, service provider attribute.
Micro-service metadata unified management scheme
As shown in fig. 1, it is demonstrated that unified high-availability and high-performance management is performed on massive, dynamic, real-time updated micro-service instance states, and the key features are as follows:
(1) a plurality of micro-service instances are independently deployed, and massive state metadata and attribute metadata need to be updated to a metadata cluster in real time;
(2) the micro service instances can be dynamically expanded or reduced, and the addition and deletion changes of the instances are updated to the metadata cluster in real time;
(3) the load balancing service is deployed in a cluster form and provides services, and the position information and the state information of the micro-service instance are obtained by reading a high-availability metadata cluster;
(4) and when the instance caller subscribes the micro service for the first time, accessing the load balancing service, optimally selecting the micro service instance by combining the state information of the micro service and a preset load balancing strategy, and recording the selection condition to the local caller.
(5) The load balancing service records the relation between the caller and the used micro-service instance, and if the instance is dynamically increased or decreased, the caller is informed in time.
(6) And finally, the caller of the instance communicates with the specific micro-service instance in a direct connection mode through the REST interface provided by the instance.
High availability metadata storage scheme
Firstly, aiming at the state data updated in real time, the data has the characteristics that the data volume of each update is not large, a large storage space is not needed for processing the single updated data, but the update frequency is high, and the total update times are large, so that a storage mechanism which is relatively simple and can provide high data reading performance is needed, and a Redis memory data storage scheme is selected.
The rich data types provided by Redis are utilized to design the data structure of the state data to facilitate sorted storage and quick retrieval. For example, the key of the state attribute of the micro service instance may be set to a string "micro service: instance: state: instance: instanceId", and the location information of the micro service instance in real time may be set to a string "service _ id: instance _ id: url". The mode of forming keys by a plurality of fields and symbol intervals has good structurality, and is very convenient for system users to classify and search data in Redis.
Data persistence is performed by using an AOF (application Only File) mode of Redis to avoid data loss caused by the volatility of a memory. And the disaster recovery backup of multiple Redis servers is realized by utilizing the Redis synchronous copying function. Redis provides simple SLAVEOF commands and SLAVEOF configuration attributes that allow the present instance to set one Redis server as a slave to another Redis server, so that operations on the master server can be synchronized to updates on the slave in a timely manner.
Aiming at high concurrent read-write requirements, a plurality of servers are adopted to store data and are divided into a main server and a slave server, the servers and the servers copy the data through a synchronization mechanism, wherein the main server is mainly responsible for providing operations which can bring changes to the data such as addition, deletion and modification of the data to the outside, and one or more slave servers are responsible for providing operations of inquiring and reading the data to the outside.
Secondly, for some relatively fixed and structured data, the data can be described, stored and processed in a data form of a two-dimensional table, which is convenient for query and is relatively suitable for being used for describing, storing and processing, so that the traditional relational database MySQL is used for storing. Fig. 2 shows the overall architecture of the metadata storage scheme.
Load balancing scheme supporting dynamic changes
The stateless principle of the micro-service enables a single micro-service to be freely expanded into a plurality of executable specific instances, each instance is independently deployed, and operations inside the instances are not affected by each other. In the face of such a situation where multiple homogeneous instances are running simultaneously, a load balancing scheme is needed that can distribute requests of multiple callers to different instances for processing.
The case adopts a consistent hash algorithm to combine with the real-time load condition of the case to solve the dynamic adding and deleting condition of the case. Fig. 3 is a flow chart of a load balancing scheme, wherein the steps are as follows:
(1) firstly, the micro-service instance monitors the real-time load state of the micro-service instance, such as the processing time of each call, the real-time concurrent call quantity and other information.
(2) And the micro-service instance updates self state information to the metadata cluster at regular time, such as real-time load state and instance addition or active deletion. Furthermore, the metadata cluster detects whether the instance crashes through a certain heartbeat mechanism.
(3) The load balancing service detects whether the state change of each micro-service instance is the addition or deletion of the instance at regular time, if so, the request is redistributed by adopting a consistent hash algorithm, and relevant affected callers are informed.
(4) If the load state of the running of the instance is not the addition or deletion of the instance, the load state of each micro-service instance is regularly judged whether to reach a preset load threshold value, and if not, the requested adjustment is not made.
(5) If the load of a micro-service instance is detected to exceed the preset load threshold value, part of the requests of the instance are evenly distributed to other instances which do not exceed the load threshold value.
(6) And finally, notifying the affected caller according to the result after load balancing, and modifying the micro-service address information of the local cache of the caller by the caller.
In the built micro-service management framework data model, each micro-service instance has a load _ threshold attribute representing the load threshold value of the instance and a load _ factor attribute representing the real-time load rate of the instance, the load threshold value represents early warning information, and if the real-time load condition exceeds the threshold value, the instance is prone to being down.
In order to reduce the frequency of instance downtime, the present embodiment implements a "virtual downtime" policy through a load _ threshold attribute, that is, when the real-time load condition exceeds a load threshold value, a load balancing service is triggered in advance, so as to implement that partial requests on the load-overloaded instance are distributed to other instances before the real downtime occurs, and the caller is timely notified of the condition of instance distribution change through a real-time notification component. Such a prevention strategy may reduce the frequency of real instance outages, thereby improving the availability of the system as a whole.
Aiming at the conditions of rapid increase of the number of micro services, dynamic change of real-time states, dynamic addition and deletion of nodes and the like when the micro service architecture is applied to develop SaaS application, the invention designs a set of highly available micro service metadata management schemes, and respectively designs a metadata storage scheme, a state updating scheme and a load balancing scheme aiming at micro service management. Therefore, a developer can better manage and schedule the micro-service when the micro-service is used for developing the SaaS application, and the development efficiency is improved.
Therefore, the deployment method of the combination of the executable JAR package and the Docker container generated by the Spring Boot framework adopted by the invention effectively realizes the independent deployment of the micro-service instances. The method and the system have the advantages that the unified management of massive micro-service metadata is taken as a core, a series of schemes including high-availability micro-service metadata storage, read-write separation supporting real-time updating, load balancing supporting dynamic change and the like are included, and the problem that the types and the number of micro-services are increased sharply when a developer develops SaaS application by using a micro-service framework in a cloud environment is solved effectively.
The foregoing description shows and describes several preferred embodiments of the invention, but as aforementioned, it is to be understood that the invention is not limited to the forms disclosed herein, but is not to be construed as excluding other embodiments and is capable of use in various other combinations, modifications, and environments and is capable of changes within the scope of the inventive concept as expressed herein, commensurate with the above teachings, or the skill or knowledge of the relevant art.

Claims (1)

1. A SaaS application construction method based on a micro-service architecture is characterized by comprising the following steps:
the method comprises the following steps that a SaaS application developer develops micro-services according to micro-service design principles and an attribute model, and deploys a plurality of micro-service instances by using a Docker container; then updating the metadata of the micro service instance to a distributed metadata cluster in real time; triggering load balancing service while updating metadata, calculating the change of the instance distribution condition through a consistency hash algorithm, and informing a caller of the instance; the SaaS application developer selects an optimal micro-service instance through the load balancing service and calls the micro-service instance through an REST interface; the method specifically comprises the following steps:
(1) designing a micro-service attribute model: according to a micro-service design principle of single function, independent deployment, stateless and lightweight communication, establishing attributes which can be used for describing micro-services, including names, positions, versions, real-time states, identity authentication information, support concurrency and provider information;
(2) micro-service independent deployment: generating an executable JAR package through a Spring Boot framework, and deploying and operating a micro-service instance by using a Docker container based on a Linux container virtualization technology;
(3) updating the microservice metadata in real time: updating real-time updated state data into a Redis memory database, updating relatively fixed attribute data into a MySQL relational database, realizing the updating function of different types of metadata by adopting different storage schemes, and realizing read-write separation by combining a Redis master-slave server model;
(4) and (3) micro service instance load balancing: a single microservice can have a plurality of running instances, and the instances can be dynamically added and deleted, and requests for access can be uniformly distributed by combining a consistent hashing algorithm with the real-time load states of the instances;
the microservice design principle is as follows:
(1) single functional principle: the business logic which is handled by a single microservice is dedicated to a specific function and has a good external interface which explicitly defines the boundaries between functions and which factors change to cause a change in the function;
(2) independent deployment principle: defining each micro-service from the perspective of physical attributes to be carried out in a physically independent environment in the whole process of development, testing, construction and deployment;
(3) stateless principles: the micro-service does not need to record communication information related to an external user when receiving and processing an external request, so that stateless instances can be added or reduced very swiftly when a certain micro-service instance fails or is dynamically expanded or reduced;
(4) lightweight communication principle: adopting lightweight communication protocols XML and JSON irrelevant to the development language and the development platform to carry out interaction, and realizing cross-platform information transmission;
the SaaS application construction method also comprises a unified management method of micro-service metadata, a high-availability metadata storage method and a load balancing method supporting dynamic change;
the unified management method of the microservice metadata comprises the following steps:
(1) a plurality of micro-service instances are independently deployed, and massive state metadata and attribute metadata need to be updated to a metadata cluster in real time;
(2) the micro service instances can be dynamically expanded or reduced, and the addition and deletion changes of the instances are updated to the metadata cluster in real time;
(3) the load balancing service is deployed in a cluster form and provides services, and the position information and the state information of the micro-service instance are obtained by reading a high-availability metadata cluster;
(4) when an instance caller subscribes to the micro service for the first time, accessing the load balancing service, optimally selecting the micro service instance by combining the state information of the micro service and a preset load balancing strategy, and recording the selection condition to the local caller;
(5) the load balancing service records the relation between the caller and the used micro-service instance, and if the instances are dynamically increased or decreased, the caller is informed in time;
(6) the final instance caller communicates with the concrete micro-service instance by adopting a direct connection mode through an REST interface provided by the instance;
the high-availability metadata storage method comprises the following steps:
firstly, selecting a Redis memory data storage scheme aiming at real-time updated state data;
designing a data structure of the state data by utilizing Redis to facilitate classified storage and quick retrieval; the key form of the state attribute of the micro service instance is set as a character string 'micro service: instance: state: instance id', and the real-time position information of the micro service instance is set as a character string 'service _ id: instance _ id: url'; a key mode is formed by a plurality of fields and symbol intervals, so that a system user can classify and search data in Redis conveniently;
data persistence is carried out by utilizing AOF (application Only File) of Redis so as to avoid data loss caused by volatility of a memory; the disaster recovery backup of multiple Redis servers is realized by utilizing the Redis synchronous copying function; redis sets one Redis server as a slave server of another Redis server by utilizing SLAVEOF command and SLAVEOF configuration attribute, so that the operation of the master server can be synchronously updated to the slave server in time;
aiming at high concurrent read-write requirements, a plurality of servers are adopted to store data and are divided into a main server and a slave server, the servers and the servers realize data copying through a synchronization mechanism, wherein the main server is mainly responsible for providing data adding, deleting and modifying operations which bring changes to the data for the outside, and one or more slave servers are responsible for providing data inquiring and reading operations for the outside;
secondly, aiming at some relatively fixed and structured data, storing the data by adopting a traditional relational database MySQL;
the load balancing method supporting dynamic change comprises the following steps:
the stateless principle of the micro-service enables a single micro-service to be freely expanded into a plurality of executable specific instances, each instance is independently deployed, and operations in the instances are not mutually influenced; in the case of simultaneously operating a plurality of isomorphic instances, a load balancing scheme is needed, which can distribute requests of a plurality of callers to different instances for processing; the load balancing scheme comprises the following steps:
(1) firstly, the micro-service instance monitors the real-time load state of the micro-service instance, and monitors the processing time of each call and the real-time information of the number of concurrent calls;
(2) the method comprises the following steps that a micro-service instance updates self-state information to a metadata cluster at regular time, wherein the self-state comprises a real-time load state and instance addition or active deletion; in addition, the metadata cluster detects whether the instance crashes through a certain heartbeat mechanism;
(3) the load balancing service regularly detects whether the state change of each micro-service instance is the instance addition or deletion, if so, the consistent Hash algorithm is adopted to redistribute the request, and relevant affected callers are informed;
(4) if the load state of the micro service instances is not increased or deleted, only the running load state of the instances is reported, whether the load state of each micro service instance reaches a preset load threshold value is judged regularly, and if not, the requested adjustment is not carried out;
(5) if the load of a micro service instance is detected to exceed the preset load threshold value, distributing part of requests of the instance to other instances which do not exceed the load threshold value uniformly;
(6) finally, the affected caller is notified according to the result after load balancing, and the caller modifies the micro-service address information of the local cache;
a strategy of 'virtual downtime' is realized through a load _ threshold attribute, namely, when the real-time load condition exceeds a load threshold value, a load balancing service is triggered in advance to realize that partial requests on the load overload example are distributed to other examples before the real downtime occurs, and a caller is timely notified of the condition of example distribution change through a real-time notification component; the load _ threshold attribute represents a load threshold for the instance.
CN201610900219.6A 2016-10-14 2016-10-14 SaaS application construction method based on micro-service architecture Active CN106506605B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201610900219.6A CN106506605B (en) 2016-10-14 2016-10-14 SaaS application construction method based on micro-service architecture

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201610900219.6A CN106506605B (en) 2016-10-14 2016-10-14 SaaS application construction method based on micro-service architecture

Publications (2)

Publication Number Publication Date
CN106506605A CN106506605A (en) 2017-03-15
CN106506605B true CN106506605B (en) 2020-09-22

Family

ID=58294150

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201610900219.6A Active CN106506605B (en) 2016-10-14 2016-10-14 SaaS application construction method based on micro-service architecture

Country Status (1)

Country Link
CN (1) CN106506605B (en)

Families Citing this family (70)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107231291B (en) * 2017-04-24 2022-04-05 全球能源互联网研究院 Micro-service isolation method and device suitable for power grid information physical system
CN107273440A (en) * 2017-05-25 2017-10-20 北京邮电大学 Computer application, date storage method, micro services and microdata storehouse
CN107168746B (en) * 2017-05-27 2020-09-29 北京中电普华信息技术有限公司 Micro-service generation method and device
CN107370786B (en) * 2017-06-02 2020-11-13 广州杰赛科技股份有限公司 General information management system based on micro-service architecture
CN107239308B (en) * 2017-06-05 2021-02-26 广东西奥物联网科技股份有限公司 Method and system for realizing calling function of browser
CN107451246B (en) * 2017-07-28 2021-02-19 深圳航天智慧城市系统技术研究院有限公司 Information resource integrated processing system suitable for large-scale city
CN108038051A (en) * 2017-11-03 2018-05-15 深圳市牛鼎丰科技有限公司 Dissemination method, device, computer equipment and the storage medium of micro services
CN107734066A (en) * 2017-11-16 2018-02-23 郑州云海信息技术有限公司 A kind of data center's total management system services administering method
CN108234666A (en) * 2018-01-16 2018-06-29 云宏信息科技股份有限公司 A kind of micro services calling system, method and computer storage media
CN108366095A (en) * 2018-01-16 2018-08-03 厦门集微科技有限公司 A kind of software, that is, service platform
CN110049081A (en) * 2018-01-17 2019-07-23 广东亿迅科技有限公司 For build and using high availability Docker private library method and system
CN108282368A (en) * 2018-01-24 2018-07-13 云宏信息科技股份有限公司 A kind of micro services management system, method and computer storage media
CN108427581A (en) * 2018-02-07 2018-08-21 平安普惠企业管理有限公司 System micro services method and terminal device
CN108572845B (en) * 2018-03-15 2022-05-31 华为技术有限公司 Upgrading method of distributed micro-service cluster and related system
EP3543853A1 (en) * 2018-03-20 2019-09-25 Siemens Healthcare GmbH Providing microservice information
CN108429812A (en) * 2018-03-21 2018-08-21 上海艾融软件股份有限公司 A kind of IP curings that traditional financial system micro services are implemented
CN108446111A (en) * 2018-03-26 2018-08-24 国家电网公司客户服务中心 A kind of micro services construction method based on Spring cloud
CN108628987A (en) * 2018-04-28 2018-10-09 新疆熙菱信息技术股份有限公司 High Availabitity load data querying method and system
CN110473120A (en) * 2018-05-10 2019-11-19 深圳富桂精密工业有限公司 Micro services isomery regenerative system, method and storage medium based on industry internet
CN108763370A (en) * 2018-05-17 2018-11-06 杭州安恒信息技术股份有限公司 A kind of database high availability implementation method based on docker environment
CN108681434A (en) * 2018-05-24 2018-10-19 中科边缘智慧信息科技(苏州)有限公司 A kind of container persistent storage hanging method
CN108737548B (en) * 2018-05-24 2021-04-23 南京邮电大学 Distributed WEB micro-service container cluster architecture system and implementation method thereof
CN108829505A (en) * 2018-06-28 2018-11-16 北京奇虎科技有限公司 A kind of distributed scheduling system and method
CN109150826A (en) * 2018-06-29 2019-01-04 中译语通科技股份有限公司 A method of optimization presence information load
CN108989406A (en) * 2018-07-03 2018-12-11 北京智芯微电子科技有限公司 Software shelf realization method and system based on micro services
CN109032567B (en) * 2018-07-06 2021-08-10 中科星图股份有限公司 Service development and operation method and system in micro-service environment
CN110740046B (en) * 2018-07-18 2023-08-08 北京京东尚科信息技术有限公司 Method and device for analyzing service contract
CN108924243A (en) * 2018-07-20 2018-11-30 珠海宏桥高科技有限公司 Data distribution and processing method based on micro services framework
CN109067862B (en) * 2018-07-23 2020-10-16 北京邮电大学 Method and device for automatic extension and retraction of API Gateway
CN109324942B (en) * 2018-08-07 2022-06-07 顺丰科技有限公司 Double-activity processing method, device, system, equipment and storage medium for microservice
CN109062599B (en) * 2018-09-11 2021-11-26 郑州云海信息技术有限公司 Management method and device for code update under micro-service architecture
CN109246246B (en) * 2018-10-31 2021-03-19 成都知道创宇信息技术有限公司 Centralized full-automatic service discovery load balancing system
CN109669960A (en) * 2018-12-25 2019-04-23 钛马信息网络技术有限公司 The system and method for caching snowslide is avoided by multi-level buffer in micro services
CN109739549A (en) * 2018-12-28 2019-05-10 武汉长光科技有限公司 A kind of equipment performance acquisition method based on micro services
CN109815839B (en) * 2018-12-29 2021-10-08 深圳云天励飞技术有限公司 Loitering person identification method under micro-service architecture and related product
CN109753244A (en) * 2018-12-29 2019-05-14 北京奥鹏远程教育中心有限公司 A kind of application method of Redis cluster
CN110162414B (en) * 2019-02-01 2024-01-30 腾讯科技(深圳)有限公司 Method and device for realizing artificial intelligent service based on micro-service architecture
CN109948356A (en) * 2019-03-25 2019-06-28 江苏电力信息技术有限公司 One kind is based on service call authority control method under micro services framework
CN110149396B (en) * 2019-05-20 2022-03-29 华南理工大学 Internet of things platform construction method based on micro-service architecture
CN110209719B (en) * 2019-05-20 2023-06-16 华南理工大学 System and method for unified access of multiple databases based on micro-service architecture
CN112448971B (en) * 2019-08-29 2024-01-23 中科云谷科技有限公司 Data analysis platform, data analysis method and storage medium
US11556321B2 (en) 2019-09-06 2023-01-17 International Business Machines Corporation Deploying microservices across a service infrastructure
CN112532670B (en) * 2019-09-19 2022-07-05 阿里巴巴集团控股有限公司 Data processing method and device
CN110677475A (en) * 2019-09-26 2020-01-10 亿企赢网络科技有限公司 Micro-service processing method, device, equipment and storage medium
CN112379640B (en) * 2019-09-29 2021-06-22 北京城建设计发展集团股份有限公司 Distributed intelligent sensing controller
CN110601994B (en) * 2019-10-14 2021-07-16 南京航空航天大学 Load balancing method for micro-service chain perception in cloud environment
CN110740194B (en) * 2019-11-18 2020-11-20 南京航空航天大学 Micro-service combination method based on cloud edge fusion and application
CN110879811B (en) * 2019-11-18 2023-05-23 浪潮通用软件有限公司 Implementation method for carrying out data and program consistency self-check during running
CN111026764B (en) * 2019-12-13 2023-08-11 上海米哈游网络科技股份有限公司 Data storage method and device, electronic product and storage medium
CN111221708A (en) * 2020-01-06 2020-06-02 紫光云技术有限公司 Highly reliable and flexible micro-service system and visual management method
CN111209120A (en) * 2020-01-09 2020-05-29 平安科技(深圳)有限公司 Data synchronization method and device for microservice and computer readable storage medium
CN111404757A (en) * 2020-03-26 2020-07-10 成都云巢智联科技有限公司 Cloud-based cross-network application integration system
CN113472550A (en) * 2020-03-30 2021-10-01 阿里巴巴集团控股有限公司 Distributed management method and system, and management system
CN111581576B (en) * 2020-05-08 2024-04-02 湖南蚁坊软件股份有限公司 Development processing method and device based on micro-service and storage medium
CN111858033A (en) * 2020-06-28 2020-10-30 上海缔安科技股份有限公司 Load balancing method based on cluster and multiple processes
CN111953799A (en) * 2020-08-25 2020-11-17 山东合天智汇信息技术有限公司 Distributed management method and system for electronic license based on micro-service
CN112650088A (en) * 2020-09-03 2021-04-13 南京煜耀智能科技有限公司 Intelligent water and electricity control system based on SaaS platform
CN112068935A (en) * 2020-09-15 2020-12-11 北京值得买科技股份有限公司 Method, device and equipment for monitoring deployment of kubernets program
CN112243024B (en) * 2020-09-17 2022-05-06 北京金山云网络技术有限公司 Service control method, device, server and storage medium
CN112235378B (en) * 2020-09-29 2022-12-16 北京三快在线科技有限公司 Data updating method and device, storage medium and electronic equipment
CN114707093A (en) * 2020-10-20 2022-07-05 厦门快快网络科技有限公司 Micro-service framework system based on high concurrency distribution
CN112448848A (en) * 2020-11-13 2021-03-05 上海电器科学研究所(集团)有限公司 Automatic capacity expansion method based on micro-service
CN112788112A (en) * 2020-12-30 2021-05-11 北京航天测控技术有限公司 Automatic publishing method, device and platform for equipment health management micro-service
CN112637380B (en) * 2020-12-31 2022-09-06 网络通信与安全紫金山实验室 Distributed cluster ID resource management method, system, device and medium
CN112765221A (en) * 2021-02-27 2021-05-07 中电万维信息技术有限责任公司 Data retrieval method based on redis cache
CN113342758B (en) * 2021-08-06 2021-11-19 联想凌拓科技有限公司 Metadata management method, device, equipment and medium of file system
CN113726603A (en) * 2021-08-23 2021-11-30 中国南方电网有限责任公司 Full link performance monitoring algorithm based on micro-service architecture
CN113938374B (en) * 2021-12-20 2022-06-03 飞狐信息技术(天津)有限公司 Processing method and device for monitoring instrument panel
CN114915577A (en) * 2022-04-22 2022-08-16 武汉泰铭恒创信息技术股份有限公司 Equipment communication method based on non-blocking IO model
CN114679458B (en) * 2022-04-24 2024-03-26 特赞(上海)信息科技有限公司 Privatized deployment method and device applicable to multiple clouds

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101697526A (en) * 2009-10-10 2010-04-21 中国科学技术大学 Method and system for load balancing of metadata management in distributed file system
CN103279568A (en) * 2013-06-18 2013-09-04 无锡紫光存储系统有限公司 System and method for metadata management
CN103916467A (en) * 2014-03-25 2014-07-09 中国科学院计算技术研究所 Load transfer method and system in metadata cluster
CN105162884A (en) * 2015-09-25 2015-12-16 浪潮(北京)电子信息产业有限公司 Cloud management platform based on micro-service architecture

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101697526A (en) * 2009-10-10 2010-04-21 中国科学技术大学 Method and system for load balancing of metadata management in distributed file system
CN103279568A (en) * 2013-06-18 2013-09-04 无锡紫光存储系统有限公司 System and method for metadata management
CN103916467A (en) * 2014-03-25 2014-07-09 中国科学院计算技术研究所 Load transfer method and system in metadata cluster
CN105162884A (en) * 2015-09-25 2015-12-16 浪潮(北京)电子信息产业有限公司 Cloud management platform based on micro-service architecture

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
一种基于微服务架构的新型云件;郭栋、王伟、曾国荪;<<信息网络安全>>;20151231(第11期);第15页第1栏第11-15行,第16页第一栏5-14行,第二栏26-34行,第17页第一栏1-7行 *
一种面向海量存储系统的高效元数据集群管理方案;肖中正,陈宁江,魏峻,张文博;<<计算机研究与发展>>;20151231;第52卷(第4期);第931页第一栏第13-23行 *

Also Published As

Publication number Publication date
CN106506605A (en) 2017-03-15

Similar Documents

Publication Publication Date Title
CN106506605B (en) SaaS application construction method based on micro-service architecture
US11030185B2 (en) Schema-agnostic indexing of distributed databases
US11487771B2 (en) Per-node custom code engine for distributed query processing
Annamalai et al. Sharding the shards: managing datastore locality at scale with Akkio
US11093468B1 (en) Advanced metadata management
US9052962B2 (en) Distributed storage of data in a cloud storage system
EP3958126A1 (en) Micro-service component-based database system and related method
US10356150B1 (en) Automated repartitioning of streaming data
US20230244694A1 (en) Database system, computer program product, and data processing method
CN108196787B (en) Quota management method of cluster storage system and cluster storage system
EP2923271A2 (en) Scaling computing clusters
EP2984551A1 (en) Creating global aggregated namespaces for storage management
JP5375972B2 (en) Distributed file system, data selection method thereof, and program
US11526475B2 (en) Code generator platform for data transformation
US11080207B2 (en) Caching framework for big-data engines in the cloud
US11294931B1 (en) Creating replicas from across storage groups of a time series database
CN113204353B (en) Big data platform assembly deployment method and device
US11620310B1 (en) Cross-organization and cross-cloud automated data pipelines
Chen et al. Federation in cloud data management: Challenges and opportunities
CN113127526A (en) Distributed data storage and retrieval system based on Kubernetes
US20200004861A1 (en) Method and system for implementing parallel database queries
CN106815318B (en) Clustering method and system for time sequence database
KR20130038517A (en) System and method for managing data using distributed containers
CN113254437B (en) Batch processing job processing method and device
Vilaça et al. On the expressiveness and trade-offs of large scale tuple stores

Legal Events

Date Code Title Description
C06 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