CN112612541A - Method and device for managing configuration files - Google Patents

Method and device for managing configuration files Download PDF

Info

Publication number
CN112612541A
CN112612541A CN202011513542.0A CN202011513542A CN112612541A CN 112612541 A CN112612541 A CN 112612541A CN 202011513542 A CN202011513542 A CN 202011513542A CN 112612541 A CN112612541 A CN 112612541A
Authority
CN
China
Prior art keywords
configuration file
configuration
micro
service
file
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.)
Pending
Application number
CN202011513542.0A
Other languages
Chinese (zh)
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.)
State Grid Information and Telecommunication Co Ltd
Beijing China Power Information Technology Co Ltd
Original Assignee
State Grid Information and Telecommunication Co Ltd
Beijing China Power Information 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 State Grid Information and Telecommunication Co Ltd, Beijing China Power Information Technology Co Ltd filed Critical State Grid Information and Telecommunication Co Ltd
Priority to CN202011513542.0A priority Critical patent/CN112612541A/en
Publication of CN112612541A publication Critical patent/CN112612541A/en
Pending legal-status Critical Current

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/44505Configuring for program initiating, e.g. using registry, configuration files
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment
    • G06F8/65Updates
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/70Software maintenance or management
    • G06F8/71Version control; Configuration management

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Computer Security & Cryptography (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

The invention discloses a method and a device for managing configuration files, wherein the method comprises the following steps: acquiring and storing a first configuration file so that the first configuration file can be loaded when the micro service is started; acquiring and storing the modified configuration file after the first configuration file is updated; adding a configuration update message corresponding to the modified configuration file to a message queue; and the message queue sends the configuration updating message to the micro-service corresponding to the modification configuration file, so that the micro-service receiving the configuration updating message loads the modification configuration file. The implementation scheme can uniformly manage each configuration file in the micro-service application system, and timely inform the corresponding micro-service when the configuration file of the micro-service is updated, so that the configuration file of the micro-service can be updated in time; the configuration file can be maintained quickly and refreshed in real time, the effect that the configuration file is not required to be restarted and takes effect in real time after being updated can be achieved, and great convenience is brought to users.

Description

Method and device for managing configuration files
Technical Field
The invention relates to the technical field of software, in particular to a method and a device for managing configuration files.
Background
One or more configuration files exist in a system with a single architecture, the configuration files are stored together with an application and are pushed to a server along with the application during deployment, and the application needs to be restarted after the configuration files are modified to ensure the application to be effective. This approach is common practice in systems of monolithic architecture. However, in a distributed architecture system, a single application is decomposed into a plurality of micro-services, and the micro-services are deployed in a plurality of servers or clusters. Generally, one application has dozens of or even dozens of micro services, and each micro service has a configuration file, so that each configuration file is dispersed in dozens of micro services, rapid and dynamic adjustment is difficult to achieve, the phenomena of complex maintenance, low maintenance efficiency and high error rate occur, and the significance of the configuration files is lost.
Therefore, how to provide a method capable of implementing fast maintenance and real-time refresh of configuration files becomes an urgent problem to be solved by technical personnel in the field.
Disclosure of Invention
In view of this, the present invention provides the following technical solutions:
a method of profile management, comprising:
acquiring and storing a first configuration file so that the first configuration file can be loaded when the micro service is started;
acquiring and storing the modified configuration file after the first configuration file is updated;
adding a configuration update message corresponding to the modified configuration file to a message queue;
and the message queue sends the configuration updating message to the micro-service corresponding to the modification configuration file, so that the micro-service receiving the configuration updating message loads the modification configuration file.
Optionally, the name formats of the first configuration file and the modified configuration file are: microservice name + environment type.
Optionally, the obtaining and saving a first configuration file to enable the first configuration file to be loaded when the microservice is started includes:
and acquiring and saving a first configuration file so that the micro-service can acquire and load the first configuration file through the REST API.
Optionally, the micro service includes a plurality of micro services, and the plurality of micro services load the first configuration file based on a load balancing policy.
Optionally, the obtaining and saving the first configuration file includes:
and acquiring a first configuration file, and storing the first configuration file in a specified folder of a disk or a database.
Optionally, the obtaining and saving the first configuration file includes:
the method comprises the steps of obtaining a first configuration file, and storing the first configuration file through a version management tool.
An apparatus for managing profiles, comprising:
the file receiving module is used for acquiring and storing a first configuration file so that the first configuration file can be loaded when the micro service is started;
the file updating module is used for acquiring and storing the modified configuration file after the first configuration file is updated;
the file processing module is used for adding the configuration updating message corresponding to the modification configuration file to a message queue;
and the message notification module is used for controlling the message queue to send the configuration updating message to the micro-service corresponding to the modification configuration file, so that the micro-service receiving the configuration updating message loads the modification configuration file.
Optionally, the name formats of the first configuration file and the modified configuration file are: microservice name + environment type.
Optionally, the file receiving module is specifically configured to: and acquiring and saving a first configuration file so that the micro-service can acquire and load the first configuration file through the REST API.
Optionally, the micro service includes a plurality of micro services, and the plurality of micro services load the first configuration file based on a load balancing policy.
Compared with the prior art, the embodiment of the invention discloses a method and a device for managing configuration files, and the method comprises the following steps: acquiring and storing a first configuration file so that the first configuration file can be loaded when the micro service is started; acquiring and storing the modified configuration file after the first configuration file is updated; adding a configuration update message corresponding to the modified configuration file to a message queue; and the message queue sends the configuration updating message to the micro-service corresponding to the modification configuration file, so that the micro-service receiving the configuration updating message loads the modification configuration file. The implementation scheme can uniformly manage each configuration file in the micro-service application system, and timely inform the corresponding micro-service when the configuration file of the micro-service is updated, so that the configuration file of the micro-service can be updated in time; the configuration file can be maintained quickly and refreshed in real time, the effect that the configuration file is not required to be restarted and takes effect in real time after being updated can be achieved, and great convenience is brought to users.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below, it is obvious that the drawings in the following description are only embodiments of the present invention, and for those skilled in the art, other drawings can be obtained according to the provided drawings without creative efforts.
FIG. 1 is a flowchart of a method for managing configuration files according to an embodiment of the present invention;
FIG. 2 is a schematic diagram of an implementation architecture of a method for managing configuration files according to an embodiment of the present invention;
fig. 3 is a schematic structural diagram of a device for managing configuration files according to an embodiment of the present invention.
Detailed Description
For the sake of reference and clarity, the descriptions, abbreviations or abbreviations of the technical terms used hereinafter are summarized as follows:
micro-service: a large application is split into multiple independent modules, each called a microservice. The key of the micro-service is a system architecture, which enables the micro-service to be deployed, operated and upgraded independently, and the system architecture also enables the micro-service and the micro-service to be structurally loosely coupled, and functionally represent a unified whole.
Distributed architecture: a distributed architecture refers to an application program distributed on different computers and performing a task together through a network, and is usually in a server/client mode. Distribution is understood in a broader sense, and includes not only application programs but also databases and the like, which are distributed on different computers to accomplish the same task.
The technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are only a part of the embodiments of the present invention, and not all of the embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
Fig. 1 is a flowchart of a method for managing configuration files according to an embodiment of the present invention, and referring to fig. 1, the method for managing configuration files may include:
step 101: and acquiring and storing a first configuration file so that the first configuration file can be loaded when the micro service is started.
The execution subject of the management method of the configuration file in this embodiment may be a configuration center server. After the micro-service architecture is deployed, a corresponding configuration file needs to be provided for the micro-service architecture, so that the micro-service can assign values to corresponding variables contained in the micro-service architecture based on the configuration file, and the work is completed smoothly.
The configuration file can be uploaded by a user through a front-end interface, and the configuration central server needs to store the configuration file after receiving the configuration file uploaded by the user, so that related work can be conveniently carried out.
Step 102: and acquiring and storing the modified configuration file after the first configuration file is updated.
And under the condition that the configuration file needs to be updated, the user can still modify the configuration file through the front-end interface and upload the update data to the configuration center server.
Step 103: adding a configuration update message corresponding to the modified configuration file to a message queue.
After receiving the modified configuration file, the configuration center server needs to "inform" the configuration update message to the relevant microservices, so that the relevant microservices reload the modified configuration file in time, and thus, the work is carried out according to the latest configuration file.
In this embodiment, the process of notifying the micro service of the configuration update message is implemented by a message queue, and the message queue can perform message intercommunication between the configuration center server and the micro service.
Step 104: and the message queue sends the configuration updating message to the micro-service corresponding to the modification configuration file, so that the micro-service receiving the configuration updating message loads the modification configuration file.
The message queue column sends the configuration updating message to the corresponding micro-service, and the micro-service receiving the configuration updating message learns that the configuration file is updated, actively pulls the latest configuration file from the configuration center server, namely modifies the configuration file, completes corresponding loading and performs work processing according to the latest configuration file.
The management method for the configuration files can uniformly manage each configuration file in the micro-service application system, and timely inform the corresponding micro-service when the configuration file of the micro-service is updated, so that the configuration file of the micro-service can be updated timely; the configuration file can be maintained quickly and refreshed in real time, the effect that the configuration file is not required to be restarted and takes effect in real time after being updated can be achieved, and great convenience is brought to users.
In the above embodiment, the name formats of the first configuration file and the modified configuration file may be, but are not limited to: microservice name + environment type.
The microservice includes a plurality of microservices that load the first configuration file based on a load balancing policy. The load balancing policy may be any type of existing load balancing policy.
In one implementation, the obtaining and saving a first configuration file to enable the first configuration file to be loaded when the microservice is started may include: and acquiring and saving a first configuration file so that the micro-service can acquire and load the first configuration file through the REST API.
In one implementation, the obtaining and saving the first configuration file may include: and acquiring a first configuration file, and storing the first configuration file in a specified folder of a disk or a database.
In one implementation, the obtaining and saving the first configuration file may include: the method comprises the steps of obtaining a first configuration file, and storing the first configuration file through a version management tool.
It can be understood that the single application configuration file is stored in the system and pushed to the same server together with the application when deployed, however, this approach is not suitable for system applications under the microservice architecture. The technical scheme disclosed by the application can be applied to system application under a micro-service architecture, the configuration files can be managed in a unified mode, and the configuration files can be adjusted rapidly and dynamically.
Fig. 2 is a schematic diagram of an implementation architecture of a management method for a configuration file disclosed in an embodiment of the present invention, and in a specific implementation, with reference to fig. 2, an implementation process of the management method for a configuration file may include:
1. and uploading the configuration file to the configuration center server through the portal interface by the user. The name of the configuration file has a specific format, a micro service name + an environment type (development, test, production);
2. loading files when the micro service is started, wherein the mode of loading configuration files by the micro service is obtained by calling REST API provided by a configuration center, if the configuration center is cluster deployment, the micro service needs to pass through load balancing when accessing, and after the micro service obtains the configuration files, the micro service assigns the contents of the configuration files to corresponding variables;
3. storing configuration files, wherein if version management is required, the configuration files can be stored through a git version management tool, a svn version management tool and other version management tools, can also be directly stored in a designated folder of a server disk, and can also be stored in a database;
4. a user modifies the configuration file through a portal interface, and the updated configuration file is uploaded to a configuration center;
5. the configuration center notices the change of the configuration file and informs a Message Queue (MQ) of the change of the configuration file;
6. a Message Queue (MQ) notifies each microservice of messages configuring updates;
7. and after being informed, the micro service pulls the updated configuration file from the configuration center again and assigns values to the variables in the system again.
Each time the configuration file is changed later, each micro service can be informed through the message queue, and the micro service reloads a new configuration file, so that the dynamic refreshing of the configuration file can be realized and the configuration file can be effective in real time.
While, for purposes of simplicity of explanation, the foregoing method embodiments have been described as a series of acts or combination of acts, it will be appreciated by those skilled in the art that the present invention is not limited by the illustrated ordering of acts, as some steps may occur in other orders or concurrently with other steps in accordance with the invention. Further, those skilled in the art should also appreciate that the embodiments described in the specification are preferred embodiments and that the acts and modules referred to are not necessarily required by the invention.
The method is described in detail in the embodiments disclosed above, and the method of the present invention can be implemented by various types of apparatuses, so that the present invention also discloses an apparatus, and the following detailed description will be given of specific embodiments.
Fig. 3 is a schematic structural diagram of a configuration file management apparatus according to an embodiment of the present invention, and referring to fig. 3, the configuration file management apparatus 30 may include:
the file receiving module 301 is configured to obtain and store a first configuration file, so that the first configuration file can be loaded when the microservice is started.
A file updating module 302, configured to obtain and store the modified configuration file after the first configuration file is updated.
A file processing module 303, configured to add a configuration update message corresponding to the modified configuration file to a message queue.
A message notification module 304, configured to control the message queue to send the configuration update message to the micro service corresponding to the modified configuration file, so that the micro service receiving the configuration update message loads the modified configuration file.
The management device for the configuration files can uniformly manage each configuration file in the micro-service application system, and timely inform the corresponding micro-service when the configuration file of the micro-service is updated, so that the configuration file of the micro-service can be updated timely; the configuration file can be maintained quickly and refreshed in real time, the effect that the configuration file is not required to be restarted and takes effect in real time after being updated can be achieved, and great convenience is brought to users.
In the above embodiment, the name formats of the first configuration file and the modified configuration file are: microservice name + environment type.
In the above embodiment, the file receiving module is specifically configured to: and acquiring and saving a first configuration file so that the micro-service can acquire and load the first configuration file through the REST API.
In the above embodiment, the micro service may include a plurality of micro services, and the plurality of micro services load the first configuration file based on a load balancing policy.
The specific implementation of the management apparatus for configuration files and each module thereof may refer to the content introduction of the corresponding part in the method embodiment, and will not be described repeatedly herein.
The embodiments in the present description are described in a progressive manner, each embodiment focuses on differences from other embodiments, and the same and similar parts among the embodiments are referred to each other. The device disclosed by the embodiment corresponds to the method disclosed by the embodiment, so that the description is simple, and the relevant points can be referred to the method part for description.
It is further noted that, herein, relational terms such as first and second, and the like may be used solely to distinguish one entity or action from another entity or action without necessarily requiring or implying any actual such relationship or order between such entities or actions. Also, the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. Without further limitation, an element defined by the phrase "comprising an … …" does not exclude the presence of other identical elements in a process, method, article, or apparatus that comprises the element.
The steps of a method or algorithm described in connection with the embodiments disclosed herein may be embodied directly in hardware, in a software module executed by a processor, or in a combination of the two. A software module may reside in Random Access Memory (RAM), memory, Read Only Memory (ROM), electrically programmable ROM, electrically erasable programmable ROM, registers, hard disk, a removable disk, a CD-ROM, or any other form of storage medium known in the art.
The previous description of the disclosed embodiments is provided to enable any person skilled in the art to make or use the present invention. Various modifications to these embodiments will be readily apparent to those skilled in the art, and the generic principles defined herein may be applied to other embodiments without departing from the spirit or scope of the invention. Thus, the present invention is not intended to be limited to the embodiments shown herein but is to be accorded the widest scope consistent with the principles and novel features disclosed herein.

Claims (10)

1. A method for managing a configuration file, comprising:
acquiring and storing a first configuration file so that the first configuration file can be loaded when the micro service is started;
acquiring and storing the modified configuration file after the first configuration file is updated;
adding a configuration update message corresponding to the modified configuration file to a message queue;
and the message queue sends the configuration updating message to the micro-service corresponding to the modification configuration file, so that the micro-service receiving the configuration updating message loads the modification configuration file.
2. The method for managing configuration files according to claim 1, wherein the name formats of the first configuration file and the modified configuration file are: microservice name + environment type.
3. The method for managing configuration files according to claim 1, wherein the obtaining and saving a first configuration file to enable the first configuration file to be loaded when the microservice is started comprises:
and acquiring and saving a first configuration file so that the micro-service can acquire and load the first configuration file through the REST API.
4. The method of claim 1, wherein the microservice comprises a plurality of microservices, and wherein the plurality of microservices load the first configuration file based on a load balancing policy.
5. The method for managing configuration files according to any one of claims 1 to 4, wherein the obtaining and saving the first configuration file comprises:
and acquiring a first configuration file, and storing the first configuration file in a specified folder of a disk or a database.
6. The method for managing configuration files according to claim 5, wherein the obtaining and saving the first configuration file comprises:
the method comprises the steps of obtaining a first configuration file, and storing the first configuration file through a version management tool.
7. An apparatus for managing a configuration file, comprising:
the file receiving module is used for acquiring and storing a first configuration file so that the first configuration file can be loaded when the micro service is started;
the file updating module is used for acquiring and storing the modified configuration file after the first configuration file is updated;
the file processing module is used for adding the configuration updating message corresponding to the modification configuration file to a message queue;
and the message notification module is used for controlling the message queue to send the configuration updating message to the micro-service corresponding to the modification configuration file, so that the micro-service receiving the configuration updating message loads the modification configuration file.
8. The apparatus for managing configuration files according to claim 7, wherein the name formats of the first configuration file and the modified configuration file are: microservice name + environment type.
9. The apparatus for managing a configuration file according to claim 7, wherein the file receiving module is specifically configured to: and acquiring and saving a first configuration file so that the micro-service can acquire and load the first configuration file through the REST API.
10. The apparatus for profile management according to claim 7, wherein the micro-service comprises a plurality of micro-services, and wherein the plurality of micro-services load the first profile based on a load balancing policy.
CN202011513542.0A 2020-12-18 2020-12-18 Method and device for managing configuration files Pending CN112612541A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202011513542.0A CN112612541A (en) 2020-12-18 2020-12-18 Method and device for managing configuration files

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202011513542.0A CN112612541A (en) 2020-12-18 2020-12-18 Method and device for managing configuration files

Publications (1)

Publication Number Publication Date
CN112612541A true CN112612541A (en) 2021-04-06

Family

ID=75244343

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202011513542.0A Pending CN112612541A (en) 2020-12-18 2020-12-18 Method and device for managing configuration files

Country Status (1)

Country Link
CN (1) CN112612541A (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113703866A (en) * 2021-08-25 2021-11-26 上海哔哩哔哩科技有限公司 Configuration center information synchronization method and system
CN115098126A (en) * 2022-06-06 2022-09-23 北京结慧科技有限公司 Configuration file management method, system, computer equipment and program product
CN115914290A (en) * 2022-11-07 2023-04-04 合众新能源汽车股份有限公司 Internet of vehicles micro-service automation interface monitoring method and device

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106612188A (en) * 2015-10-21 2017-05-03 中兴通讯股份有限公司 Method and device for extending software function based on micro service architecture
CN108134696A (en) * 2017-12-15 2018-06-08 云宏信息科技股份有限公司 A kind of micro services configuration update method and device
CN110932912A (en) * 2019-12-12 2020-03-27 北京中电普华信息技术有限公司 Method for realizing unified management of configuration files under micro-service architecture
CN111708571A (en) * 2020-06-17 2020-09-25 珠海宏桥高科技有限公司 Micro-service deployment method, device, electronic equipment and storage medium

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106612188A (en) * 2015-10-21 2017-05-03 中兴通讯股份有限公司 Method and device for extending software function based on micro service architecture
CN108134696A (en) * 2017-12-15 2018-06-08 云宏信息科技股份有限公司 A kind of micro services configuration update method and device
CN110932912A (en) * 2019-12-12 2020-03-27 北京中电普华信息技术有限公司 Method for realizing unified management of configuration files under micro-service architecture
CN111708571A (en) * 2020-06-17 2020-09-25 珠海宏桥高科技有限公司 Micro-service deployment method, device, electronic equipment and storage medium

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113703866A (en) * 2021-08-25 2021-11-26 上海哔哩哔哩科技有限公司 Configuration center information synchronization method and system
CN113703866B (en) * 2021-08-25 2024-04-26 上海哔哩哔哩科技有限公司 Configuration center information synchronization method and system
CN115098126A (en) * 2022-06-06 2022-09-23 北京结慧科技有限公司 Configuration file management method, system, computer equipment and program product
CN115914290A (en) * 2022-11-07 2023-04-04 合众新能源汽车股份有限公司 Internet of vehicles micro-service automation interface monitoring method and device

Similar Documents

Publication Publication Date Title
US10089488B2 (en) Systems, methods, and apparatuses for implementing cross-organizational data sharing
CN112612541A (en) Method and device for managing configuration files
US10762075B2 (en) Database interface agent for a tenant-based upgrade system
CN110932912A (en) Method for realizing unified management of configuration files under micro-service architecture
CN108696372B (en) Method and system for keeping system configuration consistency
US8768973B2 (en) Apparatus and method for expanding a shared-nothing system
US10063651B2 (en) Parallel streams to maintain a target data transfer rate
US8010484B2 (en) Generating data subscriptions based on application data
US9830091B2 (en) Policy-based data tiering using a cloud architecture
CN103634144A (en) Method, system and equipment for managing multi-IDC (internet data center) cluster configuration file
US20080259922A1 (en) Intersection-based configuration management
US8549129B2 (en) Live migration method for large-scale IT management systems
US20210081358A1 (en) Background dataset maintenance
CN108156030B (en) Method and device for synchronizing configuration strategies
US20160259812A1 (en) Method and system for accessing a distributed file system
CN115098126A (en) Configuration file management method, system, computer equipment and program product
CN111158752A (en) SAAS multi-version control system and use method thereof
US20190058632A1 (en) System and method for supporting a situational configuration in an application server environment
WO2018082079A1 (en) Method and apparatus for dynamically managing data exchange
CN109684270A (en) Database filing method, apparatus, system, equipment and readable storage medium storing program for executing
US8452817B1 (en) Update of data structure configured to store metadata associated with a database system
CN116800825A (en) Calling method, device, equipment and medium based on micro-service splitting
US7966260B2 (en) Generating data subscriptions based on application data
US9361351B2 (en) Data management via active and inactive table space containers
CN110347654B (en) Method and device for online cluster characteristics

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