System and method for selective partition locking6754656Abstract A system and a method are described for selectively locking the partitions of a partitioned table in a relational database. The database system locks only those partitions of the table that are accessed by an application. Other partitions are available for concurrent access by other applications, regardless of the strength of the lock needed. Claims We claim: Description BACKGROUND OF THE INVENTION
CREATE TABLESPACE TPIAA201
NUMPARTS 8
LOCKSIZE ROW;
CREATE TABLE TBIAA201
( LASTNAME VARCHAR(20),
FIRSTNAME CHAR(20),
GENDER CHAR(1),
SALARY INTEGER,
BONUS INTEGER,
DEPT CHAR(4) )
IN TPIAA201;
CREATE INDEX IPIAA201
ON TBIAA201
(LASTNAME)
CLUSTER ( PART 1 VALUES (`CZZZZZZZZZZZZZZZZZZZ`),
PART 2 VALUES (`FZZZZZZZZZZZZZZZZZZZ`),
PART 3 VALUES (`HZZZZZZZZZZZZZZZZZZZ`),
PART 4 VALUES (`KZZZZZZZZZZZZZZZZZZZ`),
PART 5 VALUES (`OZZZZZZZZZZZZZZZZZZZ`),
PART 6 VALUES (`SZZZZZZZZZZZZZZZZZZZ`),
PART 7 VALUES (`VZZZZZZZZZZZZZZZZZZZ`),
PART 8 VALUES (`ZZZZZZZZZZZZZZZZZZZZ`));
The CREATE TABLESPACE statement creates table space TPIAA201, and identifies the table space as partitioned into eight partitions (NUMPARTS 8). The next statement creates a table TBIAA201 in the partitioned table space and defines the columns of the table. The third statement creates a partitioned index IPIAA201 on the table and defines the range of the partitioning key (LASTNAME) for each partition. The result is illustrated in FIG. 1 which depicts the table 100 with eight partitions, of which three are shown 102, 103, and 104. The index 105 includes eight partitions, of which three are illustrated 106, 107 and 108. Each index partition indexes to a respective table partition and defines the range of values in that partition for the defined partitioning key. For example, the index partition 107 indexes to last names in which the beginning letter extends from D to F. Thus, the record 109 stored as a row in partition 103 is within the key range for that partition, since the value in the LASTNAME field is "Fuller". As is known in the prior art, when table space is created, certain conditions may be established at its creation. For example, the programmer who creates the table space may specify whether its contents are to be locked at the row or page level, and also may enable lock escalation in the table space by a lockmax value. According to the invention, selective partition locking can be elected as a condition when table space is created. In this regard, we have added the keyword "LOCKPART" to the CREATE TABLESPACE and ALTER TABLESPACE statements. The LOCKPART keyword may be set to "YES" or "NO". If set to YES, selective partition locking is enabled; otherwise it is not. These and many other conditions are stored in a database directory 400 when the table space is created, and are indexed 401 in the directory by the name of the table space. FIG. 2 illustrates a top level diagram of the components and the flow of activity in the preferred embodiment of our invention from a user, through a central electronics complex, to a database system. A central electronics complex (CEC) 200 includes a general purpose programmed digital computer on which programs that form a database management system (DBMS) 201 execute to provide users 204, 206 with access to a stored database 202. In the preferred embodiment, the database is a relational database whose contents are organized by relations that are represented as tables of data values, such as the table 203. A user 204 dispatches a request for access to the database 202 by way of an application 205 that is conventionally coupled to the DBMS 201. Other users such as the user 206 access the database 202 by way of the same or other respective applications, such as the application 207. User requests are received by a relational data system (RDS) component 210 of the DBMS 201. The RDS 210 decides what stored data is required to satisfy a user request and requests access to the data on behalf of the application from which the request was received. A data manager (DM) 212 receives requests for access to records from the RDS 210. Before the DM 212 retrieves data requested by the RDS 210, it submits a request for a lock on the data to a resource lock manager (RLM) 214. The RLM 214 provides a locking service to the DBMS 201, managing locks on data in the database 202. As thus far described, with access to the database 202 coming only CEC 200, the non-data sharing environment is established. In the non-data sharing environment, the DBMS 201 provides concurrent access to the database for a plurality of applications, including the applications 205 and 207. Concurrency is enhanced by the invention, which is embodied in programming logic in various modules of the DM 212 that is represented by a selective partition locking component 215. In the data-sharing environment, other CEC's such as the CEC 220 access contents of the database 202, with concurrency between the CEC's 200 and 220 being managed by a global lock manager (GLM) 222. In the data-sharing environment, the GLM 222 includes programming logic that supports hierarchial locking. This existing support is used in a novel way by the DM 212 with SPL 215 to achieve finer granularity in multi-CEC concurrency, i.e. partition-level contention as an alternate to table space contention. FIG. 3 depicts the process by which selective partition locking is implemented in our invention. FIG. 3 contains references to Tables I-VII which are pseudocode representations of one or more computer programs (software) and of functions of the DM 212 that are performed by the selective partition locking component 215. In practice these functions may be performed by a programmed general purpose digital computer, for example, the DB2 system for the MVS/ESA operating system that executes on a SYSTEM/390 computer, all of which are available from the International Business Machines Corporation, Armonk, N.Y. User access in this invention is by way of terminals on whose behalf applications execute in the computer. These applications may include application programs with embedded SQL statements, or may comprise query processors. Turning now to a method that embodies selective partition locking according to our invention, FIG. 3 illustrates a first step 302 in which the RDS 210 receives a request for access to data in the database 202. For the purpose of illustration and by way of example such access requests may be in the form of SQL data manipulation statements such as SELECT, INSERT, UPDATE, and DELETE. An access request may include one or more such statements. When it receives an access request at 302, the RDS 210 determines the minimum lock state needed for each statement and then, for each statement, calls the TS_SETUP logic in step 304 sending with the call the proposed lock state and the name of the database table being accessed. In response to the call made in step 304, the DM in step 306 creates control blocks necessary for the requested operation. The TS_SETUP logic used in this step is illustrated in Table I, where the DM 212 creates a TS control block 402, if one has not been created in response to a previous TS_SETUP call for this access request. The logic also creates one or more TS access control blocks 404, 406, 408 for each statement in the access request. The TS control block 402 is built for the database table that contains the data requested by the application. Certain information from the entry for the table in the database directory 400 is copied to the TS control block 402. Such information includes the state of the SPL flag, the selected locking granularity (row or page), and the lockmax value. If the table space is partitioned, and selective partition locking (SPL) is enabled for the defined, partitioned table space (i.e. LOCKPART YES in a CREATE or ALTER TABLESPACE statement), the DM 212 checks any predefining conditions for using SPL. For example, SPL would not be available to applications whose access path uses a type 1 index. SPL is also not needed if a statement requires locking the entire table in an exclusive mode. If the conditions do not prevent SPL the DM 212 sets an SPL control flag 410 in the TS control block 402. For each statement, the DM stores the lock state requested by the RDS in a TS access control block for the statement (for example, at 436 in control block 404). Otherwise, if SPL is not to be used, the entire table space is locked in the highest requested lock state. When TS_SETUP processing is completed, the DM 212 returns to the RDS 210. In step 308, the RDS 210 calls the DM 212 to determine which rows qualify for processing by satisfying the conditions of a statement. At least one call is made for each statement. Each call directs the DM 212 to qualify one row in the identified table according to conditions set forth in the statement. For a statement in which "n" rows are to be qualified, looping occurs in the RDS, with the RDS calling the DM n+1 times. The first n calls return data; the (n+1)th call says "finished". Each statement type requires a call to a particular piece of DM logic. A SELECT statement requires a call to DM_SELECT (Table II); DELETE and UPDATE statements require calls to DM_DELETE/UPDATE (Table III); INSERT statements require calls to DM_INSERT (Table IV). The DM 212 responds in step 310. The first step of each of the DM functions requires the requested lock state to be transferred from the TS access control block for a statement to the TS control block (into field 412). The table is then accessed and its rows are analyzed. For example, in Table II, a SELECT statement causes the DM 212 to check for the rows of the table identified in the statement against the conditions set forth in the statement. For each row that meets the qualifications of the statement, the DM 212 first checks to determine whether conditions have been met which allow locking at the requested level to be avoided. If not, the DM 212 checks whether the page containing the row has been locked. In this regard, the granularity of low level locks as between row and page is one of the conditions that can be set by a user and stored in the database directory 401. For any statement in an access request in which a qualifying row or a page containing the qualifying row is not already locked, the GETLOCK logic of Table V is called. The GETLOCK logic uses the TS access control block for a statement being processed and the TS control block for the table referenced in order to determine which partition should be locked. A partition to be locked is a partition containing the qualified row, and the partition is locked by calling the LOCKPART logic to lock the partition in the state specified by the RDS; that state is contained in the TS control block 402 in field 412. When LOCKPART returns to the GETLOCK logic, if the partition is locked with an intent lock, the GETLOCK logic then proceeds to lock the qualified row or page at the level of granularity specified in the TS control block 402 in field 416. The number of row or page locks acquired in the GETLOCK logic for the table is accumulated in the TS control block at 417. If lock escalation is enabled (by a non-zero lockmax value) and the number of row locks (or page locks) acquired is greater than the lockmax value, then the GETLOCK processing calls the LOCKESCA logic of Table VII. The LOCKPART logic of Table VI checks whether the partition which should be locked has been locked. This is indicated in the TS control block 402 by one of the subfields of field 420. Assuming that the TS control block 402 represents the partitioned table illustrated in FIG. 1 that includes eight partitions, there are eight subfields in field 420, one for each partition, each subfield containing the lock state of a respective partition. In this regard, the ith subfield contains the lock state for partition i. If the partition is locked, but locked in a state that is weaker than the requested lock state, the RLM 214 is called to upgrade the lock state, with the upgraded state being recorded in the appropriate subfield of the field 420. Return is then made to the GETLOCK logic. Following DM processing of the statement or statements of the access request, the DM exits from step 310. In step 312 of FIG. 3, if lock escalation is enabled for the table, the LOCKESCA logic Table VII, when called by the GETLOCK logic, first determines whether SPL has been enabled. When SPL has been enabled, the lock state of each partition of the table being accessed by the application is considered. If a partition is locked with an intent lock (IS, IX, or SIX), that state of the lock for the partition is upgraded to the appropriate gross lock. In this regard, in the table space, if a partition is locked IS, the lock is upgraded to S; if a partition is locked IX or SIX, the lock is upgraded to X. When a lock is upgraded, the new lock state for the partition is recorded in the appropriate subfield of the Table control block 402. In addition, an escalation flag (Esc flag) 419 is set in control block 402 by which later requests by the same application for other partitions of the same table will be escalated automatically. In step 314, when the requested access has been completed, locks are released by the DM 212, using conventional rules and means, and according to various conditions. The information contained in the TS control block 402 and in one or more TS access control blocks 404, 406 and 408 is illustrated in FIG. 4. The fields of the TS control block 402 include: SPL flag 410 comprising code indicating whether or not SPL has been elected; TS lock state 412 that contains the lock state moved by the first statement of any one of the DM functions in Table II, III, and IV; the row lock flag 416 containing code indicating the users's selection of either row or page locking; a lockmax field 417 containing the lockmax value that indicates the maximum number of page and row locks held at any one time in the table space; a lock count field 418 that accumulates the number of either row or page locks acquired on the table represented by the control block 402; and a field for the Esc flag 419. The field 420 contains one subfield for each partition of the represented table; each subfield includes one entry only for the partition it represents; and the ith subfield contains the lock state for partition i. It is important to note that there may be no lock state given for partitions that are in the field 420 if the application is not accessing those partitions. Other control data is stored in fields 21. The TS access control blocks 404, 406, 408 have essentially identical formats, and only the format of TS access control block 404 will be described. There are typically as many TS access control blocks as there are statements in an access request, and the TS access control blocks of an access request are linked to a TS control block by a pointer. Thus, the TS access control block 404 includes a pointer field 422 containing a pointer to the TS control block 402. In addition, the TS access control block 404 includes a field 424 into which the acquired state of the partition lock for the associated statement received from the RDS 210 is placed; a field 434 denoting the current position of the DM process within the table space in the form of a record identification (RID), which contains the page and partition number where the row is located; and a field 436 containing lock information about the page that contains the just-qualified row. With selective partition locking according to FIGS. 3 and 4, any application of FIG. 2 can request access to the database 202, and have its access protected against interference by possession of locks, including partition locks. All locks, including partition locks, are managed by the RLM 214 according to a locking scheme that provides concurrency control with serializability, levels of isolation, and intent locking. In this regard, reference is given to C. J. Date, AN INTRODUCTION TO DATABASE SYSTEMS, Reading, Massachusetts: Addison-Wesley (1995), pp. 391-415. Therefore, with reference to FIGS. 1-4, and with SPL enabled, assume the application 205 submits an access request by which locks are acquired on its behalf on partitions and rows of the table 100 in the database 202. Assume that the application 205 has locked partition 103 in IS mode and that application 207 later requests access to data in the partition 103 in IX mode. In this case, the RLM 214 will grant the request of application 207, since the lock types are compatible, thereby permitting concurrent access to the partition, without locking the entire table 100. However, if the application 207 had sought an exclusive (X) lock on partition 103, its request would have been denied for the duration of the IS (or S, if escalated) lock held on partition 103 by application 205. In this regard, the access to partition 103 would be serialized, thereby protecting the access to partition 103 by application 205 against interference in the form of updates to the partition by application 207. Returning to FIG. 2, in the data sharing environment, locking is managed by the GLM 222 in conjunction with the RLMs of the CECs 200 and 220. Relatedly, assume the application 205 requests access to an identified unit of data in the database 202. This request is passed to the RLM 214 by the DBMS 201 serving the application 205. Implicit in the request is a request for lock. The RLM 214 forwards the lock request by message to the GLM 222. The GLM 222 receives and processes lock grant requests from its RLMs and processes the requests, granting locks by means of messages returned to the requesting RLMs. When the application 205 requests access to a record in the database 202, the DBMS 201 will request a lock on the record, or on the page that contains the record, if page level locking in effect. Before the record/page lock is requested, the DBMS 201 will also request an object lock in the database 202, where the record is stored. In the prior art, the object lock would be on the table containing the record. The table lock will need to be forwarded to the GLM 222 by RLM 214. The record/page lock requested by DBMS 201 is associated with the table lock. If another DBMS has a lock on the table, the record/page lock will also need to be forwarded to the GLM 222 by RLM 214. In the invention, the object locked will be the partition that contains the record. DMBS 201 will associate the record/page lock with the partition that contains the record. Therefore, if the partition lock is not held by other DBMSs, RLM 214 can grant the record/page lock locally without sending the request to GLM 222. This reduces the amount of page and row locks that need to be propagated beyond the RLM to the GLM in order to resolve locking conflicts. Therefore, with SPL, the tracking to avoid sending page/row locks to GLM can be done at the partition level, instead of at the table level. The invention further extends to a database language statement for explicitly locking partitions, having the following syntax: ##EQU1## This statement is an extension of a known LOCK TABLE statement; it may be used by a programmer to explicitly lock one or more partitions of the named table in either exclusive (X) or in shared (S) mode. Of course when locked in exclusive mode, no other application can access any part of a locked partition for any purpose for so long as the lock is held. In shared mode, other applications can access a locked partition for read-only access. When issued, the statement is processed by DBMS 201 and the resource lock manager 214 in the same manner as the prior art LOCK TABLE statement except that a single partition or set of partitions of the named table are locked instead of the entire table. When the invention is practiced as a procedure performed by a programmed general purpose digital computer, it may also comprise an article of manufacturing, embodied as a computer program product in a form illustrated in FIG. 5. A program comprising a plurality of program steps, or means for performing program steps, written in a computer language, is compiled into object form and stored on a program storage device such as a disk 500. The program steps implement the pseudocode of Tables I-VII and may be included in the computer program of a data manager in a DBMS. Those skilled in the art will appreciate that the storage device 500 is merely illustrative of storage media in which a computer program may be fixed, in whole or in part, for greater or shorter periods of time. Such media include, without reservation, disk, tape, ROM, RAM, system nodes, and network nodes. TABLE I
TABLE I
TS_SETUP
input = lock-state, table id
Create TS-access control block (TS-access-CB)
Create TS control block (TS-CB)
IF table space is partitioned THEN
IF table space is defined for Selective Partition Locking (SPL) THEN
IF all conditions for using SPL are met THEN
(SPL not used if access path includes type 1 index, or
statement is LOCK TABLE IN EXCLUSIVE MODE, or if
plan was bound ACQUIRE (ALLOCATE))
DO.
Indicate in TS control block that SPL should be used
Store lock state in TS-access control block
END.
ELSE
Indicate in TS control block that SLP should not be used
IF not using SPL THEN
IF table space not locked in at least the requested lock state THEN
Lock table space
Equivalent Embodiments Although the preferred embodiment and best mode are described with reference to a relational database system of the DB 2-type, that uses physical partitioning where every partition maps to a data set, this is for illustration only. We do not intend to limit the application of our invention only to such physical partitioning, nor to partitioning based on partitioning key values. We contemplate the application of our invention to other types of partitioning, such as fragmenting by round robin and other means. Generally, we intend for our invention to apply to a partition as some grouping of data in which all rows of the group belong to a partition, and the partition to which a row belongs can be ascertained by inspection of the row. In this regard, the invention may be considered as implementing a table.fwdarw.page/row locking hierarchy as n partition .fwdarw.page/row locking hierarchies for additional concurrency between application that tend to access different partitions. We contemplate further that the invention may be extended to vertical data partitions. Therefore, it is to be understood that this, the presently preferred embodiment of our invention, is only representative of subject matter which we broadly contemplate as being fully encompassed by other embodiments that will become obvious to those skilled in the art, and that the scope of our invention is accordingly to be limited by nothing other than the appended claims.
|
Same subclass Same class Consider this |
||||||||||
