WO2017173842A1 - Method of partitioning and storing real-time distributed database in memory in energy management system - Google Patents

Method of partitioning and storing real-time distributed database in memory in energy management system Download PDF

Info

Publication number
WO2017173842A1
WO2017173842A1 PCT/CN2016/109167 CN2016109167W WO2017173842A1 WO 2017173842 A1 WO2017173842 A1 WO 2017173842A1 CN 2016109167 W CN2016109167 W CN 2016109167W WO 2017173842 A1 WO2017173842 A1 WO 2017173842A1
Authority
WO
WIPO (PCT)
Prior art keywords
data
partition
different
management system
energy management
Prior art date
Application number
PCT/CN2016/109167
Other languages
French (fr)
Chinese (zh)
Inventor
吴庆曦
彭晖
王瑾
靳晶
魏娜
陈鹏
季学纯
葛以踊
高原
孟勇亮
孙世明
Original Assignee
国电南瑞科技股份有限公司
国电南瑞南京控制系统有限公司
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 国电南瑞科技股份有限公司, 国电南瑞南京控制系统有限公司 filed Critical 国电南瑞科技股份有限公司
Publication of WO2017173842A1 publication Critical patent/WO2017173842A1/en

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/22Indexing; Data structures therefor; Storage structures
    • G06F16/2282Tablespace storage structures; Management thereof
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/27Replication, distribution or synchronisation of data between databases or within a distributed database system; Distributed database system architectures therefor

Definitions

  • the invention relates to a partition storage method for a distributed real-time memory database of an energy management system.
  • EMS Energy Management System
  • SCADA data acquisition and monitoring
  • APC automatic power generation control
  • network application analysis network application analysis
  • the energy management system is complex in structure and rich in functions. Its real-time database contains a large amount of data. Due to the large number of single-table records in its real-time in-memory database, data access performance is greatly reduced.
  • the present invention provides a partition storage method for a distributed real-time memory database of an energy management system, which divides a larger data table into multiple data partitions by means of database fragmentation, and stores different record data in different partitions.
  • a partition storage method for a distributed real-time memory database of an energy management system which divides a larger data table into multiple data partitions by means of database fragmentation, and stores different record data in different partitions.
  • different partitions are divided into different files for independent storage.
  • a method for partition storage of a distributed real-time memory database of an energy management system comprising the steps of:
  • Step 1 ID-number and group the data in the data table, each data record has a unique ID number and each data record is assigned a group number;
  • Step 2 Each data record is allocated to a corresponding partition storage file according to the allocated group number
  • Step 3 Create a data table ID number - partition number mapping, and create an index file
  • Step 4 Store the same partition storage file to different data nodes as needed, or store different partition storage files to the same data node.
  • the database index of each data node only includes data already existing on the node.
  • the real-time in-memory database establishes a separate partition index to store the mapping relationship between the ID of each data record in the data table to the group number and the storage location of the data record, and form a separate index file for each data table.
  • the larger data table is divided into multiple data partitions by means of database fragmentation, and different record data is stored in different partitions.
  • different partitions are separately divided into different files for independent storage.
  • FIG. 1 is a schematic diagram of a data file deployment manner in an embodiment of the present invention.
  • the partition storage method of the distributed real-time memory database of the energy management system includes the following steps:
  • Step 1 ID-number and group the data in the data table, each data record has a unique ID number and each data record is assigned a group number;
  • the present invention takes the data table device as an example, and the device table includes two fields dev_id (ID number). And dev_type (group number), as shown in Table 1:
  • Dev_id Dev_type 001 1 002 2 003 1 004 3 005 2 006 1
  • Step 2 Each data record is allocated to a corresponding partition storage file according to the allocated group number
  • dev_type is 1, the record is stored in the partition file table A_ partition 1; corresponding dev_type is 2, and the partition file is stored.
  • Table A_Partition 2; dev_type is 3, and is stored in the partition file table A_Partition 3, which corresponds to Table 2-4:
  • Step 3 Create a data table ID number - partition number mapping, create an index file, the primary key index file is the table A_ primary key in Figure 1, as shown in Table 5:
  • Step 4 Store the same partition storage file to different data nodes as needed, or store different partition storage files to the same data node. As shown in Figure 1, different partitions can be stored on different computer nodes.
  • the database index of each data node only includes data already existing on the node.
  • the data on each computer node is separately constructed with an index, and only the data of the node is included in the index.
  • the real-time in-memory database establishes a separate partition index to store the mapping relationship between the ID of each data record in the data table to the group number and the storage location of the data record, and form a separate index file for each data table.
  • the partition storage method of the distributed real-time memory database of the energy management system of the present invention is combined
  • the work is implemented on the self-developed real-time library of the application layer, and does not depend on the specific operating system, and is applicable to various operating systems.
  • This method guarantees portability and can be safely and stably run on the operating system platforms of IBM AIX, Sun Solaris, Alpha Tru64, HPUX, Linux, Windows, etc. with the real-time database system.
  • the larger data table is divided into multiple data partitions by means of database fragmentation, and different record data is stored in different partitions.
  • different partitions are separately divided into different files for independent storage.

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Databases & Information Systems (AREA)
  • Data Mining & Analysis (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Software Systems (AREA)
  • Computing Systems (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

A method of partitioning and storing a real-time distributed database in memory in an energy management system is characterized by the following steps: Step 1., numbering data in a table using an identifier number and grouping the same, wherein each data entry has a unique ID number and is assigned with a group number; Step 2., assigning, according to the assigned group number, each data entry to a corresponding partitioned file; Step 3: establishing mapping between a table ID number and a partition number, and creating an index file; and Step 4: storing according to requirements a partitioned file to different data nodes, or storing different partitioned files to a same data node. The embodiment stores different data records to different partitions, and independently stores different partitions as different files for ensuring concurrent access of the partitioned data.

Description

能量管理系统分布式实时内存数据库的分区存储方法Partition storage method for distributed real-time memory database of energy management system 技术领域Technical field
本发明涉及一种能量管理系统分布式实时内存数据库的分区存储方法。The invention relates to a partition storage method for a distributed real-time memory database of an energy management system.
背景技术Background technique
能量管理系统(EMS)是现代电网调度自动化系统(含硬、软件)的总称,其主要功能由基础功能和应用功能两个部分组成。基础功能包括:计算机、操作系统和EMS支撑系统,而应用功能包括:数据采集与监视(SCADA)、自动发电控制(AGC)与计划、网络应用分析等。Energy Management System (EMS) is a general term for modern power grid dispatching automation systems (including hardware and software). Its main functions are composed of basic functions and application functions. The basic functions include: computer, operating system and EMS support system, and application functions include: data acquisition and monitoring (SCADA), automatic power generation control (AGC) and planning, network application analysis.
能量管理系统结构复杂、功能丰富,其实时数据库包含大量数据,由于其实时内存数据库中,单表记录数过大,导致数据访问性能大大降低。The energy management system is complex in structure and rich in functions. Its real-time database contains a large amount of data. Due to the large number of single-table records in its real-time in-memory database, data access performance is greatly reduced.
发明内容Summary of the invention
针对上述问题,本发明提供一种能量管理系统分布式实时内存数据库的分区存储方法,通过数据库分片的方式将较大的数据表分成多个数据分区,将不同的记录数据存储于不同的分区中,同时为了保证分区数据可以并发访问,将不同的分区进行分成不同文件独立存储。In view of the above problems, the present invention provides a partition storage method for a distributed real-time memory database of an energy management system, which divides a larger data table into multiple data partitions by means of database fragmentation, and stores different record data in different partitions. In order to ensure that the partitioned data can be accessed concurrently, different partitions are divided into different files for independent storage.
为实现上述技术目的,达到上述技术效果,本发明通过以下技术方案实现:In order to achieve the above technical effects and achieve the above technical effects, the present invention is achieved by the following technical solutions:
能量管理系统分布式实时内存数据库的分区存储方法,其特征在于,包括如下步骤:A method for partition storage of a distributed real-time memory database of an energy management system, comprising the steps of:
步骤1、将数据表中的数据进行ID编号和分组,每条数据记录拥有唯一的ID编号且每条数据记录被分配一个分组编号;Step 1. ID-number and group the data in the data table, each data record has a unique ID number and each data record is assigned a group number;
步骤2、每条数据记录根据分配的分组编号分配到对应的分区存储文件中;Step 2: Each data record is allocated to a corresponding partition storage file according to the allocated group number;
步骤3、建立数据表ID编号-分区编号映射,创建索引文件; Step 3: Create a data table ID number - partition number mapping, and create an index file;
步骤4、根据需要将同一个分区存储文件存储到不同的数据节点,或将不同的分区存储文件存储到同一个数据节点。Step 4. Store the same partition storage file to different data nodes as needed, or store different partition storage files to the same data node.
优选,每个数据节点的数据库索引只包括本节点上已有的数据。Preferably, the database index of each data node only includes data already existing on the node.
优选,实时内存数据库建立单独的分区索引存储数据表中每条数据记录的ID到数据记录所属分组编号及存储位置的映射关系,并为每张数据表形成独立的索引文件。Preferably, the real-time in-memory database establishes a separate partition index to store the mapping relationship between the ID of each data record in the data table to the group number and the storage location of the data record, and form a separate index file for each data table.
本发明的有益效果是:The beneficial effects of the invention are:
第一、实现实时数据库中数据分区的独立存储;First, realize independent storage of data partitions in the real-time database;
第二、提供分片数据的并发读写;Second, provide concurrent reading and writing of fragmented data;
第三、数据的可移植性强。Third, the data is highly portable.
通过数据库分片的方式将较大的数据表分成多个数据分区,将不同的记录数据存储于不同的分区中,同时为了保证分区数据可以并发访问,将不同的分区进行分成不同文件独立存储。The larger data table is divided into multiple data partitions by means of database fragmentation, and different record data is stored in different partitions. In order to ensure that the partitioned data can be accessed concurrently, different partitions are separately divided into different files for independent storage.
附图说明DRAWINGS
图1是本发明实施例中数据文件部署方式的示意图。FIG. 1 is a schematic diagram of a data file deployment manner in an embodiment of the present invention.
具体实施方式detailed description
下面结合附图和具体的实施例对本发明技术方案作进一步的详细描述,以使本领域的技术人员可以更好的理解本发明并能予以实施,但所举实施例不作为对本发明的限定。The technical solutions of the present invention are further described in detail below with reference to the accompanying drawings and specific embodiments, so that those skilled in the art can understand the invention.
能量管理系统分布式实时内存数据库的分区存储方法,包括如下步骤:The partition storage method of the distributed real-time memory database of the energy management system includes the following steps:
步骤1、将数据表中的数据进行ID编号和分组,每条数据记录拥有唯一的ID编号且每条数据记录被分配一个分组编号;Step 1. ID-number and group the data in the data table, each data record has a unique ID number and each data record is assigned a group number;
本发明以数据表device为例,device表包含2个字段dev_id(ID编号), 和dev_type(分组编号),如表1所示:The present invention takes the data table device as an example, and the device table includes two fields dev_id (ID number). And dev_type (group number), as shown in Table 1:
表1Table 1
dev_idDev_id dev_typeDev_type
001001 11
002002 22
003003 11
004004 33
005005 22
006006 11
步骤2、每条数据记录根据分配的分组编号分配到对应的分区存储文件中;Step 2: Each data record is allocated to a corresponding partition storage file according to the allocated group number;
数据表按照dev_type进行分区后变为3个分区,并将分区数据写入到对应的分区文件:对应dev_type为1,记录存入分区文件表A_分区1;对应dev_type为2,存入分区文件表A_分区2;dev_type为3,存入分区文件表A_分区3,分别对应为表2-4:After the data table is partitioned according to dev_type, it becomes 3 partitions, and the partition data is written to the corresponding partition file: corresponding dev_type is 1, the record is stored in the partition file table A_ partition 1; corresponding dev_type is 2, and the partition file is stored. Table A_Partition 2; dev_type is 3, and is stored in the partition file table A_Partition 3, which corresponds to Table 2-4:
表2 分区文件表A_分区1Table 2 partition file table A_ partition 1
dev_idDev_id dev_typeDev_type
001001 11
003003 11
006006 11
表3 分区文件表A_分区2Table 3 partition file table A_ partition 2
dev_idDev_id dev_typeDev_type
002002 22
005005 22
表4 分区文件表A_分区3Table 4 partition file table A_ partition 3
dev_idDev_id dev_typeDev_type
004004 33
007007 33
步骤3、建立数据表ID编号-分区编号映射,创建索引文件,主键索引文件即图1中的表A_主键,如表5所示:Step 3: Create a data table ID number - partition number mapping, create an index file, the primary key index file is the table A_ primary key in Figure 1, as shown in Table 5:
表5 主键索引文件表A_主键Table 5 Primary Key Index File Table A_ Primary Key
dev_idDev_id 分区编号Partition number 存储位置storage location
001001 11 11
002002 22 11
003003 11 22
004004 33 11
005005 22 22
006006 11 33
007007 33 22
步骤4、根据需要将同一个分区存储文件存储到不同的数据节点,或将不同的分区存储文件存储到同一个数据节点,如图1所示,不同分区可存储在不同的计算机节点上。Step 4. Store the same partition storage file to different data nodes as needed, or store different partition storage files to the same data node. As shown in Figure 1, different partitions can be stored on different computer nodes.
优选,每个数据节点的数据库索引只包括本节点上已有的数据。每个计算机节点上的数据单独构造索引,索引中只包含本节点的数据。Preferably, the database index of each data node only includes data already existing on the node. The data on each computer node is separately constructed with an index, and only the data of the node is included in the index.
优选,实时内存数据库建立单独的分区索引存储数据表中每条数据记录的ID到数据记录所属分组编号及存储位置的映射关系,并为每张数据表形成独立的索引文件。Preferably, the real-time in-memory database establishes a separate partition index to store the mapping relationship between the ID of each data record in the data table to the group number and the storage location of the data record, and form a separate index file for each data table.
本发明涉及的能量管理系统分布式实时内存数据库的分区存储方法是结合 工作在应用层的自主开发的实时库上实现,不依赖于具体的操作系统,适用于各种操作系统。本方法保证了可移植性,能够随着实时数据库系统安全、稳定地运行在IBM AIX、Sun Solaris、Alpha Tru64、HPUX、Linux、Windows等操作系统平台上。The partition storage method of the distributed real-time memory database of the energy management system of the present invention is combined The work is implemented on the self-developed real-time library of the application layer, and does not depend on the specific operating system, and is applicable to various operating systems. This method guarantees portability and can be safely and stably run on the operating system platforms of IBM AIX, Sun Solaris, Alpha Tru64, HPUX, Linux, Windows, etc. with the real-time database system.
本发明的有益效果是:The beneficial effects of the invention are:
第一、实现实时数据库中数据分区的独立存储;First, realize independent storage of data partitions in the real-time database;
第二、提供分片数据的并发读写;Second, provide concurrent reading and writing of fragmented data;
第三、数据的可移植性强。Third, the data is highly portable.
通过数据库分片的方式将较大的数据表分成多个数据分区,将不同的记录数据存储于不同的分区中,同时为了保证分区数据可以并发访问,将不同的分区进行分成不同文件独立存储。The larger data table is divided into multiple data partitions by means of database fragmentation, and different record data is stored in different partitions. In order to ensure that the partitioned data can be accessed concurrently, different partitions are separately divided into different files for independent storage.
以上仅为本发明的优选实施例,并非因此限制本发明的专利范围,凡是利用本发明说明书及附图内容所作的等效结构或者等效流程变换,或者直接或间接运用在其他相关的技术领域,均同理包括在本发明的专利保护范围内。 The above are only the preferred embodiments of the present invention, and are not intended to limit the scope of the invention, and the equivalent structure or equivalent process transformations made by the description of the invention and the drawings are directly or indirectly applied to other related technical fields. The same is included in the scope of patent protection of the present invention.

Claims (3)

  1. 能量管理系统分布式实时内存数据库的分区存储方法,其特征在于,包括如下步骤:A method for partition storage of a distributed real-time memory database of an energy management system, comprising the steps of:
    步骤1、将数据表中的数据进行ID编号和分组,每条数据记录拥有唯一的ID编号且每条数据记录被分配一个分组编号;Step 1. ID-number and group the data in the data table, each data record has a unique ID number and each data record is assigned a group number;
    步骤2、每条数据记录根据分配的分组编号分配到对应的分区存储文件中;Step 2: Each data record is allocated to a corresponding partition storage file according to the allocated group number;
    步骤3、建立数据表ID编号-分区编号映射,创建索引文件;Step 3: Create a data table ID number - partition number mapping, and create an index file;
    步骤4、根据需要将同一个分区存储文件存储到不同的数据节点,或将不同的分区存储文件存储到同一个数据节点。Step 4. Store the same partition storage file to different data nodes as needed, or store different partition storage files to the same data node.
  2. 根据权利要求1所述的能量管理系统分布式实时内存数据库的分区存储方法,其特征在于,每个数据节点的数据库索引只包括本节点上已有的数据。The method for partition storage of a distributed real-time in-memory database of an energy management system according to claim 1, wherein the database index of each data node includes only data existing on the node.
  3. 根据权利要求1所述的能量管理系统分布式实时内存数据库的分区存储方法,其特征在于,实时内存数据库建立单独的分区索引存储数据表中每条数据记录的ID到数据记录所属分组编号及存储位置的映射关系,并为每张数据表形成独立的索引文件。 The method for partition storage of a distributed real-time in-memory database of an energy management system according to claim 1, wherein the real-time in-memory database establishes a separate partition index to store the ID of each data record in the data table to the group number and storage of the data record. The mapping of locations and the formation of separate index files for each data table.
PCT/CN2016/109167 2016-04-05 2016-12-09 Method of partitioning and storing real-time distributed database in memory in energy management system WO2017173842A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201610207974.6A CN105912601A (en) 2016-04-05 2016-04-05 Partition storage method for distributed real-time memory database of energy management system
CN201610207974.6 2016-04-05

Publications (1)

Publication Number Publication Date
WO2017173842A1 true WO2017173842A1 (en) 2017-10-12

Family

ID=56745427

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2016/109167 WO2017173842A1 (en) 2016-04-05 2016-12-09 Method of partitioning and storing real-time distributed database in memory in energy management system

Country Status (2)

Country Link
CN (1) CN105912601A (en)
WO (1) WO2017173842A1 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115712622A (en) * 2022-11-21 2023-02-24 中国电力科学研究院有限公司 Electric power transaction data processing method, system, computer equipment and storage medium

Families Citing this family (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105912601A (en) * 2016-04-05 2016-08-31 国电南瑞科技股份有限公司 Partition storage method for distributed real-time memory database of energy management system
CN106841826A (en) * 2017-01-23 2017-06-13 国网山东省电力公司电力科学研究院 Real-time electromagnetic environment on-line monitoring system and method based on multi-stage distributed network
CN107656980B (en) * 2017-09-07 2020-09-22 北京神州绿盟信息安全科技股份有限公司 Method applied to distributed database system and distributed database system
CN107609143B (en) * 2017-09-21 2020-06-05 国电南瑞科技股份有限公司 Fragment information storage method of distributed real-time memory database
CN107977570A (en) * 2017-11-21 2018-05-01 福建中金在线信息科技有限公司 Information Authentication method, apparatus, electronic equipment and storage medium
CN108920272B (en) * 2018-06-08 2024-06-11 中国平安人寿保险股份有限公司 Data processing method, device, computer equipment and storage medium
CN110888934A (en) * 2019-11-12 2020-03-17 中核控制系统工程有限公司 Scatter-based big data storage method

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20110125745A1 (en) * 2009-11-25 2011-05-26 Bmc Software, Inc. Balancing Data Across Partitions of a Table Space During Load Processing
CN104008214A (en) * 2014-04-30 2014-08-27 深圳市国电南思系统控制有限公司 Method and system for storing real-time running information of intelligent substation
CN104123300A (en) * 2013-04-26 2014-10-29 上海云人信息科技有限公司 Data distributed storage system and method
CN105335448A (en) * 2014-08-15 2016-02-17 中国银联股份有限公司 Distributed environment-based data storage and processing system
CN105912601A (en) * 2016-04-05 2016-08-31 国电南瑞科技股份有限公司 Partition storage method for distributed real-time memory database of energy management system

Family Cites Families (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102521386B (en) * 2011-12-22 2013-07-10 清华大学 Method for grouping space metadata based on cluster storage
CN103714098B (en) * 2012-09-29 2018-10-23 伊姆西公司 Method and system for carrying out subregion to database
CN102968503B (en) * 2012-12-10 2015-10-07 曙光信息产业(北京)有限公司 The data processing method of Database Systems and Database Systems

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20110125745A1 (en) * 2009-11-25 2011-05-26 Bmc Software, Inc. Balancing Data Across Partitions of a Table Space During Load Processing
CN104123300A (en) * 2013-04-26 2014-10-29 上海云人信息科技有限公司 Data distributed storage system and method
CN104008214A (en) * 2014-04-30 2014-08-27 深圳市国电南思系统控制有限公司 Method and system for storing real-time running information of intelligent substation
CN105335448A (en) * 2014-08-15 2016-02-17 中国银联股份有限公司 Distributed environment-based data storage and processing system
CN105912601A (en) * 2016-04-05 2016-08-31 国电南瑞科技股份有限公司 Partition storage method for distributed real-time memory database of energy management system

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115712622A (en) * 2022-11-21 2023-02-24 中国电力科学研究院有限公司 Electric power transaction data processing method, system, computer equipment and storage medium
CN115712622B (en) * 2022-11-21 2023-03-28 中国电力科学研究院有限公司 Electric power transaction data processing method, system, computer device and storage medium

Also Published As

Publication number Publication date
CN105912601A (en) 2016-08-31

Similar Documents

Publication Publication Date Title
WO2017173842A1 (en) Method of partitioning and storing real-time distributed database in memory in energy management system
CN104978361B (en) Method and device for storing real-time monitoring data of power environment
CN107402992A (en) A kind of distributed NewSQL Database Systems and full-text search method for building up
US9576019B2 (en) Increasing distributed database capacity
CN102411634B (en) A kind of date storage method promoting embedded database real-time
CN108848132B (en) Power distribution scheduling main station system based on cloud
CN103218305B (en) The distribution method of memory space
CN102243660A (en) Data access method and device
JP2016539449A (en) Database implementation method
CN108268614B (en) Distributed management method for forest resource spatial data
CN103631931A (en) Method and system for hierarchically storing data
CN104536903A (en) Mixed storage method and system for conducting classified storage according to data attributes
CN105389367A (en) Power network graphic multi-tense and multi-level distributed storage method based on Mongo database
CN106599127A (en) Log storage and query method applied to standalone server
CN102163232A (en) SQL (Structured Query Language) interface implementing method supporting IEC61850 object query
CN109150964B (en) Migratable data management method and service migration method
CN105426373A (en) Database synchronization method and device
CN103106150A (en) Method capable of achieving automatic simplifying configuration and automatic simplifying distribution for storage system
CN106780157B (en) Ceph-based power grid multi-temporal model storage and management system and method
CN105205178A (en) Multi-process access memory database system
CN114756170A (en) Storage isolation system and method for container application
US20180239791A1 (en) Bitmap-based storage space management system and methods thereof
CN111414422B (en) Data distribution method, device, equipment and storage medium
WO2019047842A1 (en) Logic partition method for solid state drive and device
US20120054459A1 (en) Reorganization of a fragmented directory of a storage data structure comprised of the fragmented directory and members

Legal Events

Date Code Title Description
NENP Non-entry into the national phase

Ref country code: DE

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

Ref document number: 16897771

Country of ref document: EP

Kind code of ref document: A1

122 Ep: pct application non-entry in european phase

Ref document number: 16897771

Country of ref document: EP

Kind code of ref document: A1