Method, device and system for collecting conflicting TRXID setting operation dependencies during rollback

By initializing hash tables and files in the target-side data synchronization service, using the primary key or index of the transaction operation as the key, determining transaction dependencies and collecting conflicting TRXIDs, the problem of insufficient parallel execution of the target-side data synchronization service is solved, and data synchronization performance is improved.

CN119473520BActive Publication Date: 2025-09-30WUHAN DAMENG DATABASE
View PDF 0 Cites 0 Cited by

Patent Information

Application Number
CN202411636657.7
Authority / Receiving Office
CN · China
Patent Type
Patents(China)
Current Assignee / Owner
Filing Date
2024-11-15
Publication Date
2025-09-30
Estimated Expiration
2044-11-15

AI Technical Summary

Technical Problem

In the database real-time synchronization system based on the log parsing architecture, the parallel execution of the target-side data synchronization service is insufficient, resulting in a small improvement in data synchronization performance.

Method used

By initializing hash tables and files in the target-side data synchronization service, using the primary key or index of the transaction operation as the key, determining the dependencies between transactions, collecting conflicting TRXIDs, and retaining the conflicting TRXIDs during rollback operations, transactions are ensured to be executed sequentially to improve parallelism.

Benefits of technology

Improves the parallel execution of target-side data synchronization services, improves data synchronization performance, and avoids performance bottlenecks caused by insufficient conflict detection granularity.

✦ Generated by Eureka AI based on patent content.

Smart Images

  • Figure CN119473520B_ABST
    Figure CN119473520B_ABST
Patent Text Reader

Abstract

The present invention relates to a method, device and system for setting operation dependencies for collecting conflicting TRXIDs during rollback. The method mainly includes: after the target-side data synchronization service receives the DML operation from the source, it extracts the table ID and its primary key or index or custom selection column in the operation as the KEY, then extracts the transaction ID in the operation as the TRXID, combines the KEY and TRXID into a record and saves it to the current file. If the record is the first record of the current file, the log LSN corresponding to the operation is used as the starting LSN of the current file; the conflicting TRXID and conflicting LSN of the operation are determined based on the KEY, TRXID and starting LSN; when the target-side data synchronization service receives a commit operation, the corresponding transaction is added to the queue of pending transactions; when the target-side data synchronization service receives a rollback or partial rollback operation, the conflicting TRXID saved in the rolled back operation is collected. The present invention can effectively increase the concurrency of operation execution and achieve the purpose of improving synchronization performance.
Need to check novelty before this filing date? Find Prior Art

Description

Technical Field

[0001] The present invention relates to the field of database technology, and in particular to a method, device and system for collecting conflicting TRXID setting operation dependencies during rollback. Background Art

[0002] In a database real-time synchronization system (supporting heterogeneous architecture) based on a log parsing architecture, the source-side data synchronization service is responsible for capturing the operation logs of the source database, parsing the logs to restore the corresponding database operations, and then sending them to the target-side data synchronization service. The target-side data synchronization service is responsible for executing these operations in the target database, thereby completing the data synchronization process.

[0003] When the target-side data synchronization service synchronizes operations on the target-side database, it often needs to execute them in the order in which the transactions were committed. This is because when the previous transaction has not yet completed synchronization, the operation of the next transaction cannot be executed and stored concurrently with the previous transaction without clarifying whether it conflicts with the previous transaction. Execution can only begin after all transactions preceding the current operation have been committed. This greatly affects the concurrency of transaction storage. The current effective method is to determine whether parallel execution is possible by judging the size of the log LSN of the operation and the LSN of the previously submitted transaction commit operation. If the LSN of the currently executing transaction operation is smaller than the LSN of the commit operation of another transaction currently being executed, then this operation can be executed concurrently with that transaction. Although this method of parallel execution based on the order in which transactions are committed improves performance, the granularity of conflict detection is large and not detailed enough, resulting in low parallelism and a small performance improvement.

[0004] In view of this, how to overcome the defects of existing technologies and how to improve the parallel execution of target-side data synchronization services to improve data synchronization performance have become important technical issues that need to be urgently addressed in the industry. Summary of the Invention

[0005] In view of the defects or improvement needs in the existing technology: How to improve the parallel execution strength of the target-side data synchronization service and thus improve the performance of data synchronization. The present invention believes that if the dependency relationship between transaction operations can be determined, it is clear which transactions need to be waited for during the synchronization operation, and the parallelism of synchronization can be maximized. Based on this, the present invention provides a method, device and system for collecting the setting operation dependency of conflicting TRXIDs during rollback. When the target-side data synchronization service of this method receives the synchronization transaction operation, it receives it in the order in which the source-side database log is generated. Then the order of each operation received is the basis for them to detect whether there is a conflict. The embodiment of the present invention extracts the primary key or index or custom selection column on each received operation as the KEY based on the order in which the operation is received, and finds whether this KEY has the same KEY as the operation of other transactions received before within the set range. If so, the execution of this operation needs to wait for the conflicting transaction to be committed before it can start execution; otherwise, it can be executed concurrently with the transaction submitted before itself, maximizing the parallelism of transaction execution, thereby effectively improving the performance of synchronization.

[0006] The present invention adopts the following technical solutions:

[0007] In a first aspect, the present invention provides a method for collecting conflicting TRXID setting operation dependencies during rollback, comprising:

[0008] After the target-side data synchronization service is started, a hash table R is initialized and two files are created to store the keys in the hash table R.

[0009] After receiving the DML operation from the source, the target-side data synchronization service extracts the table ID and its primary key, index, or custom selected column in the operation as the key, then extracts the transaction ID in the operation as the TRXID. It combines the key and TRXID into a record and saves it to the current file. If the record is the first record in the current file, the log LSN corresponding to the operation is used as the starting LSN of the current file.

[0010] Determine the conflicting TRXID and conflicting LSN of the operation based on the KEY, TRXID and starting LSN;

[0011] When the target-side data synchronization service receives a commit operation, it adds the corresponding transaction to the queue of pending transactions. When the target-side data synchronization service receives a rollback or partial rollback operation, it collects the conflicting TRXIDs saved in the rolled-back operation. For rollback operations, the corresponding transaction cannot be discarded but is added to the queue of pending transactions.

[0012] In some embodiments, the target-side data synchronization service initializes a hash table R after startup, and creates two files to store the KEY in the hash table R. Specifically, the target-side data synchronization service initializes a hash table R after startup, and initializes the record address in the hash item of the hash table R to empty, which is used to store and locate the received operations; the target-side data synchronization service creates two files to store the KEY in the hash table R, and the file name of each file is named incrementally in the order of creation, and the two files are added to the cache file list.

[0013] In some embodiments, determining the conflicting TRXID and the conflicting LSN of the operation based on the KEY, the TRXID, and the starting LSN specifically includes:

[0014] Use the KEY of the current operation to construct the detection record X and merge the detection record X into the hash table R;

[0015] During the merging process, conflict detection is performed. If there is a conflicting key, the TRXID value corresponding to the conflicting key is returned; otherwise, 0 is returned as the corresponding TRXID, indicating no conflict.

[0016] The TRXID obtained by the conflict detection is set as the conflict TRXID, and the starting LSN of the first file in the cache file list corresponding to the current hash table R is written into the current operation and set as the conflict LSN.

[0017] In some embodiments, the conflict detection judgment specifically includes:

[0018] Calculate the hash value of the KEY of the current detection record X and locate the hash item through the hash value; determine whether the record address in the hash item is empty. If so, set the record address in the hash item to the next address space of the current detection record X, backfill the hash item with the address of the detection record X, and return 0 as the conflict TRXID to indicate that no conflict is detected; if not, proceed to the next step of conflict detection and judgment;

[0019] Determine whether the file ID in the address recorded in the hash item is less than the ID value of the first file in the cache file list. If so, it indicates that this record Y has exceeded the inspection range. Set the address recorded in the hash item to the next address space of the current detection record X, and backfill the hash item with the address of the detection record X. Use 0 as the conflict TRXID to return, indicating that no conflict is detected; if not, proceed to the next step of conflict detection judgment;

[0020] According to the address recorded in the hash item, the corresponding record Y is loaded from the file. It is determined whether the KEY of record Y is equal to the KEY of the current detection record X and the TRXID of record Y is not equal to the TRXID of the current operation. If so, it means that there is a conflict in the operation. Record Y is removed from the record linked list of the hash item to shorten the length of the linked list in the hash item. The record address in the hash item is set to the next address space of the current detection record X, the address of the current detection record X is backfilled into the hash item, and the TRXID stored in record Y is used as the conflicting TRXID for return; if not, the next step of conflict detection is carried out;

[0021] Traverse the next record of record Y in sequence and perform conflict detection and judgment until the end of the record list.

[0022] In some embodiments, the cache file linked list includes two files. When the first file is full, it switches to the second file. When the second file is full, the first file in the cache file linked list is eliminated first, and then a new file is created and added to the cache file linked list after the file ID is incremented.

[0023] In some embodiments, collecting the conflicting TRXIDs saved in the rolled-back operation specifically includes:

[0024] Locate the transaction that needs to be rolled back using the transaction ID of the rollback or partial rollback operation, and extract the number of rows that need to be rolled back in the partial rollback operation, or extract the number of rows included in the transaction in the rollback operation;

[0025] Create a conflict transaction list L to collect the conflicting TRXIDs saved in the rollback operation;

[0026] Extract the rollback operation from the end of the transaction operation list, extract the conflicting TRXID saved in the operation, and add it to the conflicting transaction list L;

[0027] Continue to extract the last operation to be rolled back and collect the same conflicting TRXID until the specified number of rows is rolled back.

[0028] In some embodiments, when the system is restarted after a failure, the files are initialized to the cache file list of the target-side data synchronization service according to the size of the cached file ID.

[0029] In a second aspect, the present invention further provides a device for collecting conflicting TRXID setting operation dependencies during rollback, the device comprising:

[0030] At least one processor; and a memory communicatively connected to the at least one processor; wherein the memory stores instructions executable by the at least one processor, and the instructions are executed by the processor to perform the lazy method for collecting the setting operation of conflicting TRXIDs during rollback as described in the first aspect.

[0031] In a third aspect, the present invention further provides a system for collecting conflicting TRXID setting operation dependencies during rollback, applying the method for collecting conflicting TRXID setting operation dependencies during rollback as described in the first aspect. The system includes a hash table and file creation module, a key acquisition module, a conflicting TRXID and conflicting LSN acquisition module, and a pending transaction queue addition module, wherein:

[0032] The hash table and file creation module is used to initialize a hash table R after the target end data synchronization service is started, and create two files to store the KEY in the hash table R;

[0033] The KEY acquisition module is used to extract the table ID and its primary key, index, or custom selected column in the operation as the KEY after the target-side data synchronization service receives the DML operation from the source, and then extract the transaction ID in the operation as the TRXID. The KEY and TRXID are combined into a record and saved in the current file. If the record is the first record in the current file, the log LSN corresponding to the operation is used as the starting LSN of the current file.

[0034] The conflicting TRXID and conflicting LSN obtaining module is used to determine the conflicting TRXID and conflicting LSN of the operation according to the KEY, TRXID and starting LSN;

[0035] The module for adding transactions to the queue to be executed is used to add the corresponding transaction to the queue to be executed when the target-side data synchronization service receives a commit operation; when the target-side data synchronization service receives a rollback or partial rollback operation, the conflicting TRXID saved in the rolled-back operation is collected, and for the rollback operation, the corresponding transaction cannot be discarded, but is added to the queue to be executed.

[0036] In a fourth aspect, the present invention further provides a non-volatile computer storage medium storing computer executable instructions, which are executed by one or more processors to complete the method for collecting conflicting TRXID setting operations during rollback as described in the first aspect.

[0037] Compared with the prior art, the present invention provides a method, device and system for collecting conflicting TRXID setting operation dependencies during rollback, which has the following advantages:

[0038] First, the target-side data synchronization service receives operations sent from the source side in sequence. If there are conflicting operations, the operations received first will be executed first, and the operations received later will be executed later. This order is also the basis for conflict operation detection. The currently received operation can be compared with the previously received operation. If there are transaction operations with the same table and the same KEY, then it means that the current operation and a previous transaction are in conflict. When comparing the current operation with the previously received operation, a range must be set. The larger the range, the higher the accuracy, but at the same time, the more resources are consumed. This requires determining the size of the detection range based on the current hardware conditions. Through the method provided by the embodiment of the present invention, the currently received operation and the previously received operation are subjected to conflict detection within a set limited range. If the table ID and the primary key or index or the key composed of the custom selection column involved in the two operations are the same, it indicates that the current operation has a conflicting transaction within the limited range. When executing this operation, it is necessary to wait for the transaction of the conflicting operation to be executed first before executing it.

[0039] Secondly, when the target-side data synchronization service receives a rollback or partial rollback operation, it needs to mark the corresponding transaction to indicate that an operation on the transaction has been rolled back. If the transaction is a rollback transaction, its transaction information must also be added to the queue for execution and cannot be discarded directly. Otherwise, subsequent transactions that depend on it will be executed prematurely because they cannot find the dependent transaction.

[0040] Finally, when the target-side data synchronization service receives a rollback or partial rollback operation, it not only retains the transaction information of the rolled-back transaction, but also collects the conflicting TRXIDs that the rolled-back operation depends on. This helps to clearly identify the conflicting transactions that the rolled-back transaction depends on when it is released. It can release itself only after the conflicting transaction is executed, and then wake up and wait for its own transaction to continue execution, without having to wait for the non-conflicting transaction to commit before releasing itself, thereby improving synchronization performance. BRIEF DESCRIPTION OF THE DRAWINGS

[0041] To more clearly illustrate the technical solutions of the embodiments of the present invention, the following briefly introduces the drawings required for use in the embodiments of the present invention. Obviously, the drawings described below are only some embodiments of the present invention. Those skilled in the art can also derive other drawings based on these drawings without inventive effort.

[0042] Figure 1 Flowchart of a method for collecting conflicting TRXID setting operation dependencies during rollback provided by Example 1 of the present invention;

[0043] Figure 2Flowchart of determining the conflicting TRXID and conflicting LSN of an operation based on KEY, TRXID and starting LSN provided in Example 1 of the present invention;

[0044] Figure 3 This is a flowchart of conflict detection and judgment provided in Example 1 of the present invention;

[0045] Figure 4 Conflicting TRXID collection flow chart for the rollback operation provided in Example 1 of the present invention;

[0046] Figure 5 Schematic diagram of a module of a system for collecting conflicting TRXID setting operation dependencies during rollback provided by Example 1 of the present invention;

[0047] Figure 6 This is a schematic diagram of the structure of a device for collecting conflicting TRXID setting operation dependencies during rollback provided by Example 3 of the present invention. DETAILED DESCRIPTION

[0048] The present invention is described in detail below with reference to specific embodiments. The following examples will help those skilled in the art to further understand the present invention, but do not limit the present invention in any form. It should be noted that, for those of ordinary skill in the art, several variations and improvements can be made without departing from the concept of the present invention. These all fall within the scope of protection of the present invention. It should be noted that, if there is no conflict, the various features in the embodiments of the present invention can be combined with each other and are all within the scope of protection of this application. In addition, although the functional modules may be divided in the device schematic diagram and the logical order may be shown in the flow chart, in some cases, the steps shown or described may be performed in a different order than the module division in the device or the order in the flow chart.

[0049] Unless otherwise defined, all technical and scientific terms used in this specification have the same meanings as those commonly understood by those skilled in the art to which this invention belongs. The terms used in this specification and in the description of the present invention are for the purpose of describing specific embodiments only and are not intended to limit the present invention. Furthermore, the technical features involved in the various embodiments of the present invention described below may be combined with each other as long as they do not conflict with each other.

[0050] Unless the context requires otherwise, throughout the specification and claims, the term "including" is to be interpreted as meaning open inclusion, that is, "including, but not limited to". In the description of the specification, the terms "one embodiment", "some embodiments", "exemplary embodiments", "example", "specific example" or "some examples" and the like are intended to indicate that the specific features, structures, materials or characteristics associated with the embodiment or example are included in at least one embodiment or example of the present disclosure. The schematic representation of the above terms does not necessarily refer to the same embodiment or example. In addition, the specific features, structures, materials or characteristics may be included in any one or more embodiments or examples in any appropriate manner, that is, although they may be carried in the embodiments or examples of the above terms due to reasons such as the order and position of appearance, it is not limited to that they can be carried in combination by one embodiment or example.

[0051] In order to make the purpose, technical solutions and advantages of this application more clearly understood, this application is further described in detail below with reference to the accompanying drawings and examples. It should be understood that the specific embodiments described herein are only intended to illustrate this application and are not intended to limit this application. The present invention will be described in detail below with reference to the accompanying drawings and examples.

[0052] Example 1:

[0053] like Figure 1 As shown, an embodiment of the present invention provides a method for collecting conflicting TRXID setting operation dependencies during rollback, and the method includes the following steps.

[0054] Step 100: After the target-side data synchronization service is started, a hash table R is initialized, and two files are created to store the KEYs in the hash table R. Specifically, the target-side data synchronization service initializes a hash table R after startup, and creates two files to store the KEYs in the hash table R. Specifically, the target-side data synchronization service initializes a hash table R after startup, and initializes the record addresses in the hash items of the hash table R to be empty, which are used to store and locate received operations; the target-side data synchronization service creates two files to store the KEYs in the hash table R, and the file names of each file are named incrementally in the order of creation, and the two files are added to the cache file list.

[0055] It should be noted that, in this embodiment, LSN is a log sequence number; TRXID is an ID that identifies a transaction; DML is an insert, update, and delete operation for data; and KEY is a key that can be used to identify a specific row of records in a table.

[0056] Step 200: After receiving the DML operation from the source, the target-side data synchronization service extracts the table ID and its primary key, index, or custom selected column in the operation as the KEY, and then extracts the transaction ID in the operation as the TRXID. The KEY and TRXID are combined into a record and saved in the current file. If the record is the first record in the current file, the log LSN corresponding to the operation is used as the starting LSN of the current file.

[0057] Step 300: Determine the conflicting TRXID and conflicting LSN of the operation based on the KEY, TRXID, and starting LSN. Specifically, construct a detection record X using the KEY of the current operation and merge the detection record X into the hash table R. During the merging process, perform a conflict detection and judgment. If there is a conflicting KEY, return the TRXID value corresponding to the conflicting KEY; otherwise, return 0 as the corresponding TRXID, indicating no conflict. Set the TRXID obtained from the conflict detection as the conflicting TRXID, and write the starting LSN of the first file in the cache file list corresponding to the current hash table R into the current operation as the conflicting LSN.

[0058] Step 400: When the target-side data synchronization service receives a commit operation, it adds the corresponding transaction to the queue of transactions to be executed; when the target-side data synchronization service receives a rollback or partial rollback operation, it collects the conflicting TRXIDs saved in the rolled back operation, and for the rollback operation, the corresponding transaction cannot be discarded, but is added to the queue of transactions to be executed.

[0059] When receiving a transaction operation, the embodiment of the present invention extracts the table ID of the operation and combines the primary key, index, or user-defined selected column of the operation as the KEY to determine whether the same KEY exists in other transaction operations previously received within a set range. Conflicting operations need to wait until the conflicting transaction is submitted before they can be executed. Non-conflicting transactions can be executed in parallel with transactions submitted before receiving the current operation, thereby maximizing storage performance.

[0060] This embodiment will now explain the above method in more detail.

[0061] In one embodiment, a synchronization system needs to be deployed on the source database and the target database. The source database synchronization system reads logs from the source database, while the target database synchronization system is responsible for classifying and collecting synchronization operations sent from the source by transaction, and setting a dependency relationship between each received operation and the conflicting transactions received before it.

[0062] In one embodiment, after the target-side data synchronization service is started, a hash table R of size N needs to be initialized, and the record address in the hash item is initialized to empty to store and locate the received operations; and two files of size M are created to store the KEY in the hash table R. The file names are named incrementally in the order of creation, and the two files are added to the cache file list.

[0063] For hash table R, the structure of the HASH item in its HASH table is a 4-byte file ID, set as K; a 4-byte file offset, set as F. K and F constitute a HASH item in the HASH table, as shown in the following table:

[0064] Document ID(K) File offset (F)

[0065] It indicates that the first KEY in the HASH item is stored in the file with ID K, and its offset in the file is F.

[0066] In one embodiment, after the target-side data synchronization service receives the DML operation from the source, it extracts the table ID and its primary key or index or custom selected column in the operation as the KEY, and then extracts the transaction ID in the operation as the TRXID. The KEY and TRXID are combined into a record and saved to the offset F of the cache file K. If the record is the first record of the current file, the log LSN corresponding to the operation is marked on the file as the starting LSN of the file, and the LSN is saved in the file name. The complete cache file name format is "file ID_starting LSN.dat".

[0067] Since the hash record needs to save the address of the next record, the record saved in the file also needs to reserve the address of the next record, as shown in the table below.

[0068] KEY TRXID Next record file ID (K) Next record file offset (F)

[0069] refer to Figure 2 As shown, in one embodiment, the step of determining the conflicting TRXID and conflicting LSN of the operation according to the KEY, TRXID and starting LSN specifically includes the following steps.

[0070] Step 101: Use the KEY of the current operation to construct a detection record X, and merge the detection record X into the hash table R.

[0071] Step 102: Conflict detection and judgment are performed during the merging process. If there is a conflicting KEY, the TRXID value corresponding to the conflicting KEY is returned; otherwise, 0 is returned as the corresponding TRXID, indicating no conflict.

[0072] Step 103: Set the TRXID obtained by the conflict detection as the conflict TRXID, and write the starting LSN of the first file in the cache file list corresponding to the current hash table R into the current operation as the conflict LSN. This will obtain the conflict information of this operation. It should be noted that when this operation is executed, it searches for transactions involving the same table ID among all transactions whose committed operations are currently being stored and whose LSN is smaller than the current operation log LSN, and whose current storage operation LSN is smaller than the conflict LSN of this operation (indicating that operations in this transaction with a smaller LSN than the conflict LSN are not within the scope of the conflict check, and it cannot be determined whether there is a conflict). If so, this operation needs to wait for the completion of the transaction before it can be executed; if not, it continues to search for transactions in this batch of transactions to see if there is a transaction with the same transaction ID and the conflict TRXID. If so, this operation needs to wait for the completion of the transaction before it can be executed; if not, the operation can be immediately stored.

[0073] Based on the above steps, the target-side data synchronization service receives the next message and saves it to file K in the same manner as described above. The cache file linked list consists of two files. When the first file is full (the written data exceeds the set size M), it switches to the second file. When the second file is full, the first file in the linked list is eliminated first, and then a new file is created and added to the linked list by incrementing the file ID in the system. When a record is saved to a new file, if it is the first record in the file, the operation LSN corresponding to the record is marked as the starting LSN of the file.

[0074] refer to Figure 3 As shown, in one embodiment, the conflict detection and judgment in the above step 102 specifically includes the following steps.

[0075] Step 201: Calculate the hash value of the KEY of the current detection record X, and locate the hash item through the hash value; determine whether the record address in the hash item is empty. If so, set the record address in the hash item to the next address space of the current detection record X, backfill the hash item with the address of the detection record X, and return 0 as the conflict TRXID to indicate that no conflict is detected; if not, proceed to the next step of conflict detection judgment.

[0076] Step 202: Determine whether the file ID K in the address recorded in the hash item is less than the file ID value of the first file in the cache file list. If so, it indicates that this record Y has exceeded the inspection range. The address recorded in the hash item is set to the next address space of the current detection record X, and the address of the detection record X is backfilled into the hash item. 0 is returned as the conflict TRXID, indicating that no conflict is detected. If not, proceed to the next step of conflict detection.

[0077] Step 203: Load the corresponding record Y from the file according to the address recorded in the hash item, and determine whether the KEY of record Y is equal to the KEY of the current detection record X and the TRXID of record Y is not equal to the TRXID of the current operation. If so, it means that there is a conflict in the operation. Remove record Y from the record linked list of the hash item to shorten the length of the linked list in the hash item, set the record address in the hash item to the next address space of the current detection record X, backfill the address of the current detection record X into the hash item, and use the TRXID stored in record Y as the conflicting TRXID for return; if not, proceed to the next step of conflict detection judgment.

[0078] Step 204: traverse the next record of record Y in sequence and perform conflict detection and judgment until the record linked list ends.

[0079] In one embodiment, the target-side data synchronization service receives the commit operation and adds the transaction to a queue of pending transactions.

[0080] In one embodiment, when the target-side data synchronization service receives a rollback or partial rollback operation, it needs to collect the conflicting TRXIDs saved in the rolled-back operation. If it is a rollback operation, the transaction cannot be discarded and needs to be added to the pending transaction queue. Figure 4 As shown, collecting the conflicting TRXIDs of the rollback operation includes the following steps.

[0081] Step 301: Locate the transaction that needs to be rolled back using the transaction ID of the rollback or partial rollback operation, and extract the number of rows that need to be rolled back in the partial rollback operation, or extract the number of rows included in the transaction in the rollback operation.

[0082] Step 302: Create a conflict transaction linked list L to collect conflicting TRXIDs saved in the rollback operation.

[0083] Step 303: Extract the rollback operation from the end of the transaction operation chain list, extract the conflict TRXID saved in the operation, and add it to the conflict transaction chain list L.

[0084] Step 304: Continue to extract the last operation to be rolled back and collect the same conflicting TRXID until the specified number of rows is rolled back.

[0085] It should be noted that when a received transaction is rolled back, since the rolled back transaction operations will not be executed when the data is stored, there may be subsequent transactions that depend on these rolled back operations. If the rolled back transaction is directly discarded, the dependent transactions will not be able to find the dependent transactions and will assume that there is no conflict. This will cause the subsequent transactions to execute prematurely, causing errors. For example, if three transactions A, B, and C all modify the same row in the same table, but transaction B is rolled back, then when the target-side data synchronization service receives the operation, the conflict detection process will form a dependency order relationship in which B depends on A, and C depends on B. If transaction B is directly discarded and not executed due to the rollback, then when C is executed, it will not be able to find the dependent transaction B and will execute prematurely. Ultimately, transactions A and C will execute concurrently, causing errors.

[0086] When processing rolled-back transactions and partial rollback operations, if only the rolled-back transaction is retained without collecting the conflicting TRXIDs and conflicting LSNs that the rollback operation depends on, the transaction cannot determine the specific transactions it depends on during execution. It can only be released after all transactions with commit LSNs smaller than the transaction have completed synchronization, which will affect synchronization performance. The embodiment of the present invention collects the conflicting TRXIDs that the rolled-back operation depends on. When executing, the transaction only needs to detect that the transactions corresponding to these conflicting TRXIDs have completed synchronization before it can be released, without waiting for the submission of other non-conflicting transactions, thereby improving synchronization performance.

[0087] In one embodiment, after a system failure and restart, files are initialized into the target-side data synchronization service's cache file list based on the cache file ID size. It should be noted that when initializing the cache file list, the starting LSN of each cache file must be recovered from the cache file name. The stored records are then read sequentially and inserted into hash table R. Only after both cache files are loaded can new operations be accepted and conflict checks performed on them.

[0088] The above describes how to set the operation dependency to collect conflicting TRXIDs during rollback. The following describes the workflow of the target-side data synchronization service after setting the transaction operation dependency.

[0089] In one embodiment, the target-side data synchronization service creates H worker threads, executes transactions in order of their commit LSNs, and stores the transaction operations. It should be noted that the target-side data synchronization service also creates a hash table P to record the currently executing transaction information (transaction ID) and a hash table G to record the current transaction's table information and the transaction's start LSN.

[0090] In one embodiment, the worker thread extracts a transaction from the committed transaction list in the order in which the transactions were committed, registers the transaction ID in the hash table P, and registers the table information involved in the transaction and the transaction start LSN in the hash table G.

[0091] In one embodiment, it is determined whether the current transaction is a rollback transaction. If so, it is necessary to wait for all conflicting transactions in the conflicting transaction list L of the transaction to commit before waking up the waiting worker thread. The registration information of the current transaction is then removed from the hash table P and hash table G to complete the execution of the current transaction. Otherwise, the next step is performed. In this step, a conflicting TRXID is extracted from the conflicting transaction list L of the current transaction in turn, and the hash table P is checked to see if it exists. If it exists, it is necessary to wait for the transaction to complete before waking up itself. After waking up, the next conflicting TRXID is extracted from the conflicting transaction list L and the same check is performed until all conflicting transactions in the conflicting transaction list L are completed. It should be noted that since the operations on the rolled back transaction do not need to be executed and are discarded, the present invention collects the conflicting TRXIDs of the operations when discarding the rollback operations. Therefore, the transaction information they depend on is very clear. Therefore, when releasing the operations, it only needs to wait for the conflicting transactions to commit to ensure the correctness of the transaction dependency order.

[0092] In one embodiment, the working thread extracts an operation of the transaction and determines whether the current operation is a commit operation. If so, it is processed according to whether there is a rollback mark in the transaction; otherwise, it is determined that the operation is a DML operation and the next step is performed. If there is no rollback mark, the waiting working thread is awakened after the current transaction is committed, and the registration information of the current transaction is removed from the hash table P and the hash table G to complete the execution of the current transaction. This is because the transactions that each operation in the transaction depends on have been determined in the conflict detection, so the transaction can be directly committed after all operations are executed (indicating that the transactions it depends on have been committed), without having to wait for the transactions submitted before itself to be committed first, thereby effectively improving the synchronization performance. If there is a rollback mark, it is necessary to wait for all conflicting transactions on the conflicting transaction list L of the transaction to be committed before waking up the waiting working thread, and then remove the registration information of the current transaction from the hash table P and the hash table G to complete the execution of the current transaction. Specifically, each conflicting TRXID is extracted from the conflicting transaction list L of the current transaction, and then checked in the hash table P to see if it exists. If it does, it is necessary to wait for the transaction to complete before waking up. After waking up, the next conflicting TRXID is extracted from the conflicting transaction list L and the same check is performed until all conflicting transactions in the conflicting transaction list L are completed. This is because the operations on the rolled back transaction do not need to be executed and are discarded. When discarding the rollback operation, the present invention collects the conflicting TRXIDs of the operation, so the transaction information they depend on is very clear. Therefore, when releasing the operation, it only needs to wait for these conflicting transactions to be committed to ensure the correctness of the transaction dependency order.

[0093] In one embodiment, the worker thread uses the conflicting TRXID of the currently pending operation to search hash table P for a transaction with the conflicting TRXID. If so, the worker thread suspends the current execution process and waits for the conflicting transaction to complete and commit before waking up again. Otherwise, the worker thread jumps to the next step. It should be noted that the presence of a transaction with the conflicting TRXID in hash table P indicates that the data involved in the current operation conflicts with the transaction with the conflicting TRXID. Therefore, the current operation cannot be executed in parallel with the conflicting transaction and must wait until the conflicting transaction commits before it can begin execution.

[0094] In one embodiment, a worker thread uses the information in the current pending operation table to search hash table G for a transaction operating on the same table, whose commit LSN is smaller than the current transaction and whose start LSN is smaller than the conflict LSN of the current operation. If so, the worker thread suspends the current execution process and waits for the conflicting transaction to complete and commit before waking up. Otherwise, if the conflict detection for the worker thread's current pending operation does not detect a conflict, the worker thread executes the current operation and then proceeds to the next operation. It should be noted that this step primarily checks whether there are transactions in the currently executing concurrent transactions that exceed the conflict check LSN range. This is because the conflict transaction information for pending operations is valid only within a certain range, from the conflict LSN stored in the operation to the current operation LSN. The operation does not perform conflict detection on operations prior to the conflict LSN. In other words, if a transaction exists with a commit LSN smaller than the commit LSN of the transaction to which the current pending operation belongs and a start LSN smaller than the conflict LSN stored in the current pending operation, it is unknown whether the operations in this transaction conflict with the current pending operation. Therefore, the current pending operation cannot be executed rashly and must wait until the transaction commits.

[0095] Based on the above process, this embodiment proposes a method for collecting conflicting TRXIDs during rollback. The method mainly performs conflict detection on the currently received operation and the previously received operation within a set limited range. If the table ID and the primary key or index or the key composed of the custom selected columns involved in the two operations are the same, it indicates that the current operation has a conflicting transaction within the limited range. When executing this operation, it needs to wait until the transaction of the conflicting operation is executed first.

[0096] refer to Figure 5As shown, this embodiment also provides a system for collecting conflicting TRXID setting operation dependencies during rollback, and applies the aforementioned method for collecting conflicting TRXID setting operation dependencies during rollback. The system includes a hash table and file creation module, a KEY acquisition module, a conflicting TRXID and conflicting LSN acquisition module, and a pending transaction queue joining module, wherein: the hash table and file creation module is used to initialize a hash table R after the target-side data synchronization service is started, and create two files for storing the KEY in the hash table R; the KEY acquisition module is used to extract the table ID and its primary key or index or custom selected column in the operation as the KEY after the target-side data synchronization service receives the DML operation from the source, and then extract the transaction ID in the operation as the KEY. TRXID, combines the KEY and TRXID into a record and saves it to the current file. If the record is the first record of the current file, the log LSN corresponding to the operation is used as the starting LSN of the current file; the conflict TRXID and conflict LSN acquisition module is used to determine the conflict TRXID and conflict LSN of the operation based on the KEY, TRXID and starting LSN; the pending transaction queue joining module is used to add the corresponding transaction to the pending transaction queue when the target-side data synchronization service receives a commit operation; when the target-side data synchronization service receives a rollback or partial rollback operation, the conflict TRXID saved in the rolled-back operation is collected, and for the rollback operation, its corresponding transaction cannot be discarded, but is added to the pending transaction queue. The specific functions and principles of this system functional module correspond to the specific methods in the method section and will not be repeated here.

[0097] In summary, this embodiment provides a method and system for collecting conflicting TRXIDs during rollback, which offers the following advantages: First, the target-side data synchronization service receives operations from the source sequentially. If there are conflicting operations, the first received operation is executed first, followed by the last received operation. This order is the basis for conflict detection. The currently received operation can be compared with the previously received operation. If there are transactions involving the same table and the same key, then the current operation conflicts with a previous transaction. When comparing the current operation with the previously received operation, a range must be set. A larger range improves accuracy, but also consumes more resources. The size of the detection range must be determined based on current hardware conditions. The method provided by this embodiment of the present invention performs conflict detection on the currently received operation and the previously received operation within a limited, predefined range. If the table ID and key (primary key, index, or custom selected column combination) involved in the two operations are the same, then the current operation has a conflicting transaction within the specified range. The current operation must wait until the conflicting transaction executes before executing.

[0098] Secondly, when the target-side data synchronization service receives a rollback or partial rollback operation, it needs to mark the corresponding transaction to indicate that an operation on the transaction has been rolled back. If the transaction is a rollback transaction, its transaction information must also be added to the queue for execution and cannot be discarded directly. Otherwise, subsequent transactions that depend on it will be executed prematurely because they cannot find the dependent transaction.

[0099] Finally, when the target-side data synchronization service receives a rollback or partial rollback operation, it not only retains the transaction information of the rolled-back transaction, but also collects the conflicting TRXIDs that the rolled-back operation depends on. This helps to clearly identify the conflicting transactions that the rolled-back transaction depends on when it is released. It can release itself only after the conflicting transaction is executed, and then wake up and wait for its own transaction to continue execution, without having to wait for the non-conflicting transaction to commit before releasing itself, thereby improving synchronization performance.

[0100] Example 2:

[0101] Based on the method for collecting conflicting TRXID setting operation dependencies during rollback provided in the above embodiment 1, embodiment 2 of the present invention provides a specific example for illustration.

[0102] For example: The source database has table T(ID INT PRIMARY KEY, C1 INT);

[0103] The source application has three transactions that perform the following operations on table T in the following order:

[0104] TRX1:INSERT INTO T(ID,C1)VALUES(1,1);

[0105] TRX1:COMMIT;

[0106] TRX2:INSERT INTO T(ID,C1)VALUES(2,2);

[0107] TRX2:UPDATE T SET C1=1 WHERE ID=1;

[0108] TRX2:ROLLBACK;

[0109] TRX3:UPDATE T SET C1=2 WHERE ID=1;

[0110] TRX3:COMMIT;

[0111] The order of the above operations represents the order of these operations in the log stream, and the resulting log stream will form the following numbered table:

[0112] Transaction ID operate LSN number TRX1 INSERT INTO T(ID,C1)VALUES(1,1); 1 TRX1 COMMIT; 2 TRX2 INSERT INTO T(ID,C1)VALUES(2,2); 3 TRX2 UPDATE T SET C1=1 WHERE ID=1; 4 TRX2 ROLLBACK; 5 TRX3 UPDATE T SET C1=2 WHERE ID=1; 6 TRX3 COMMIT; 7

[0113] After the target-side data synchronization service is started, it needs to initialize a hash table R of size N and two cache files of size M. The cache files are numbered 1 and 2 in sequence.

[0114] The receiving process is as follows:

[0115] 1. The log receiving thread receives the operation with LSN 1, extracts its table ID and primary key as the key, assuming it is 1. The length after combining the TRXID and the space for the next record is 32. First, its key and transaction ID are stored in the first cache file, expressed as [file ID (K): file offset (F)]. Its offset in the file is [1:0].

[0116] KEY:1 TRXID:1 NEXT: empty

[0117] Since the KEY information is the first operation information of the current cache file, the LSN value of the operation should be set to the starting LSN of the file, and the starting LSN of the file should be set to 1.

[0118] 2. Insert the KEY into the hash table R. The returned TRXID is 0, indicating no conflict. The TRXID 0 indicating no conflict and the minimum starting LSN of the cached file is 1, which is written back to the operation.

[0119] 3. The log receiving thread receives the operation with LSN 3, extracts its table ID and primary key as the key, assuming it is 2. The length after combining the TRXID and the space for the next record is 32. First, its key and transaction ID are stored in the first cache file. Its offset in the file is [1:32].

[0120] KEY:1 TRXID:1 NEXT: empty KEY:2 TRXID:2 NEXT: empty

[0121] 4. Insert the KEY into the hash table R. The returned TRXID is 0, indicating no conflict. The TRXID 0 indicating no conflict and the minimum starting LSN of the cached file is 1, which is written back to the operation.

[0122] 5. The log receiving thread receives the operation with LSN 4, extracts its table ID and primary key as the key, assuming it is 1. The length after combining the TRXID and the space for the next record is 32. First, its key and transaction ID are stored in the first cache file. Its offset in the file is [1:64].

[0123] KEY:1 TRXID:1 NEXT: empty KEY:2 TRXID:2 NEXT: empty KEY:1 TRXID:2 NEXT: empty

[0124] 6. Insert the KEY into the hash table R. Since the operation information with KEY 1 already exists in the HASH, the conflicting TRXID returned is 1, indicating that there is a conflict between the current operation and the transaction with transaction ID 1. The conflicting TRXID 1 and the minimum starting LSN of the cached file 1 are written back to the operation.

[0125] 7. Remove the conflicting KEY information with KEY 1 from the HASH table.

[0126] 8. Set the address in the hash table R with KEY 1 to the next record of the current KEY information, and get the following table.

[0127]

[0128]

[0129] 9. Restart the target data synchronization service and load cache file 1 and cache file 2 in sequence.

[0130] 10. Load and merge the KEY information in cache file 1 into hash table R to restore the HASH state before the failure.

[0131] 11. The log receiving thread receives the rollback operation with LSN 5, marks the corresponding TRX2, indicating that a rollback operation has occurred within the transaction, and then adds TRX2 to the execution queue. It should be noted that during the rollback operation, TRX2 creates a conflicting transaction list L, collects the conflicting TRXID 1 information for the transaction's update operation, and then adds it to the conflicting transaction list L.

[0132] 12. The log receiving thread receives the operation with LSN 6, extracts its table ID and primary key as the key, assuming it is 3. The length after combining the TRXID and the space for the next record is 32. First, its key and transaction ID are stored in the first cache file. Its offset in the file is [1:96].

[0133] KEY:1 TRXID:1 NEXT: empty KEY:2 TRXID:2 NEXT: empty KEY:1 TRXID:2 NEXT:1:0 KEY:3 ​​TRXID:3 NEXT: empty

[0134] 13. Insert the KEY into the hash table R. The returned TRXID is 2, indicating that there is a conflict between the current operation and the transaction with transaction ID 2. The conflicting TRXID 2 and the minimum starting LSN of the cache file 1 are written back to the operation.

[0135] After all operation conflicts are detected, the following detection results are formed.

[0136]

[0137]

[0138] 14. Create three worker threads and execute TRX1, TRX2, and TRX3 respectively in the order in which the transactions were submitted.

[0139] 15. Worker thread 1 extracts the TRX1 transaction, registers the transaction information TRXID as 1 in hash table P, and registers the start LSN of the transaction associated with table information T as 1 in hash table G.

[0140] 16. Worker thread 2 extracts the TRX2 transaction, registers the transaction information TRXID 2 into hash table P, and registers the starting LSN 3 of the transaction associated with table information T into hash table G.

[0141] 17. Worker thread 3 extracts the TRX3 transaction, registers the transaction information TRXID 3 into hash table P, and registers the starting LSN 6 of the transaction associated with table information T into hash table G.

[0142] 18. Worker thread 1 extracts the insert operation with LSN 1 on TRX1, obtains the conflicting TRXID and conflicting LSN on the operation, and performs conflict detection.

[0143] (1) This operation conflicts. A TRXID of 0 indicates no conflict.

[0144] (2) Obtain the table information T and the conflict LSN of the operation as 1. Search the hash table G for conflicting transactions involving table T and with a commit LSN less than 2 and a minimum transaction start LSN less than 1. If no conflicting transactions are found, the operation can be executed directly.

[0145] 19. Worker thread 2 extracts TRX2. This transaction is marked with a rollback operation and is a rollback transaction. Therefore, it does not need to execute. However, it needs to wait for TRX1, which has a smaller commit LSN than its own, in the conflicting transaction list L to commit before removing its own transaction information from the registered hash tables P and G. It then wakes up the transaction waiting for its execution to complete. Specifically, it extracts the conflicting transaction information TRX1 from the conflicting transaction list L, searches for it in the hash table P, suspends the current execution, and waits for the conflicting transaction TRX1 to complete before waking itself up.

[0146] 20. Work thread 3 extracts the update operation with LSN 6 on TRX3, obtains the conflicting TRXID and conflicting LSN on the operation, and performs conflict detection.

[0147] (1) The conflicting TRXID is 2, indicating that it conflicts with TRX2. The current worker thread is suspended and will be awakened after TRX2 completes its execution. As can be seen here, TRX3 depends on TRX2, but TRX2 itself is rolled back and will not execute any operations. If TRX2 is directly discarded and not executed, the update of TRX3 will not find the conflicting transaction and will be executed concurrently with the insert operation of TRX1. However, these two transactions operate on the same row. If the update operation of TRX3 is executed before the insert operation of TRX1, an error will be generated.

[0148] 21. After worker thread 1 executes the commit operation of TRX1, it deletes the current transaction information from hash table P and hash table G respectively, and wakes up the execution of TRX2 transaction on worker thread 2.

[0149] 22. After transaction TRX2 of worker thread 2 is awakened, it continues to traverse the conflicting TRXID on the conflicting transaction list L. All conflicting transactions have been executed. Since this transaction is a rolled back transaction, it does not need to commit any operations. It only needs to delete the current transaction information from hash table P and hash table G and then wake up to wait for its own transaction TRX3 to be executed.

[0150] 23. After worker thread 3 is awakened, it executes the update operation of TRX3, then executes the commit operation and deletes the current transaction information from hash table P and hash table G, completing the execution of the transaction.

[0151] As can be seen from the above process, since transaction TRX1 is received first, followed by the operations of transaction TRX2, TRX2 will discover during conflict detection that its operations depend on transaction TRX1. Although TRX2 ultimately receives a rollback operation, meaning that the transaction will not be executed, TRX2's operations have already overwritten the dependencies in the HASH table during conflict detection. As a result, the operations of the last received transaction, TRX3, depend on TRX2 rather than TRX1 during conflict detection. Therefore, TRX2 must be marked as having a rollback operation and added to the execution chain. This ensures that the cascading transaction dependency relationships (TRX3 depends on TRX2, and TRX2 depends on TRX1) are not interrupted. Although TRX2 is a rollback transaction, it must still be registered during execution to ensure dependency continuity. Since the transaction information of TRX2's dependencies is collected in the conflict transaction chain L, TRX2 only needs to ensure that all transactions in the conflict transaction chain L have completed execution before it can be released, without having to wait for transactions with a lower LSN than its own to commit, thereby improving synchronization performance.

[0152] Example 3:

[0153] It should be noted that for rollback transactions, since the rollback transaction will not be executed, there are three ways to handle the rollback transaction operation in the hash table R.

[0154] The first approach is to not roll back the impact of the rolled-back transaction's operations on the operation dependencies in hash table R, nor collect the conflicting TRXIDs of the rolled-back transaction's dependencies. All operations of the rolled-back transaction are directly released. This rolled-back transaction will be dependent on other operations, and the rolled-back transaction must also be added to the pending execution list for execution to ensure the continuity of the operation dependencies. When this approach is adopted, the rolled-back transaction's operations are directly released as a whole, which can improve the processing performance of rolled-back transactions. However, operations that depend on the rolled-back transaction must wait until the rolled-back transaction is released from the pending execution list before they can be executed. Since conflicting transactions with operation dependencies were not collected before the rollback transaction was released, the rollback transaction must wait until all transactions with commit LSNs or rollback LSNs smaller than its own rollback LSN have completed execution before it can be released, which affects synchronization efficiency. This approach corresponds to the following: when the target-side data synchronization service receives a rolled-back transaction, all operations in the transaction are discarded without execution, and only the retained transaction information is added to the pending execution queue. For example, when the target-side data synchronization service receives a rollback or partial rollback operation, it needs to locate the transaction based on the transaction ID in the operation, and then mark the transaction to indicate that some operations in the transaction are rolled back. If the operation is a rollback operation, then all operations in the transaction do not need to be executed and are directly discarded. Only the retained transaction information is added to the queue to be executed. The transaction information of the rolled back transaction cannot be discarded.

[0155] The second approach does not roll back the impact of the rolled-back transaction on the dependencies in hash table R. Instead, the conflicting TRXIDs of the rolled-back transaction's dependencies are collected, for example, recorded in the conflicting TRXID dependency list L. This rolled-back transaction will be dependent on other operations, and the rolled-back transaction must also be added to the pending list for execution to ensure the continuity of the dependencies. When this approach is adopted, the conflicting TRXIDs in the rolled-back transaction are collected before the operation is released. Although this reduces the processing performance of the rolled-back transaction, it improves the release performance of the rolled-back transaction during execution. Operations that depend on the rolled-back transaction must wait until the rolled-back transaction is released from the pending list before they can be executed. Since the conflicting transactions of the rolled-back transaction were collected during the release operation, the rolled-back transaction can be released only after the execution of these conflicting transactions, without having to wait for the completion of all transactions with a commit LSN or a rollback LSN smaller than the rollback LSN. This partially improves synchronization efficiency compared to the first approach. This approach corresponds to the following: when the target-side data synchronization service receives a rollback or partial rollback operation, it collects the conflicting TRXIDs stored in the rolled-back operation. Furthermore, the corresponding transaction is not discarded but added to the pending transaction queue. The description of the rollback portion in Example 1 of the present invention is an example of this approach.

[0156] The third method is to roll back the impact of the rolled-back transaction on the dependencies of the operations in hash table R. In this way, the rolled-back transaction will not be dependent on other operations, and the rolled-back transaction does not need to be added to the pending execution list. When this solution is adopted, after receiving the rollback operation, the transaction needs to roll back the impact of all operations in the transaction on the dependencies of the operations in hash table R. Because the transaction scale is uncontrollable, when a large transaction is rolled back, the rollback action will affect the progress of receiving the operation, thereby affecting the efficiency of synchronization. Corresponding to this method, when the target-side data synchronization service receives a rollback or partial rollback operation, it writes the conflicting TRXID saved in the rolled-back operation back to hash table R.

[0157] The three aforementioned transaction rollback solutions each have their advantages and disadvantages. The first solution is suitable for large-scale transaction rollbacks, the second for medium-scale transactions, and the third for small-scale transactions. Therefore, two parameters, W1 and W2, are set: W1 represents the minimum number of DML operations in large-scale transactions, and W2 represents the minimum number of DML operations in medium-scale transactions. Based on this, after receiving DML operations from the source, the target-side data synchronization service must manage these operations by transaction classification and calculate the number of DML operations received per transaction, S (S being the number of DML operations received in a single transaction). When the target-side data synchronization service receives a rollback operation, it takes appropriate action based on the number of DML operations in the transaction, S.

[0158] When the size S of the rolled-back transaction is greater than or equal to W1, it corresponds to the large-scale transaction rollback in the first solution. In this case, the impact of the rolled-back transaction's operations on the operation dependencies in hash table R is not rolled back, and the conflicting TRXIDs of the rolled-back transaction's operation dependencies are not collected. All operations of the rolled-back transaction are directly released. This rolled-back transaction will be dependent on other operations and must also be added to the pending execution list for execution to ensure the continuity of the operation dependencies.

[0159] When the scale S of the rolled-back transaction is greater than or equal to W2 and less than W1, this corresponds to the medium-sized transaction rollback in the second solution. In this case, the impact of the rolled-back transaction's operations on the operation dependencies in hash table R is not rolled back. However, the conflicting TRXIDs of the rolled-back transaction's operation dependencies are collected and can be optionally recorded in the conflicting TRXID dependency list L. This rolled-back transaction will be dependent on other operations and must also be added to the pending execution list for execution to ensure the continuity of the operation dependencies. The description of the rollback portion in Example 1 of the present invention is an example description when the scale S of the rolled-back transaction is greater than or equal to W2 and less than W1.

[0160] When the size S of the rolled-back transaction is smaller than W2, it corresponds to the small-scale transaction rollback in the third solution. In this case, the impact of the rolled-back transaction operation on the operation dependencies in the hash table R is rolled back, and the rolled-back transaction does not need to be added to the pending execution list and is directly released.

[0161] Furthermore, for partial rollback operations, due to their special nature, they inherently require traversing the rolled-back operations. Therefore, adding the process of collecting conflicting TRXIDs for these operations does not significantly reduce the performance of handling partial rollbacks. Therefore, when the target-side data synchronization service receives a partial rollback operation, it counts the total number of rolled-back rows S1 and, based on the size of S1, performs the following processing: When the number of rolled-back rows S1 is less than W2, the impact of the rollback operation on the operation dependencies in hash table R is rolled back, that is, the conflicting TRXIDs stored in the rolled-back operation are written back to hash table R. When the number of rolled-back rows S1 is greater than W2, the impact of the rolled-back transaction on the operation dependencies in hash table R is not rolled back, that is, the conflicting TRXIDs stored in the rolled-back operation are not written back to hash table R. However, the conflicting TRXIDs of the rolled-back transaction operation dependencies are collected and recorded in the conflicting TRXID dependency list L.

[0162] Based on the above settings, after the target-side data synchronization service creates a worker thread, the worker thread extracts a transaction from the committed transaction list in the order in which the transactions were committed, and determines whether the transaction is a rollback transaction. If the current transaction is a rollback transaction, it is necessary to determine whether the rollback transaction has a conflicting TRXID list L.

[0163] If the rolled-back transaction does not conflict with the TRXID linked list L, it must wait for all transactions with a commit LSN lower than the current transaction to complete before waking up the waiting worker thread. It then removes the current transaction's registration information from hash tables P and G, completing the current transaction. This is because the operations on the rolled-back transaction are no longer needed and are discarded, so the information on the transactions they depend on is unclear. Therefore, when committing, it must wait until all transactions submitted earlier than the current transaction have completed their commit to ensure the correct order of transaction dependencies.

[0164] If the rolled back transaction has a conflicting TRXID linked list L, it is necessary to wait for all conflicting transactions on the conflicting transaction linked list L to commit before waking up the waiting worker thread, and then remove the registration information of the current transaction from the hash table P and hash table G to complete the execution of the current transaction. Specifically, extract a conflicting TRXID from the current transaction conflicting transaction linked list L in turn, and check whether it exists in the hash table P. If it exists, it is necessary to wait for the transaction to be completed before waking itself up. After waking up, it extracts the next conflicting TRXID from the conflicting transaction linked list L and performs the same check until all conflicting transactions in the conflicting transaction linked list L are completed. This is because the operations on the rolled back transaction do not need to be executed and are discarded. When the rollback operation is discarded, the conflicting TRXIDs on the operations are collected, so the transaction information they depend on is very clear. Then, when releasing, it only needs to wait for these conflicting transactions to be committed to ensure the correctness of the transaction dependency order.

[0165] In summary, since the rollback transaction will not be executed, it will generate three schemes during conflict detection. Each scheme has its own advantages. It is necessary to set appropriate values ​​to give full play to the advantages of the three schemes in order to achieve the purpose of improving the overall synchronization performance. In addition, for the partial rollback operations of the committed transactions, the conflicting TRXIDs referenced by them are collected in a targeted manner during the rollback operation, which can effectively reduce the performance loss caused by the partial rollback operation writing back the conflict detection hash table R, so as to achieve the purpose of improving the overall synchronization performance. This embodiment processes the rollback transaction and partial rollback operations in a targeted manner according to the agreed operation scale, and finds the balance point between the cost of the operation rollback and the execution of the rollback transaction, thereby improving the overall synchronization performance.

[0166] In addition, in some embodiments, the KEY in the hash table R can be stored in a file or in a memory chip. Specifically, the difference between the two is that when using files for storage, although the storage performance is low and affects the efficiency of conflict detection, after a data synchronization failure, the state of the hash table R before the failure can be restored by storing the KEY value in the file. In this way, when performing conflict detection on the received operations after the failure, there is continuity with the failure, and the synchronization performance will not drop drastically due to the failure. When using memory chips for storage, the conflict detection performance will be greatly improved compared to the file storage solution, but the data of the previous conflict detection will be lost after the failure. When restoring the detection, it can only start from the currently received LSN, which will cause a discontinuity between the subsequent conflict detection and the failure. During synchronous execution, the synchronization performance will drop drastically at the failure location. When the storage performance is high (for example, using SSD fixed storage), it can meet the performance requirements of conflict detection, and the efficiency of operation reception can be balanced with synchronous execution. Then, the method of storing the KEY in the hash table R through files can effectively avoid the loss of synchronization performance caused by failures. When the storage performance affects the efficiency of conflict detection, the bottleneck of synchronization exists in the operation reception. At this time, the method of storing the KEY in the hash table R through a memory chip can effectively improve the reception performance of the operation, thereby improving the overall synchronization performance. Example 1 of the present application is an example of a method of storing the KEY in the hash table R through a file.

[0167] In some embodiments, you can choose to calculate the MD5 value as the operation key on either the source or target side. The source-side data synchronization service detects conflicts for each operation, allowing for a more accurate calculation of the conflicting MD5 value. However, if the target-side data synchronization service calculates the MD5 value based on the target database table's primary key information, errors may occur if the target database table's primary key structure or column order differs from that on the source side. For this reason, the MD5 value is typically calculated on the source side as the operation key. Upon receiving the DML operation from the source side, the target-side data synchronization service directly extracts the MD5 value calculated by the source side as the key.

[0168] In some embodiments, when calculating the KEY of an operation, since the order of columns in the operation parsed from the log is not fixed, the columns in the operation must first be sorted by column ID, and then the KEY is calculated according to the fixed order of the primary key or unique index combination columns. After the source-side data synchronization service captures a DML log operation, it obtains the table ID in the log and uses the table ID to obtain the primary key information and unique index of the table in the source-side database. After parsing the current DML log operation, the source-side data synchronization service determines whether the table has a primary key or unique index. If there is a primary key or unique index, the table ID and the column values ​​of the primary key or unique index are combined to calculate an MD5 value as the KEY for this operation. This value is stored in the current DML log operation and sent to the target-side synchronization service. It should be noted that when a table has both a primary key and a unique index, the table ID and the primary key are preferably combined to calculate the MD5 value as the KEY; when a table has no primary key but has multiple unique indexes, the table ID and any unique index are combined to calculate the MD5 value. If there is no primary key or unique index, after parsing the current DML log operation, the source-side data synchronization service combines the table ID and the row's ROWID value or custom selected columns to calculate an MD5 value as the key for this operation. This value is stored in the current DML log operation and sent to the target-side synchronization service. It should be noted that when calculating the key for a table without a primary key or unique constraint, if it is clear that all columns in the table have no duplicate values, the table's ROWID can be used directly to calculate the key, effectively reducing the cost of calculating the key. If the table has duplicate rows, custom selected columns are required to calculate the key. The key can be calculated based on the distribution of column values, which columns or all column values ​​are used to calculate the key. This allows the target-side synchronization service to use the key to prevent deadlocks caused by concurrent synchronization transactions operating on rows with duplicate values.

[0169] Example 4:

[0170] Based on the method for collecting conflicting TRXID setting operation dependencies during rollback provided in the above embodiment 1, the present invention also provides a device for collecting conflicting TRXID setting operation dependencies during rollback that can be used to implement the above method and system, such as Figure 6 , is a schematic diagram of the device architecture of an embodiment of the present invention. The device for collecting conflicting TRXID settings during rollback in this embodiment comprises one or more processors 21 and a memory 22. Figure 6 A processor 21 is taken as an example.

[0171] The processor 21 and the memory 22 may be connected via a bus or other means. Figure 6 The bus connection is taken as an example.

[0172] The memory 22, as a non-volatile computer-readable storage medium, can be used to store non-volatile software programs, non-volatile computer-executable programs, and modules, such as the method for collecting conflicting TRXID setting operation dependencies during rollback in Example 1. The processor 21 executes the non-volatile software programs, instructions, and modules stored in the memory 22 to execute various functional applications and data processing of the apparatus for collecting conflicting TRXID setting operation dependencies during rollback, thereby implementing the method for collecting conflicting TRXID setting operation dependencies during rollback in Example 1.

[0173] The memory 22 may include high-speed random access memory and non-volatile memory, such as at least one disk storage device, flash memory device, or other non-volatile solid-state memory device. In some embodiments, the memory 22 may optionally include a memory remotely located relative to the processor 21, and such remote memory may be connected to the processor 21 via a network. Examples of such networks include, but are not limited to, the Internet, an intranet, a local area network, a mobile communication network, and combinations thereof.

[0174] The program instructions / modules are stored in the memory 22. When executed by one or more processors 21, the method for collecting the setting operation of the conflicting TRXID during rollback in the above embodiment 1 is performed, for example, the above described method is performed. Figures 1-4 The steps shown.

[0175] The above-mentioned product can execute the method provided in the embodiment of this application, and has the functional modules and beneficial effects corresponding to the execution method. For technical details not fully described in this embodiment, please refer to the method provided in the embodiment of this application.

[0176] It should be noted that the device embodiments described above are merely illustrative, wherein the units described as separate components may or may not be physically separate, and the components shown as units may or may not be physical units, that is, they may be located in one place or distributed across multiple network units. Some or all of the modules may be selected based on actual needs to achieve the objectives of this embodiment.

[0177] Through the description of the above embodiments, it can be clearly understood by those skilled in the art that each embodiment can be implemented by means of software plus a general hardware platform, or of course by hardware. It can be understood by those skilled in the art that all or part of the processes in the above embodiment methods can be implemented by instructing the relevant hardware through a computer program, and the program can be stored in a computer-readable storage medium. When the program is executed, it can include the processes of the embodiments of the above methods. The storage medium can be a magnetic disk, an optical disk, a read-only memory (ROM) or a random access memory (RAM).

[0178] Finally, it should be noted that the above embodiments are only used to illustrate the technical solutions of the present invention, rather than to limit them. Under the concept of the present invention, the technical features in the above embodiments or different embodiments can also be combined, the steps can be implemented in any order, and there are many other changes in different aspects of the present invention as described above. For the sake of simplicity, they are not provided in detail. Although the present invention has been described in detail with reference to the above embodiments, ordinary technicians in this field should understand that they can still modify the technical solutions described in the above embodiments, or make equivalent replacements for some of the technical features therein. However, these modifications or replacements do not deviate the essence of the corresponding technical solutions from the scope of the technical solutions of the embodiments of the present invention.

Claims

1. A method for collecting conflicting TRXID setting operation dependencies during rollback, characterized in that: include: After the target-side data synchronization service is started, a hash table R is initialized and two files are created to store the keys in the hash table R. After receiving the DML operation from the source, the target-side data synchronization service extracts the table ID and its primary key, index, or custom selected column in the operation as the key, then extracts the transaction ID in the operation as the TRXID. It combines the key and TRXID into a record and saves it to the current file. If the record is the first record in the current file, the log LSN corresponding to the operation is used as the starting LSN of the current file. Determine the conflicting TRXID and conflicting LSN of the operation based on the KEY, TRXID and starting LSN; The method includes constructing a detection record X using the KEY of the current operation and merging the detection record X into the hash table R; performing conflict detection during the merging process, and returning the TRXID value corresponding to the conflicting KEY if there is a conflicting KEY; otherwise, returning 0 as the corresponding TRXID to indicate no conflict; setting the TRXID obtained from the conflict detection as the conflicting TRXID, and writing the starting LSN of the first file in the cache file list corresponding to the current hash table R into the current operation as the conflicting LSN; When the target-side data synchronization service receives the commit operation, it adds the corresponding transaction to the pending transaction queue; When the target-side data synchronization service receives a rollback or partial rollback operation, it collects the conflicting TRXIDs saved in the rolled-back operation. For the rollback operation, the corresponding transaction cannot be discarded, but is added to the queue of pending transactions.

2. The method for collecting conflicting TRXID setting operation dependencies during rollback according to claim 1, characterized in that: After the target-side data synchronization service is started, a hash table R is initialized, and two files are created to store the KEY in the hash table R. Specifically, the target-side data synchronization service is initialized after the target-side data synchronization service is started, and the record address in the hash item of the hash table R is initialized to empty, which is used to store and locate the received operations; the target-side data synchronization service creates two files to store the KEY in the hash table R, and the file name of each file is named incrementally in the order of creation, and the two files are added to the cache file list.

3. The method for collecting conflicting TRXID setting operation dependencies during rollback according to claim 1, characterized in that: The conflict detection and judgment specifically includes: Calculate the hash value of the KEY of the current detection record X and locate the hash item through the hash value; determine whether the record address in the hash item is empty. If so, set the record address in the hash item to the next address space of the current detection record X, backfill the hash item with the address of the detection record X, and return 0 as the conflict TRXID to indicate that no conflict is detected; if not, proceed to the next step of conflict detection and judgment; Determine whether the file ID in the address recorded in the hash item is less than the ID value of the first file in the cache file list. If so, it indicates that this record Y has exceeded the inspection range. Set the address recorded in the hash item to the next address space of the current detection record X, and backfill the hash item with the address of the detection record X. Use 0 as the conflict TRXID to return, indicating that no conflict is detected; if not, proceed to the next step of conflict detection judgment; According to the address recorded in the hash item, the corresponding record Y is loaded from the file. It is determined whether the KEY of record Y is equal to the KEY of the current detection record X and the TRXID of record Y is not equal to the TRXID of the current operation. If so, it means that there is a conflict in the operation. Record Y is removed from the record linked list of the hash item to shorten the length of the linked list in the hash item. The record address in the hash item is set to the next address space of the current detection record X, the address of the current detection record X is backfilled into the hash item, and the TRXID stored in record Y is used as the conflicting TRXID for return; if not, the next step of conflict detection is carried out; Traverse the next record of record Y in sequence and perform conflict detection and judgment until the end of the record list.

4. The method for collecting conflicting TRXID setting operation dependencies during rollback according to claim 2, wherein: The cache file linked list includes two files. When the first file is full, it switches to the second file. When the second file is full, the first file in the cache file linked list is eliminated first, and then a new file is created and added to the cache file linked list after the file ID is incremented.

5. The method for collecting conflicting TRXID setting operation dependencies during rollback according to any one of claims 1 to 4, characterized in that: The collecting of conflicting TRXIDs saved in the operation to be rolled back specifically includes: Locate the transaction that needs to be rolled back using the transaction ID of the rollback or partial rollback operation, and extract the number of rows that need to be rolled back in the partial rollback operation, or extract the number of rows included in the transaction in the rollback operation; Create a conflict transaction list L to collect the conflicting TRXIDs saved in the rollback operation; Extract the rollback operation from the end of the transaction operation list, extract the conflicting TRXID saved in the operation, and add it to the conflicting transaction list L; Continue to extract the last operation to be rolled back and collect the same conflicting TRXID until the specified number of rows is rolled back.

6. The method for collecting conflicting TRXID setting operation dependencies during rollback according to any one of claims 1 to 4, characterized in that: When the system restarts after a failure, the file is initialized to the cache file list of the target end data synchronization service according to the size of the cached file ID.

7. A device for collecting conflicting TRXID setting operation dependencies during rollback, characterized in that: The device includes: at least one processor; and a memory communicatively connected to the at least one processor; wherein the memory stores instructions that can be executed by the at least one processor, and the instructions are executed by the processor to perform the method for collecting the setting operation of conflicting TRXIDs during rollback as described in any one of claims 1-6.

8. A system for collecting conflicting TRXID setting operation dependencies during rollback, applying the method for collecting conflicting TRXID setting operation dependencies during rollback according to any one of claims 1 to 6, characterized in that: The system includes a hash table and file creation module, a key acquisition module, a conflicting TRXID and conflicting LSN acquisition module, and a pending transaction queue addition module, wherein: The hash table and file creation module is used to initialize a hash table R after the target end data synchronization service is started, and create two files to store the KEY in the hash table R; The KEY acquisition module is used to extract the table ID and its primary key, index, or custom selected column in the operation as the KEY after the target-side data synchronization service receives the DML operation from the source, and then extract the transaction ID in the operation as the TRXID. The KEY and TRXID are combined into a record and saved in the current file. If the record is the first record in the current file, the log LSN corresponding to the operation is used as the starting LSN of the current file. The conflicting TRXID and conflicting LSN obtaining module is used to determine the conflicting TRXID and conflicting LSN of the operation according to the KEY, TRXID and starting LSN; The module for adding transactions to the queue to be executed is used to add the corresponding transaction to the queue to be executed when the target-side data synchronization service receives a commit operation; when the target-side data synchronization service receives a rollback or partial rollback operation, the conflicting TRXID saved in the rolled-back operation is collected, and for the rollback operation, the corresponding transaction cannot be discarded, but is added to the queue to be executed.

9. A non-volatile computer storage medium, characterized in that The computer storage medium stores computer executable instructions, which are executed by one or more processors to complete the method for collecting conflicting TRXID setting operations during rollback as described in any one of claims 1-6.