Schedule S
3
is a serial schedule and, since S
1
and S
2
are equivalent to S
3
, S
1
and S
2
are
serializable schedules.
This type of serializability is known as conflict serializability. A conflict serializable
schedule orders any conflicting operations in the same way as some serial execution.
Testing for conflict serializability
Under the constrained write rule (that is, a transaction updates a data item based on its
old value, which is first read by the transaction), a precedence (or serialization) graph
can be produced to test for conflict serializability. For a schedule S, a precedence graph is
a directed graph G = (N, E) that consists of a set of nodes N and a set of directed edges E,
which is constructed as follows:
n Create a node for each transaction.
n Create a directed edge T
i → T
j
, if T
j
reads the value of an item written by T
i
.
n Create a directed edge T
i → T
j
, if T
j
writes a value into an item after it has been read by T
i
.
n Create a directed edge T
i → T
j
, if T
j
writes a value into an item after it has been written
by T
i
.
If an edge T
i → T
j
exists in the precedence graph for S, then in any serial schedule S ′
equivalent to S, T
i
must appear before T
j
. If the precedence graph contains a cycle the
schedule is not conflict serializable.
ตาราง S
3
คือตารางประจำและ ตั้งแต่ S
1
และ S
2
เทียบเท่ากับ S
3
, S
1
และ S
2
มี
อนุกรมได้กำหนดการ
serializability ชนิดนี้เรียกว่าความขัดแย้ง serializability ความขัดแย้งที่เป็นอนุกรมได้
กำหนดการใบสั่งใด ๆ ดำเนินการขัดแย้งกันในเดียวกันการดำเนินการประจำทางบาง
ทดสอบแย้ง serializability
ใต้เขียนจำกัดกฎ (นั่นคือ รายการข้อมูลที่ใช้ในการปรับปรุงธุรกรรมของ
ค่าเดิม ซึ่งต้องอ่านโดย), กราฟสำคัญ (หรืออนุกรม)
สามารถผลิตการทดสอบ serializability ความขัดแย้งได้ สำหรับกำหนดการ S กราฟสำคัญคือ
กราฟโดยตรง G = (N, E) ที่ประกอบด้วยชุดของโหนด N และชุดโดยตรงขอบ E,
ซึ่งสร้างขึ้นเป็นดังนี้:
n สร้างโหนสำหรับแต่ละธุรกรรม
n สร้างขอบโดยตรง T
ฉัน→ T
เจ
, ถ้า T
เจ
อ่านค่าของสินค้าเขียน โดย T
ฉัน
n สร้างขอบโดยตรง T
ฉัน→ T
เจ
, ถ้า T
เจ
เขียนค่าลงในรายการหลังจากที่ได้อ่าน โดย T
ฉัน
.
n สร้างขอบโดยตรง T
ฉัน→ T
เจ
, ถ้า T
เจ
เขียนค่าลงในรายการหลังจากการเขียน
โดย T
ฉัน
.
ถ้าขอบ T
ฉัน→ T
j
อยู่ ในกราฟสำคัญสำหรับ S แล้ว ใน′การกำหนดการประจำ S
เท่ากับ S, T
ฉัน
ต้องปรากฏก่อน T
j
ถ้ากราฟสำคัญประกอบด้วยวงจร
กำหนดการไม่เป็นอนุกรมได้แย้ง
การแปล กรุณารอสักครู่..