WO2019075977A1 - 一种软件系统拆分方法、可读存储介质、终端设备及装置 - Google Patents

一种软件系统拆分方法、可读存储介质、终端设备及装置 Download PDF

Info

Publication number
WO2019075977A1
WO2019075977A1 PCT/CN2018/077047 CN2018077047W WO2019075977A1 WO 2019075977 A1 WO2019075977 A1 WO 2019075977A1 CN 2018077047 W CN2018077047 W CN 2018077047W WO 2019075977 A1 WO2019075977 A1 WO 2019075977A1
Authority
WO
WIPO (PCT)
Prior art keywords
software system
target
original
database
target software
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.)
Ceased
Application number
PCT/CN2018/077047
Other languages
English (en)
French (fr)
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.)
Ping An Technology Shenzhen Co Ltd
Original Assignee
Ping An Technology Shenzhen 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 Ping An Technology Shenzhen Co Ltd filed Critical Ping An Technology Shenzhen Co Ltd
Publication of WO2019075977A1 publication Critical patent/WO2019075977A1/zh
Anticipated expiration legal-status Critical
Ceased legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code

Definitions

  • the present application belongs to the field of computers, and in particular, to a software system splitting method, a computer readable storage medium, a terminal device and a device.
  • the embodiment of the present application provides a software system splitting method, a computer readable storage medium, a terminal device and a device, so as to solve the problem that a large amount of labor cost is required when the software system is split, which is time-consuming and labor-intensive.
  • a first aspect of the embodiments of the present application provides a software system splitting method, which may include:
  • the original software system being a modular software system, comprising two or more functional modules that implement preset functions;
  • a second aspect of the embodiments of the present application provides a computer readable storage medium storing computer readable instructions, the computer readable instructions being implemented by a processor to implement the software system splitting method A step of.
  • a third aspect of an embodiment of the present application provides a software system split terminal device including a memory, a processor, and computer readable instructions stored in the memory and executable on the processor, the processor The steps of the software system splitting method described above are implemented when the computer readable instructions are executed.
  • a fourth aspect of the embodiments of the present application provides a software system splitting apparatus, which may include:
  • a software system determining module configured to determine an original software system to be split and each of the split target software systems, where the original software system is a modular software system, including two or more functional modules that implement preset functions;
  • a function module determining module configured to respectively determine, according to functions to be implemented by each of the target software systems, a function module that each target software system needs to obtain from the original software system
  • a function module extraction module configured to extract each of the function modules from the original software system
  • a function module adding module configured to separately add each of the extracted function modules to a target software system that needs to obtain the function module
  • the original database connection module is configured to respectively establish a connection between each of the target software systems and the original database of the original software system to implement normal operation of each of the target software systems.
  • the embodiment of the present application implements splitting of the original software system, and directly adopts a modular split mode to directly reuse the functional modules in the original software system, thereby greatly reducing the workload and improving the splitting of the software system. effectiveness.
  • FIG. 1 is a flowchart of an embodiment of a software system splitting method according to an embodiment of the present application
  • FIG. 2 is a schematic flowchart of splitting a database by a software system splitting method according to an embodiment of the present application
  • FIG. 3 is a schematic flowchart of splitting user rights by a software system splitting method according to an embodiment of the present application
  • FIG. 4 is a schematic flowchart of splitting a user interface by a software system splitting method according to an embodiment of the present application
  • FIG. 5 is a schematic block diagram of a software system splitting terminal device according to an embodiment of the present disclosure.
  • FIG. 6 is a block diagram of computer readable instructions according to an embodiment of the present application.
  • an embodiment of a software system splitting method in the embodiment of the present application may include:
  • Step S101 determining an original software system to be split and each target software system after splitting.
  • the original software system is a modular software system, and includes two or more functional modules that implement preset functions. Functions implemented by different functional modules are independent of each other, and there is no dependency relationship, for example, the functional module 1 can be used.
  • the function module 2 can be used to implement the functions of the wealth management service
  • the function module 3 can be used to implement the function of the network shopping
  • the function module 4 can be used to implement the social network function and the like.
  • the target software system When the original software system includes too many functional modules, it generally becomes very large and occupies a large amount of resources of the user terminal. Therefore, it is often necessary to split it and obtain several lightweight software systems. That is, the target software system.
  • the target software system is still a modular software system, including more than one functional module.
  • Step S102 Determine, according to functions to be implemented by each of the target software systems, function modules that are required to be acquired by the target software system from the original software system.
  • the functions it implements are only part of the original software system functions, and the implementation of these functions only needs a part of the function modules in the original software system. This part of the function module is the target.
  • the software system requires functional modules that are obtained from the original software system.
  • a target software system can implement a single function, and can also implement multiple functions, which can be set according to actual conditions.
  • the original software system can be split into four target software systems, wherein the target software system 1 implements the function of handling insurance business, the target software system 2 implements the function of handling the wealth management business, and the target software system 3 implements the network.
  • the function of shopping, the target software system 4 realizes the function of network socialization, then it can be determined that the target software system 1 needs to obtain the function module 1 from the original software system, and the target software system 2 needs to acquire the function module 2 from the original software system, the target The software system 3 needs to acquire the function module 3 from the original software system, and the target software system 4 needs to acquire the function module 4 from the original software system.
  • the original software system can be split into two target software systems, wherein the target software system 1 implements the functions of handling the insurance business and handling the wealth management business, and the target software system 2 implements the functions of online shopping and social networking, then It can be determined that the target software system 1 needs to acquire the function module 1 and the function module 2 from the original software system, and the target software system 2 needs to acquire the function module 3 and the function module 4 from the original software system.
  • Step S103 Extract each of the functional modules from the original software system.
  • the original software system is also split according to the function module, and the various functional modules constituting the original software system are obtained.
  • the function module 1, the function module 2, the function module 3, the function module 4, and the like can be extracted from the original software system.
  • the original software system Before the original software system is split, it needs to be backed up to ensure that it can fall back to the initial state when the split fails.
  • Step S104 Add each of the extracted function modules to a target software system that needs to acquire the function module.
  • the function module 1 and the function module 2 can be added to the target software system 1, and the function module 3 and the function module 4 can be added to the target software system 2.
  • the target software system has been formed, but it is still pure software code, and it needs database support to make it run normally.
  • Step S105 Establish a connection between each of the target software systems and the original database of the original software system to implement normal operation of each of the target software systems.
  • step S105 the connection between the original software system and the original database is still maintained, so that when the target software system is abnormal, it can be rolled back to the initial state in time.
  • the target software system is operating normally for a sufficient amount of time, the connection between the original software system and the original database can be broken.
  • the original software system is split at the application level, but the target software systems still share the same database, and the database level split can be further performed.
  • the software system splitting method may further include:
  • Step S201 Create a target database that is in one-to-one correspondence with the target software system.
  • Step S202 Determine, according to the functional modules required by the target software system, target data that needs to be acquired from the original database by the target database corresponding to the target software system.
  • the original database is divided into several data partitions, and data required by one functional module can be stored in more than one data partition, but one data partition only stores data required by the same functional module.
  • the data required by multiple function modules cannot appear in the same data partition.
  • the original database may be divided into 10 data partitions, wherein the data partition 1 to the data partition 3 store data required by the function module 1, and the data partition 4 to the data partition 5 store data required by the function module 2, and the data partition 6 To the data partition 7 storing the data required by the function module 3, the data partition 8 to the data partition 10 storing the data required by the function module 4, then if the division mode in the above case 2 is adopted, the target database 1 corresponding to the target software system 1
  • the data in the data partition 1 to the data partition 5 needs to be obtained from the original database, and the target database 2 corresponding to the target software system 2 needs to acquire the data in the data partition 6 to the data partition 10 from the original database.
  • Step S203 Copy the target data into a target database corresponding to the target software system.
  • the copying of the target data is performed in units of data partitions, and in the process of copying, the relative addresses between the pieces of data in the data partition are kept unchanged.
  • Step S204 Establish a connection between the target software system having a one-to-one correspondence and the target database, respectively.
  • the connection between the target software system and the original database is still maintained.
  • a system abnormality occurs due to data missing or data error, deleting data in the target database corresponding to the target software system, and re-centering the original database
  • the target data corresponding to the target database is copied into the target database to eliminate the influence of the abnormal data appearing in the replication process on the target software system. If the target software system is operating normally within a preset time period, the connection between the target software system and the original database may be disconnected, thereby completely escaping the dependence on the original database.
  • the software system splitting method may further include the step of splitting user rights as shown in FIG. 3:
  • Step S301 Acquire user rights of each user to the original software system.
  • Step S302 Decompose the user rights into user sub-rights of each function module in the original software system
  • Step S303 respectively loading the user sub-rights to a target software system that includes a functional module corresponding to the user sub-rights;
  • Step S304 Combine user sub-rights of the same user in the same target software system, and obtain user rights of each user to each of the target software systems.
  • a user's user rights in the original software system can be decomposed into the A authority to the function module 1, the B authority of the function module 2, the C authority of the function module 3, and the D authority to the function module 4, then if the above is taken In the case of the division in case 2, the user's A authority and B authority need to be loaded into the target software system 1, the user's C authority and D authority are loaded into the target software system 2, and finally the A authority and the B authority.
  • the merging is performed to obtain the user right of the user to the target software system 1, and the C privilege and the D privilege are merged, that is, the user privilege of the user to the target software system 2 is obtained.
  • the user has their own independent user rights in each target software system, and the operation of the user in one target software system does not affect another target software system, and the user perception is realized. Splitting of the target software system.
  • the software system splitting method may further comprise the step of splitting the user interface as shown in FIG. 4:
  • Step S401 Obtain a user interface of the original software system.
  • Step S402 decomposing the user interface into an interface interface corresponding to each functional module in the original software system
  • Step S403 Combine the interface interfaces corresponding to the target software system to obtain a user interface of the target software system.
  • the user interface of the original software system can be decomposed into the interface interface 1 and the interface interface 2 corresponding to the function module 2, the interface interface 3 corresponding to the function module 2, the interface interface 4 corresponding to the function module 3, and the function Module 4 corresponds to the interface interface 5, then if the division mode in the above situation 2 is adopted, the interface interface 1, the interface interface 2 and the interface interface 3 need to be merged to obtain the user interface of the target software system 1, and the interface interface 4 and the interface interface are 5 merge to get the user interface of the target software system 2.
  • each target software system has its own independent user interface, and the content of another target software system no longer appears on the interface of a target software system, that is, the target software system is implemented from the application interface.
  • the embodiment of the present application implements the splitting of the original software system, and the modular splitting method directly reuses the functional modules in the original software system, thereby greatly reducing the workload and improving the workload.
  • the efficiency of the splitting of the software system is greatly reducing the workload and improving the workload.
  • FIG. 5 is a schematic block diagram of the software system splitting terminal device provided by the embodiment of the present application. For the convenience of description, only the embodiment of the present application is shown. part.
  • the software system split terminal device may be a computing device such as a desktop computer, a notebook, a palmtop computer, or a cloud server.
  • the software system split terminal device can include a processor 50, a memory 51, and computer readable instructions 52 stored in the memory 51 and executable on the processor 50.
  • FIG. 6 is a block diagram of computer readable instructions 52 provided by an embodiment of the present application.
  • the computer readable instructions 52 may be partitioned into one or more modules, the one or more modules being stored in the memory 51 and executed by the processor 50, To complete this application.
  • the computer readable instructions 52 that is, the software system splitting program, may be divided into a software system determining module 601, a function module determining module 602, a function module extracting module 603, and a function module adding module 604.
  • the software system splitting apparatus provided by the embodiment of the present application may also include these modules. The following description will specifically describe the functions of the modules 601-605.
  • the software system determining module 601 is configured to determine an original software system to be split and each of the split target software systems, where the original software system is a modular software system, including two or more functional modules that implement preset functions. ;
  • the function module determining module 602 is configured to respectively determine, according to functions to be implemented by each of the target software systems, function modules that are required to be acquired by the target software system from the original software system;
  • a function module extraction module 603, configured to extract each of the function modules from the original software system
  • a function module adding module 604 configured to separately add each of the extracted function modules to a target software system that needs to acquire the function module;
  • the original database connection module 605 is configured to establish a connection between each of the target software systems and the original database of the original software system to implement normal operation of each of the target software systems.
  • computer readable instructions 52 may further include:
  • a target database creation module configured to separately create a target database corresponding to the target software system
  • a target data determining module configured to respectively determine, according to a functional module required by the target software system, target data that needs to be acquired from the original database by a target database corresponding to the target software system;
  • a first target data replication module configured to separately copy the target data into a target database corresponding to the target software system
  • the target database connection module is configured to respectively establish a connection between the target software system having a one-to-one correspondence and the target database.
  • computer readable instructions 52 may further include:
  • a data deletion module configured to delete data in a target database corresponding to the target software system if a system abnormality caused by data missing or data error occurs during operation of the target software system
  • a second target data replication module configured to recopy target data corresponding to the target database in the original database to the target database
  • the database disconnecting module is configured to disconnect the target software system from the original database if the target software system runs normally within a preset time period.
  • computer readable instructions 52 may further include:
  • a permission obtaining module configured to acquire user rights of each user to the original software system
  • a rights decomposition module configured to decompose the user rights into user sub-rights of each function module in the original software system
  • a privilege loading module configured to separately load the user sub-rights to a target software system that includes a functional module corresponding to the user sub-rights;
  • the privilege merge module is configured to combine user sub-rights of the same user in the same target software system to obtain user rights of each user to each of the target software systems.
  • computer readable instructions 52 may further include:
  • An interface obtaining module configured to acquire a user interface of the original software system
  • An interface decomposition module configured to decompose the user interface into an interface interface corresponding to each function module in the original software system
  • the interface merging module is configured to separately merge the interface interfaces corresponding to the target software system to obtain a user interface of the target software system.
  • the functional units in the various embodiments of the present application may be integrated into one processing unit, or each unit may exist physically separately, or two or more units may be integrated into one unit.
  • the above integrated unit can be implemented in the form of hardware or in the form of a software functional unit.
  • the integrated unit if implemented in the form of a software functional unit and sold or used as a standalone product, may be stored in a computer readable storage medium.
  • a computer readable storage medium A number of instructions are included to cause a computer device (which may be a personal computer, server, or network device, etc.) to perform all or part of the steps of the methods described in various embodiments of the present application.
  • the foregoing storage medium includes: a U disk, a mobile hard disk, a read-only memory (ROM), and a random access memory (RAM, Random Access).
  • ROM read-only memory
  • RAM Random Access

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Stored Programmes (AREA)

Abstract

本申请属于计算机领域,尤其涉及一种软件系统拆分方法、计算机可读存储介质、终端设备及装置。本申请实施例首先根据各个目标软件系统所要实现的功能分别确定各个目标软件系统需要从原始软件系统中获取的功能模块,然后从所述目标软件系统中提取出各个所述功能模块,将提取出的各个所述功能模块分别添加至需要获取所述功能模块的目标软件系统中,最后建立起目标软件系统与数据库之间的连接,所述目标软件系统即可运行,从而实现了对原始软件系统的拆分,而且由于采用了模块化的拆分方式,直接复用了原始软件系统中的功能模块,大大减少了工作量,提高了软件系统的拆分效率。

Description

一种软件系统拆分方法、可读存储介质、终端设备及装置
本申请要求于2017年10月19日提交中国专利局、申请号为CN201710975986.8、发明名称为“一种软件系统拆分方法及终端设备”的中国专利申请的优先权,其全部内容通过引用结合在本申请中。
技术领域
本申请属于计算机领域,尤其涉及一种软件系统拆分方法、计算机可读存储介质、终端设备及装置。
背景技术
在将一个完整的软件系统拆分为多个互相独立的子系统时,一般需要重新对各个子系统进行代码编写,在编写的过程中,虽然可以复用原始的一些代码,但仍需要投入大量人力成本,耗时耗力。
技术问题
本申请实施例提供了一种软件系统拆分方法、计算机可读存储介质、终端设备及装置,以解决进行软件系统拆分时需要投入大量人力成本,耗时耗力的问题。
技术解决方案
本申请实施例的第一方面提供了一种软件系统拆分方法,可以包括:
确定待拆分的原始软件系统和拆分后的各个目标软件系统,所述原始软件系统为模块化的软件系统,包括两个以上的实现预设功能的功能模块;
根据各个所述目标软件系统所要实现的功能分别确定各个所述目标软件系统需要从所述原始软件系统中获取的功能模块;
从所述原始软件系统中提取出各个所述功能模块;
将提取出的各个所述功能模块分别添加至需要获取所述功能模块的目标软件系统中;
分别建立各个所述目标软件系统与所述原始软件系统的原始数据库之间的连接,以实现各个所述目标软件系统的正常运行。
本申请实施例的第二方面提供了一种计算机可读存储介质,所述计算机可读存储介质存储有计算机可读指令,所述计算机可读指令被处理器执行时实现上述软件系统拆分方法的步骤。
本申请实施例的第三方面提供了一种软件系统拆分终端设备,包括存储器、处理器以及存储在所述存储器中并可在所述处理器上运行的计算机可读指令,所述处理器执行所述计算机可读指令时实现上述软件系统拆分方法的步骤。
本申请实施例的第四方面提供了一种软件系统拆分装置,可以包括:
软件系统确定模块,用于确定待拆分的原始软件系统和拆分后的各个目标软件系统,所述原始软件系统为模块化的软件系统,包括两个以上的实现预设功能的功能模块;
功能模块确定模块,用于根据各个所述目标软件系统所要实现的功能分别确定各个所述目标软件系统需要从所述原始软件系统中获取的功能模块;
功能模块提取模块,用于从所述原始软件系统中提取出各个所述功能模块;
功能模块添加模块,用于将提取出的各个所述功能模块分别添加至需要获取所述功能模块的目标软件系统中;
原始数据库连接模块,用于分别建立各个所述目标软件系统与所述原始软件系统的原始数据库之间的连接,以实现各个所述目标软件系统的正常运行。
有益效果
本申请实施例实现了对原始软件系统的拆分,而且由于采用了模块化的拆分方式,直接复用了原始软件系统中的功能模块,大大减少了工作量,提高了软件系统的拆分效率。
附图说明
图1为本申请实施例中一种软件系统拆分方法的一个实施例流程图;
图2为本申请实施例中一种软件系统拆分方法对数据库进行拆分的示意流程图;
图3为本申请实施例中一种软件系统拆分方法对用户权限进行拆分的示意流程图;
图4为本申请实施例中一种软件系统拆分方法对用户界面进行拆分的示意流程图;
图5为本申请实施例提供的软件系统拆分终端设备的示意框图;
图6为本申请实施例提供的计算机可读指令的模块图。
本发明的实施方式
请参阅图1,本申请实施例中一种软件系统拆分方法的一个实施例可以包括:
步骤S101、确定待拆分的原始软件系统和拆分后的各个目标软件系统。
所述原始软件系统为模块化的软件系统,包括两个以上的实现预设功能的功能模块,不同的功能模块所实现的功能是相互独立的,不存在依赖关系,例如功能模块1可以用来实现办理保险业务的功能,功能模块2可以用来实现办理理财业务的功能,功能模块3可以用来实现网络购物的功能,功能模块4可以用来实现网络社交的功能等等。
当所述原始软件系统包括了过多的功能模块时,一般会变得非常巨大,占用掉用户终端的大量资源,因此,往往需要将其进行拆分,得到若干个轻量化的软件系统,也即所述目标软件系统。
所述目标软件系统仍为模块化的软件系统,包括一个以上的功能模块。
步骤S102、根据各个所述目标软件系统所要实现的功能分别确定各个所述目标软件系统需要从所述原始软件系统中获取的功能模块。
对于一个目标软件系统而言,其所实现的功能只是原始软件系统功能的一部分,而这些功能的实现也只需要原始软件系统中的一部分功能模块即可完成,这一部分的功能模块即为该目标软件系统需要从原始软件系统中获取的功能模块。
一个目标软件系统可以实现一个单一的功能,也可以实现多个功能,可以根据实际情况进行设置。例如,在情形1中,原始软件系统可以拆分为4个目标软件系统,其中,目标软件系统1实现办理保险业务的功能,目标软件系统2实现办理理财业务的功能,目标软件系统3实现网络购物的功能,目标软件系统4实现网络社交的功能,那么则可确定出目标软件系统1需要从原始软件系统中获取功能模块1,目标软件系统2需要从原始软件系统中获取功能模块2,目标软件系统3需要从原始软件系统中获取功能模块3,目标软件系统4需要从原始软件系统中获取功能模块4。在情形2中,原始软件系统可以拆分为2个目标软件系统,其中,目标软件系统1实现办理保险业务和办理理财业务的功能,目标软件系统2实现网络购物和网络社交的功能,那么则可确定出目标软件系统1需要从原始软件系统中获取功能模块1和功能模块2,目标软件系统2需要从原始软件系统中获取功能模块3和功能模块4。
步骤S103、从所述原始软件系统中提取出各个所述功能模块。
也即将原始软件系统按照功能模块进行拆分,得到组成该原始软件系统的各个功能模块。例如,可以从原始软件系统中提取出功能模块1、功能模块2、功能模块3、功能模块4等等。
优选地,在对原始软件系统进行拆分之前,需要对其进行备份,以保证在拆分失败时可以回退到初始状态。
步骤S104、将提取出的各个所述功能模块分别添加至需要获取所述功能模块的目标软件系统中。
例如,按照步骤S102中情形2的例子,则可将功能模块1和功能模块2添加至目标软件系统1中,将功能模块3和功能模块4添加至目标软件系统2中。
在上述添加完成后,目标软件系统已经成型,但其仍只是单纯的软件代码,要使其正常运行,还需要数据库的支持。
步骤S105、分别建立各个所述目标软件系统与所述原始软件系统的原始数据库之间的连接,以实现各个所述目标软件系统的正常运行。
为了保持数据的连贯性,此处对原始数据库不做任何修改,直接建立起目标软件系统与原始数据库之间的连接,在原始数据库的支持下,可以实现目标软件系统的正常运行。
优选地,在步骤S105之后,仍会继续保持原始软件系统与原始数据库之间的连接,以备在目标软件系统出现异常时,可以及时回退到初始状态。当目标软件系统在足够长的时间内均运行正常时,则可断开原始软件系统与原始数据库之间的连接。
通过以上步骤,实现了在应用层面上对原始软件系统的拆分,但各个目标软件系统仍然共用着相同的数据库,还可以进一步地进行数据库层面的拆分。
优选地,如图2所示,在步骤S105之后,所述软件系统拆分方法还可以包括:
步骤S201、分别创建与所述目标软件系统一一对应的目标数据库。
即为每个目标软件系统创建一个独立的目标数据库,不同的目标数据库之间不存在数据的交互。
步骤S202、根据所述目标软件系统所需的功能模块分别确定与所述目标软件系统对应的目标数据库需要从所述原始数据库中获取的目标数据。
在本实施例中,为了便于管理,将原始数据库划分为了若干个数据分区,一个功能模块所需的数据可以存储在一个以上的数据分区中,但一个数据分区只存储同一功能模块所需的数据,多个功能模块所需的数据不可出现在同一数据分区中。例如,所述原始数据库可以分为10个数据分区,其中数据分区1至数据分区3存储功能模块1所需的数据,数据分区4至数据分区5存储功能模块2所需的数据,数据分区6至数据分区7存储功能模块3所需的数据,数据分区8至数据分区10存储功能模块4所需的数据,那么若采取上述情形2中的划分方式,与目标软件系统1对应的目标数据库1需要从原始数据库中获取数据分区1至数据分区5中的数据,与目标软件系统2对应的目标数据库2需要从原始数据库中获取数据分区6至数据分区10中的数据。
步骤S203、将所述目标数据分别复制到与所述目标软件系统对应的目标数据库中。
在本实施例中,对所述目标数据的复制以数据分区为单位来进行,在复制的过程中,保持数据分区内各条数据之间的相对地址不变。
由于目标数据在原始数据库中的绝对地址与在目标数据库中的绝对地址是不同的,因此需要建立起两者之间的地址转换映射关系,在本实施例中,由于数据分区内各条数据之间的相对地址保持不变,可以对这一映射关系进行简化,只需建立起每个分区数据在原始数据库中的起始绝对地址与在目标数据库中的起始绝对地址之间的地址转换映射关系即可。例如,某数据分区在原始数据库中的起始绝对地址为A,其中的某条数据与起始绝对地址的偏移量为B,那么该条数据在原始数据库中的绝对地址即为A+B,当该数据分区被复制到目标数据库中后,其起始绝对地址变为了C,但该条数据与起始绝对地址的偏移量仍为B,那么该条数据在目标数据库中的绝对地址即为C+B。
步骤S204、分别建立具有一一对应关系的所述目标软件系统与所述目标数据库之间的连接。
在建立起目标软件系统和目标数据库之间的连接后,目标软件系统在运行过程中对数据执行的增加、修改、删除等操作将不再在各个目标软件系统共同使用的原始数据库中进行,而是在与目标软件系统一一对应的目标数据库中独立进行。
优选地,在步骤S204之后,仍会继续保持目标软件系统与原始数据库之间的连接。在所述目标软件系统的运行过程中,若出现因数据缺失或数据错误而导致的系统异常,则删除与所述目标软件系统对应的目标数据库中的数据,重新将所述原始数据库中与所述目标数据库对应的目标数据复制到所述目标数据库中,以消除复制过程中出现的异常数据对目标软件系统的影响。若所述目标软件系统在预设的时间段内运行正常,则可断开所述目标软件系统与所述原始数据库之间的连接,从而完全摆脱了对原始数据库的依赖。
优选地,所述软件系统拆分方法还可以包括如图3所示的对用户权限进行拆分的步骤:
步骤S301、获取各个用户对所述原始软件系统的用户权限;
步骤S302、将所述用户权限分解为对所述原始软件系统中的各个功能模块的用户子权限;
步骤S303、将所述用户子权限分别加载至包含与所述用户子权限对应的功能模块的目标软件系统;
步骤S304、将同一所述目标软件系统中的同一用户的用户子权限进行合并,得到各个用户对各个所述目标软件系统的用户权限。
例如,若某用户在原始软件系统中的用户权限可以分解为对功能模块1的A权限,功能模块2的B权限,功能模块3的C权限以及对功能模块4的D权限,那么若采取上述情形2中的划分方式,则需要将该用户的A权限和B权限加载到目标软件系统1中,将该用户的C权限和D权限加载到目标软件系统2中,最后将A权限和B权限进行合并,即得到该用户对目标软件系统1的用户权限,将C权限和D权限进行合并,即得到该用户对目标软件系统2的用户权限。
经过图3所示的步骤,用户在各个目标软件系统中拥有了各自独立的用户权限,用户在一个目标软件系统中的操作不会影响到另外一个目标软件系统,从用户感知的角度实现了对目标软件系统的拆分。
优选地,所述软件系统拆分方法还可以包括如图4所示的对用户界面进行拆分的步骤:
步骤S401、获取所述原始软件系统的用户界面;
步骤S402、将所述用户界面分解为与所述原始软件系统中的各个功能模块对应的界面接口;
步骤S403、将所述目标软件系统对应的各个界面接口分别进行合并,得到所述目标软件系统的用户界面。
例如,若所述原始软件系统的用户界面可以分解为与功能模块1对应的界面接口1和界面接口2、与功能模块2对应的界面接口3、与功能模块3对应的界面接口4、与功能模块4对应的界面接口5,那么若采取上述情形2中的划分方式,则需要将界面接口1、界面接口2和界面接口3合并得到目标软件系统1的用户界面,将界面接口4和界面接口5合并得到目标软件系统2的用户界面。
经过图4所示的步骤,各个目标软件系统拥有了各自独立的用户界面,在一个目标软件系统的界面上不再会出现另外一个目标软件系统的内容,即从应用接口上实现了对目标软件系统的拆分。
综上所述,本申请实施例实现了对原始软件系统的拆分,而且由于采用了模块化的拆分方式,直接复用了原始软件系统中的功能模块,大大减少了工作量,提高了软件系统的拆分效率。
对应于上文实施例所述的软件系统拆分方法,图5示出了本申请实施例提供的软件系统拆分终端设备的示意框图,为了便于说明,仅示出了与本申请实施例相关的部分。
在本实施例中,所述软件系统拆分终端设备可以是桌上型计算机、笔记本、掌上电脑及云端服务器等计算设备。该软件系统拆分终端设备可包括:处理器50、存储器51以及存储在所述存储器51中并可在所述处理器50上运行的计算机可读指令52。
请参阅图6,是本申请实施例提供的计算机可读指令52的模块图。在本实施例中,所述的计算机可读指令52可以被分割成一个或多个模块,所述一个或者多个模块被存储于所述存储器51中,并由所述处理器50所执行,以完成本申请。例如,在图6中,所述的计算机可读指令52,也即软件系统拆分程序可以被分割成软件系统确定模块601、功能模块确定模块602、功能模块提取模块603、功能模块添加模块604、原始数据库连接模块605。同样地,本申请实施例提供的软件系统拆分装置也可以包括这些模块。以下描述将具体介绍所述模块601-605的功能。
软件系统确定模块601,用于确定待拆分的原始软件系统和拆分后的各个目标软件系统,所述原始软件系统为模块化的软件系统,包括两个以上的实现预设功能的功能模块;
功能模块确定模块602,用于根据各个所述目标软件系统所要实现的功能分别确定各个所述目标软件系统需要从所述原始软件系统中获取的功能模块;
功能模块提取模块603,用于从所述原始软件系统中提取出各个所述功能模块;
功能模块添加模块604,用于将提取出的各个所述功能模块分别添加至需要获取所述功能模块的目标软件系统中;
原始数据库连接模块605,用于分别建立各个所述目标软件系统与所述原始软件系统的原始数据库之间的连接,以实现各个所述目标软件系统的正常运行。
进一步地,所述计算机可读指令52中还可以包括:
目标数据库创建模块,用于分别创建与所述目标软件系统一一对应的目标数据库;
目标数据确定模块,用于根据所述目标软件系统所需的功能模块分别确定与所述目标软件系统对应的目标数据库需要从所述原始数据库中获取的目标数据;
第一目标数据复制模块,用于将所述目标数据分别复制到与所述目标软件系统对应的目标数据库中;
目标数据库连接模块,用于分别建立具有一一对应关系的所述目标软件系统与所述目标数据库之间的连接。
进一步地,所述计算机可读指令52中还可以包括:
数据删除模块,用于在所述目标软件系统的运行过程中,若出现因数据缺失或数据错误而导致的系统异常,则删除与所述目标软件系统对应的目标数据库中的数据;
第二目标数据复制模块,用于重新将所述原始数据库中与所述目标数据库对应的目标数据复制到所述目标数据库中;
数据库断开模块,用于若所述目标软件系统在预设的时间段内运行正常,则断开所述目标软件系统与所述原始数据库之间的连接。
进一步地,所述计算机可读指令52中还可以包括:
权限获取模块,用于获取各个用户对所述原始软件系统的用户权限;
权限分解模块,用于将所述用户权限分解为对所述原始软件系统中的各个功能模块的用户子权限;
权限加载模块,用于将所述用户子权限分别加载至包含与所述用户子权限对应的功能模块的目标软件系统;
权限合并模块,用于将同一所述目标软件系统中的同一用户的用户子权限进行合并,得到各个用户对各个所述目标软件系统的用户权限。
进一步地,所述计算机可读指令52中还可以包括:
界面获取模块,用于获取所述原始软件系统的用户界面;
界面分解模块,用于将所述用户界面分解为与所述原始软件系统中的各个功能模块对应的界面接口;
界面合并模块,用于将所述目标软件系统对应的各个界面接口分别进行合并,得到所述目标软件系统的用户界面。
所属领域的技术人员可以清楚地了解到,为描述的方便和简洁,上述描述的系统,装置和单元的具体工作过程,可以参考前述方法实施例中的对应过程,在此不再赘述。
在上述实施例中,对各个实施例的描述都各有侧重,某个实施例中没有详述或记载的部分,可以参见其它实施例的相关描述。
在本申请各个实施例中的各功能单元可以集成在一个处理单元中,也可以是各个单元单独物理存在,也可以两个或两个以上单元集成在一个单元中。上述集成的单元既可以采用硬件的形式实现,也可以采用软件功能单元的形式实现。
所述集成的单元如果以软件功能单元的形式实现并作为独立的产品销售或使用时,可以存储在一个计算机可读存储介质中。基于这样的理解,本申请的技术方案本质上或者说对现有技术做出贡献的部分或者该技术方案的全部或部分可以以软件产品的形式体现出来,该计算机软件产品存储在一个存储介质中,包括若干指令用以使得一台计算机设备(可以是个人计算机,服务器,或者网络设备等)执行本申请各个实施例所述方法的全部或部分步骤。而前述的存储介质包括:U盘、移动硬盘、只读存储器(ROM,Read-Only Memory)、随机存取存储器(RAM,Random Access Memory)、磁碟或者光盘等各种可以存储程序代码的介质。
以上所述实施例仅用以说明本申请的技术方案,而非对其限制;尽管参照前述实施例对本申请进行了详细的说明,本领域的普通技术人员应当理解:其依然可以对前述各实施例所记载的技术方案进行修改,或者对其中部分技术特征进行等同替换;而这些修改或者替换,并不使相应技术方案的本质脱离本申请各实施例技术方案的精神和范围。

Claims (20)

  1. 一种软件系统拆分方法,其特征在于,包括:
    确定待拆分的原始软件系统和拆分后的各个目标软件系统,所述原始软件系统为模块化的软件系统,包括两个以上的实现预设功能的功能模块;
    根据各个所述目标软件系统所要实现的功能分别确定各个所述目标软件系统需要从所述原始软件系统中获取的功能模块;
    从所述原始软件系统中提取出各个所述功能模块;
    将提取出的各个所述功能模块分别添加至需要获取所述功能模块的目标软件系统中;
    分别建立各个所述目标软件系统与所述原始软件系统的原始数据库之间的连接,以实现各个所述目标软件系统的正常运行。
  2. 根据权利要求1所述的软件系统拆分方法,其特征在于,在分别建立各个所述目标软件系统与所述原始软件系统的原始数据库之间的连接之后,还包括:
    分别创建与所述目标软件系统一一对应的目标数据库;
    根据所述目标软件系统所需的功能模块分别确定与所述目标软件系统对应的目标数据库需要从所述原始数据库中获取的目标数据;
    将所述目标数据分别复制到与所述目标软件系统对应的目标数据库中;
    分别建立具有一一对应关系的所述目标软件系统与所述目标数据库之间的连接。
  3. 根据权利要求2所述的软件系统拆分方法,其特征在于,在分别建立具有一一对应关系的所述目标软件系统与所述目标数据库之间的连接之后,还包括:
    在所述目标软件系统的运行过程中,若出现因数据缺失或数据错误而导致的系统异常,则删除与所述目标软件系统对应的目标数据库中的数据;
    重新将所述原始数据库中与所述目标数据库对应的目标数据复制到所述目标数据库中;
    若所述目标软件系统在预设的时间段内运行正常,则断开所述目标软件系统与所述原始数据库之间的连接。
  4. 根据权利要求1所述的软件系统拆分方法,其特征在于,还包括:
    获取各个用户对所述原始软件系统的用户权限;
    将所述用户权限分解为对所述原始软件系统中的各个功能模块的用户子权限;
    将所述用户子权限分别加载至包含与所述用户子权限对应的功能模块的目标软件系统;
    将同一所述目标软件系统中的同一用户的用户子权限进行合并,得到各个用户对各个所述目标软件系统的用户权限。
  5. 根据权利要求1至4中任一项所述的软件系统拆分方法,其特征在于,还包括:
    获取所述原始软件系统的用户界面;
    将所述用户界面分解为与所述原始软件系统中的各个功能模块对应的界面接口;
    将所述目标软件系统对应的各个界面接口分别进行合并,得到所述目标软件系统的用户界面。
  6. 一种计算机可读存储介质,所述计算机可读存储介质存储有计算机可读指令,其特征在于,所述计算机可读指令被处理器执行时实现如下步骤:
    确定待拆分的原始软件系统和拆分后的各个目标软件系统,所述原始软件系统为模块化的软件系统,包括两个以上的实现预设功能的功能模块;
    根据各个所述目标软件系统所要实现的功能分别确定各个所述目标软件系统需要从所述原始软件系统中获取的功能模块;
    从所述原始软件系统中提取出各个所述功能模块;
    将提取出的各个所述功能模块分别添加至需要获取所述功能模块的目标软件系统中;
    分别建立各个所述目标软件系统与所述原始软件系统的原始数据库之间的连接,以实现各个所述目标软件系统的正常运行。
  7. 根据权利要求6所述的计算机可读存储介质,其特征在于,在分别建立各个所述目标软件系统与所述原始软件系统的原始数据库之间的连接之后,还包括:
    分别创建与所述目标软件系统一一对应的目标数据库;
    根据所述目标软件系统所需的功能模块分别确定与所述目标软件系统对应的目标数据库需要从所述原始数据库中获取的目标数据;
    将所述目标数据分别复制到与所述目标软件系统对应的目标数据库中;
    分别建立具有一一对应关系的所述目标软件系统与所述目标数据库之间的连接。
  8. 根据权利要求7所述的计算机可读存储介质,其特征在于,在分别建立具有一一对应关系的所述目标软件系统与所述目标数据库之间的连接之后,还包括:
    在所述目标软件系统的运行过程中,若出现因数据缺失或数据错误而导致的系统异常,则删除与所述目标软件系统对应的目标数据库中的数据;
    重新将所述原始数据库中与所述目标数据库对应的目标数据复制到所述目标数据库中;
    若所述目标软件系统在预设的时间段内运行正常,则断开所述目标软件系统与所述原始数据库之间的连接。
  9. 根据权利要求6所述的计算机可读存储介质,其特征在于,还包括:
    获取各个用户对所述原始软件系统的用户权限;
    将所述用户权限分解为对所述原始软件系统中的各个功能模块的用户子权限;
    将所述用户子权限分别加载至包含与所述用户子权限对应的功能模块的目标软件系统;
    将同一所述目标软件系统中的同一用户的用户子权限进行合并,得到各个用户对各个所述目标软件系统的用户权限。
  10. 根据权利要求6至9中任一项所述的计算机可读存储介质,其特征在于,还包括:
    获取所述原始软件系统的用户界面;
    将所述用户界面分解为与所述原始软件系统中的各个功能模块对应的界面接口;
    将所述目标软件系统对应的各个界面接口分别进行合并,得到所述目标软件系统的用户界面。
  11. 一种软件系统拆分终端设备,包括存储器、处理器以及存储在所述存储器中并可在所述处理器上运行的计算机可读指令,其特征在于,所述处理器执行所述计算机可读指令时实现如下步骤:
    确定待拆分的原始软件系统和拆分后的各个目标软件系统,所述原始软件系统为模块化的软件系统,包括两个以上的实现预设功能的功能模块;
    根据各个所述目标软件系统所要实现的功能分别确定各个所述目标软件系统需要从所述原始软件系统中获取的功能模块;
    从所述原始软件系统中提取出各个所述功能模块;
    将提取出的各个所述功能模块分别添加至需要获取所述功能模块的目标软件系统中;
    分别建立各个所述目标软件系统与所述原始软件系统的原始数据库之间的连接,以实现各个所述目标软件系统的正常运行。
  12. 根据权利要求11所述的软件系统拆分终端设备,其特征在于,在分别建立各个所述目标软件系统与所述原始软件系统的原始数据库之间的连接之后,还包括:
    分别创建与所述目标软件系统一一对应的目标数据库;
    根据所述目标软件系统所需的功能模块分别确定与所述目标软件系统对应的目标数据库需要从所述原始数据库中获取的目标数据;
    将所述目标数据分别复制到与所述目标软件系统对应的目标数据库中;
    分别建立具有一一对应关系的所述目标软件系统与所述目标数据库之间的连接。
  13. 根据权利要求12所述的软件系统拆分终端设备,其特征在于,在分别建立具有一一对应关系的所述目标软件系统与所述目标数据库之间的连接之后,还包括:
    在所述目标软件系统的运行过程中,若出现因数据缺失或数据错误而导致的系统异常,则删除与所述目标软件系统对应的目标数据库中的数据;
    重新将所述原始数据库中与所述目标数据库对应的目标数据复制到所述目标数据库中;
    若所述目标软件系统在预设的时间段内运行正常,则断开所述目标软件系统与所述原始数据库之间的连接。
  14. 根据权利要求11所述的软件系统拆分终端设备,其特征在于,还包括:
    获取各个用户对所述原始软件系统的用户权限;
    将所述用户权限分解为对所述原始软件系统中的各个功能模块的用户子权限;
    将所述用户子权限分别加载至包含与所述用户子权限对应的功能模块的目标软件系统;
    将同一所述目标软件系统中的同一用户的用户子权限进行合并,得到各个用户对各个所述目标软件系统的用户权限。
  15. 根据权利要求11至14中任一项所述的软件系统拆分终端设备,其特征在于,还包括:
    获取所述原始软件系统的用户界面;
    将所述用户界面分解为与所述原始软件系统中的各个功能模块对应的界面接口;
    将所述目标软件系统对应的各个界面接口分别进行合并,得到所述目标软件系统的用户界面。
  16. 一种软件系统拆分装置,其特征在于,包括:
    软件系统确定模块,用于确定待拆分的原始软件系统和拆分后的各个目标软件系统,所述原始软件系统为模块化的软件系统,包括两个以上的实现预设功能的功能模块;
    功能模块确定模块,用于根据各个所述目标软件系统所要实现的功能分别确定各个所述目标软件系统需要从所述原始软件系统中获取的功能模块;
    功能模块提取模块,用于从所述原始软件系统中提取出各个所述功能模块;
    功能模块添加模块,用于将提取出的各个所述功能模块分别添加至需要获取所述功能模块的目标软件系统中;
    原始数据库连接模块,用于分别建立各个所述目标软件系统与所述原始软件系统的原始数据库之间的连接,以实现各个所述目标软件系统的正常运行。
  17. 根据权利要求16所述的软件系统拆分装置,其特征在于,还包括:
    目标数据库创建模块,用于分别创建与所述目标软件系统一一对应的目标数据库;
    目标数据确定模块,用于根据所述目标软件系统所需的功能模块分别确定与所述目标软件系统对应的目标数据库需要从所述原始数据库中获取的目标数据;
    第一目标数据复制模块,用于将所述目标数据分别复制到与所述目标软件系统对应的目标数据库中;
    目标数据库连接模块,用于分别建立具有一一对应关系的所述目标软件系统与所述目标数据库之间的连接。
  18. 根据权利要求17所述的软件系统拆分装置,其特征在于,还包括:
    数据删除模块,用于在所述目标软件系统的运行过程中,若出现因数据缺失或数据错误而导致的系统异常,则删除与所述目标软件系统对应的目标数据库中的数据;
    第二目标数据复制模块,用于重新将所述原始数据库中与所述目标数据库对应的目标数据复制到所述目标数据库中;
    数据库断开模块,用于若所述目标软件系统在预设的时间段内运行正常,则断开所述目标软件系统与所述原始数据库之间的连接。
  19. 根据权利要求16所述的软件系统拆分装置,其特征在于,还包括:
    权限获取模块,用于获取各个用户对所述原始软件系统的用户权限;
    权限分解模块,用于将所述用户权限分解为对所述原始软件系统中的各个功能模块的用户子权限;
    权限加载模块,用于将所述用户子权限分别加载至包含与所述用户子权限对应的功能模块的目标软件系统;
    权限合并模块,用于将同一所述目标软件系统中的同一用户的用户子权限进行合并,得到各个用户对各个所述目标软件系统的用户权限。
  20. 根据权利要求16至19中任一项所述的软件系统拆分装置,其特征在于,还包括:
    界面获取模块,用于获取所述原始软件系统的用户界面;
    界面分解模块,用于将所述用户界面分解为与所述原始软件系统中的各个功能模块对应的界面接口;
    界面合并模块,用于将所述目标软件系统对应的各个界面接口分别进行合并,得到所述目标软件系统的用户界面。
PCT/CN2018/077047 2017-10-19 2018-02-23 一种软件系统拆分方法、可读存储介质、终端设备及装置 Ceased WO2019075977A1 (zh)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201710975986.8A CN107783787A (zh) 2017-10-19 2017-10-19 一种软件系统拆分方法及终端设备
CN201710975986.8 2017-10-19

Publications (1)

Publication Number Publication Date
WO2019075977A1 true WO2019075977A1 (zh) 2019-04-25

Family

ID=61434635

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2018/077047 Ceased WO2019075977A1 (zh) 2017-10-19 2018-02-23 一种软件系统拆分方法、可读存储介质、终端设备及装置

Country Status (2)

Country Link
CN (1) CN107783787A (zh)
WO (1) WO2019075977A1 (zh)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113515523A (zh) * 2021-07-29 2021-10-19 中国工商银行股份有限公司 一种应用子集划分方法、装置及设备
CN115907573A (zh) * 2022-11-29 2023-04-04 北京中电普华信息技术有限公司 一种用电侧设备的建模方法及装置

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112486458B (zh) * 2019-09-11 2022-04-08 珠海格力电器股份有限公司 功能模块的加载方法及计算机可读存储介质
CN111190584B (zh) * 2019-12-10 2024-06-18 平安健康保险股份有限公司 Ehis-db系统版本发布方法、装置、计算机设备和存储介质
CN115202627A (zh) * 2022-06-29 2022-10-18 深圳泰软软件科技有限公司 软件拆分管理方法、系统、终端设备及存储介质

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103995692A (zh) * 2013-02-16 2014-08-20 马侠安 构建动态应用系统的vnms
CN105550130A (zh) * 2015-12-14 2016-05-04 中电科华云信息技术有限公司 基于容器的应用环境动态编排的方法及其应用系统
CN106406929A (zh) * 2016-08-25 2017-02-15 成都交大光芒科技股份有限公司 分布式信息化应用集成平台应用插件容器实现方法
CN106598585A (zh) * 2016-12-08 2017-04-26 长沙学院 云环境下计分驱动的服务快速匹配和聚合方法

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1145110C (zh) * 2001-03-22 2004-04-07 北京北大天正科技发展有限公司 一种在线定制软件的方法
CN105354037B (zh) * 2015-11-30 2019-04-16 用友优普信息技术有限公司 模块化的软件开发方法及软件开发装置
CN106126204B (zh) * 2016-06-15 2019-03-19 中邮建技术有限公司 一种基于模块化设计的信息系统迭代式扩展开发方法
CN106682487A (zh) * 2016-11-04 2017-05-17 浙江蘑菇加电子商务有限公司 一种用户权限管理方法及系统

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103995692A (zh) * 2013-02-16 2014-08-20 马侠安 构建动态应用系统的vnms
CN105550130A (zh) * 2015-12-14 2016-05-04 中电科华云信息技术有限公司 基于容器的应用环境动态编排的方法及其应用系统
CN106406929A (zh) * 2016-08-25 2017-02-15 成都交大光芒科技股份有限公司 分布式信息化应用集成平台应用插件容器实现方法
CN106598585A (zh) * 2016-12-08 2017-04-26 长沙学院 云环境下计分驱动的服务快速匹配和聚合方法

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113515523A (zh) * 2021-07-29 2021-10-19 中国工商银行股份有限公司 一种应用子集划分方法、装置及设备
CN115907573A (zh) * 2022-11-29 2023-04-04 北京中电普华信息技术有限公司 一种用电侧设备的建模方法及装置

Also Published As

Publication number Publication date
CN107783787A (zh) 2018-03-09

Similar Documents

Publication Publication Date Title
WO2019075977A1 (zh) 一种软件系统拆分方法、可读存储介质、终端设备及装置
US10162843B1 (en) Distributed metadata management
US8874626B2 (en) Tracking files and directories related to unsuccessful change operations
US8615488B2 (en) Physical replication of database subset to improve availability and reduce resource cost in a cloud environment
US10778762B2 (en) Cloud computing service architecture
CN101577735A (zh) 一种接管故障元数据服务器的方法、装置及系统
US11531653B2 (en) Database schema branching workflow, with support for data, keyspaces and VSchemas
CN113656149B (zh) 一种应用处理方法、装置及相关设备
CN104054076B (zh) 数据存储方法、数据库存储节点故障处理方法及装置
JP6987340B2 (ja) データベースのデータ変更要求処理方法及び装置
CN113946404B (zh) 端口分配方法、装置、电子设备及存储介质
CN105677761A (zh) 一种数据切分的方法及系统
WO2019174608A1 (zh) 一种数据处理方法及其相关设备
CN113836238A (zh) 数据命令的批量处理方法及装置
CN113064766A (zh) 数据备份方法、装置、设备及存储介质
US12235740B2 (en) Backup and recovery under group-level encryption
CN118939472A (zh) 一种数据管理方法及相关设备
CN110612510B (zh) 无需专用仲裁器的输入/输出(i/o)隔离
CN117370078A (zh) 数据库备份管理方法、装置、计算机设备和存储介质
US20150350315A1 (en) Zero copy volume reconstruction
US20230169036A1 (en) System and method for deleting parent snapshots of running points of storage objects using extent ownership values
US11949738B2 (en) Method and device for migration testing in a transition space between different types of cloud systems
CN112559537B (zh) 云存储区间更新方法、装置、电子设备及计算机存储介质
US11962686B2 (en) Encrypting intermediate data under group-level encryption
US10776148B1 (en) System and method for utilizing computational power of a server farm

Legal Events

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

Ref document number: 18869409

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

32PN Ep: public notification in the ep bulletin as address of the adressee cannot be established

Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205A DATED 23.09.2020)

122 Ep: pct application non-entry in european phase

Ref document number: 18869409

Country of ref document: EP

Kind code of ref document: A1