summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_prepare08.py
blob: a7508ec3af49041296c51d74d0432579279dc786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
#!/usr/bin/env python
#
# Public Domain 2014-2020 MongoDB, Inc.
# Public Domain 2008-2014 WiredTiger, Inc.
#
# This is free and unencumbered software released into the public domain.
#
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a compiled
# binary, for any purpose, commercial or non-commercial, and by any
# means.
#
# In jurisdictions that recognize copyright laws, the author or authors
# of this software dedicate any and all copyright interest in the
# software to the public domain. We make this dedication for the benefit
# of the public at large and to the detriment of our heirs and
# successors. We intend this dedication to be an overt act of
# relinquishment in perpetuity of all present and future rights to this
# software under copyright law.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.

import fnmatch, os, shutil, time
from helper import copy_wiredtiger_home
import wiredtiger, wttest
from wtdataset import SimpleDataSet

def timestamp_str(t):
    return '%x' % t

# test_prepare08.py
# Test to ensure prepared tombstones are properly aborted/committed even when they are written
# to the data store.
class test_prepare08(wttest.WiredTigerTestCase):
    # Force a small cache.
    conn_config = 'cache_size=10MB,eviction_dirty_trigger=80,eviction_updates_trigger=80'

    def updates(self, ds, uri, nrows, value, ts):
        cursor = self.session.open_cursor(uri)
        self.session.begin_transaction('isolation=snapshot')
        for i in range(1, nrows):
            cursor.set_key(ds.key(i))
            cursor.set_value(value)
            self.assertEquals(cursor.update(), 0)
        self.session.commit_transaction('commit_timestamp=' + timestamp_str(ts))
        cursor.close()

    def removes(self, ds, uri, nrows, ts):
        cursor = self.session.open_cursor(uri)
        self.session.begin_transaction('isolation=snapshot')
        for i in range(1, nrows):
            cursor.set_key(ds.key(i))
            self.assertEquals(cursor.remove(), 0)
        self.session.commit_transaction('commit_timestamp=' + timestamp_str(ts))
        cursor.close()

    def check(self, ds, uri, nrows, value, ts):
        cursor = self.session.open_cursor(uri)
        self.session.begin_transaction('ignore_prepare=true,read_timestamp=' + timestamp_str(ts))
        for i in range(1, nrows):
            cursor.set_key(ds.key(i))
            if value == None:
                self.assertEqual(cursor.search(), wiredtiger.WT_NOTFOUND)
            else:
                self.assertEquals(cursor.search(), 0)
                self.assertEquals(cursor.get_value(),value)
        self.session.commit_transaction()
        cursor.close()

    def test_prepare_delete_rollback(self):
        nrows = 2000

        # Create a small table.
        uri_1 = "table:test_prepare08_1"
        ds_1 = SimpleDataSet(self, uri_1, 0, key_format="S", value_format='u')
        ds_1.populate()

        uri_2 = "table:test_prepare08_2"
        ds_2 = SimpleDataSet(self, uri_2, 0, key_format="S", value_format='u')
        ds_2.populate()

        value_a = b"aaaaa" * 100
        value_b = b"bbbbb" * 100
        value_c = b"ccccc" * 100
        value_d = b"ddddd" * 100
        value_e = b"eeeee" * 100

        # Commit some updates along with a prepared update, which is not resolved.
        self.conn.set_timestamp('oldest_timestamp=' + timestamp_str(10))
        self.conn.set_timestamp('stable_timestamp=' + timestamp_str(10))

        # Initially load huge data
        self.updates(ds_1, uri_1, nrows, value_a, 20)
        self.updates(ds_2, uri_2, nrows, value_a, 20)

        # Add some more updates
        self.updates(ds_1, uri_1, nrows, value_b, 30)
        self.updates(ds_2, uri_2, nrows, value_b, 30)

        # Verify the updates
        self.check(ds_1, uri_1, nrows, value_a, 20)
        self.check(ds_1, uri_1, nrows, value_b, 30)

        self.check(ds_2, uri_2, nrows, value_a, 20)
        self.check(ds_2, uri_2, nrows, value_b, 30)

        # Checkpoint
        self.session.checkpoint()

        # Remove the updates from a prepare session and keep it open.
        session_p = self.conn.open_session()
        cursor_p = session_p.open_cursor(uri_1)
        session_p.begin_transaction('isolation=snapshot')
        for i in range(1, nrows):
            cursor_p.set_key(ds_1.key(i))
            self.assertEquals(cursor_p.remove(), 0)
        session_p.prepare_transaction('prepare_timestamp=' + timestamp_str(40))

        # Adding more updates to other table should trigger eviction on uri_1
        self.updates(ds_2, uri_2, nrows, value_c, 40)
        self.updates(ds_2, uri_2, nrows, value_d, 50)
        self.updates(ds_2, uri_2, nrows, value_e, 60)

        self.check(ds_1, uri_1, nrows, value_a, 20)
        self.check(ds_1, uri_1, nrows, value_b, 50)

        #rollback the prepared session
        session_p.rollback_transaction()

        self.check(ds_1, uri_1, nrows, value_a, 20)
        self.check(ds_1, uri_1, nrows, value_b, 50)

        # close sessions.
        cursor_p.close()
        session_p.close()
        self.session.close()

    def test_prepare_update_delete_commit(self):
        nrows = 2000

        # Create a small table.
        uri_1 = "table:test_prepare10_1"
        ds_1 = SimpleDataSet(self, uri_1, 0, key_format="S", value_format='u')
        ds_1.populate()

        # Create another small table.
        uri_2 = "table:test_prepare10_2"
        ds_2 = SimpleDataSet(self, uri_2, 0, key_format="S", value_format='u')
        ds_2.populate()

        value_a = b"aaaaa" * 100
        value_b = b"bbbbb" * 100
        value_c = b"ccccc" * 100
        value_d = b"ddddd" * 100
        value_e = b"eeeee" * 100

        # Commit some updates along with a prepared update, which is not resolved.
        self.conn.set_timestamp('oldest_timestamp=' + timestamp_str(10))
        self.conn.set_timestamp('stable_timestamp=' + timestamp_str(10))

        # Initially load huge data
        self.updates(ds_1, uri_1, nrows, value_a, 20)
        self.updates(ds_2, uri_2, nrows, value_a, 20)

        # Add some more updates
        self.updates(ds_1, uri_1, nrows, value_b, 30)
        self.updates(ds_2, uri_2, nrows, value_b, 30)

        # Verify the updates
        self.check(ds_1, uri_1, nrows, value_a, 20)
        self.check(ds_1, uri_1, nrows, value_b, 30)

        self.check(ds_2, uri_2, nrows, value_a, 20)
        self.check(ds_2, uri_2, nrows, value_b, 30)

        # Checkpoint
        self.session.checkpoint()

        # Remove the updates from a prepare session and keep it open.
        session_p = self.conn.open_session()
        cursor_p = session_p.open_cursor(uri_1)
        session_p.begin_transaction('isolation=snapshot')
        for i in range(1, nrows):
            cursor_p.set_key(ds_1.key(i))
            cursor_p.set_value(value_c)
            self.assertEquals(cursor_p.update(), 0)
            cursor_p.set_key(ds_1.key(i))
            self.assertEquals(cursor_p.remove(), 0)
        session_p.prepare_transaction('prepare_timestamp=' + timestamp_str(40))

        # Adding more updates to other table should trigger eviction on uri_1
        self.updates(ds_2, uri_2, nrows, value_c, 40)
        self.updates(ds_2, uri_2, nrows, value_d, 50)
        self.updates(ds_2, uri_2, nrows, value_e, 60)

        self.check(ds_1, uri_1, nrows, value_a, 20)
        self.check(ds_1, uri_1, nrows, value_b, 30)
        self.check(ds_1, uri_1, nrows, value_b, 50)

        # Commit the prepared session
        session_p.commit_transaction('commit_timestamp=' + timestamp_str(50) + ',durable_timestamp=' + timestamp_str(60))

        self.check(ds_1, uri_1, nrows, value_a, 20)
        self.check(ds_1, uri_1, nrows, value_b, 30)
        self.check(ds_1, uri_1, 0, None, 50)

        # close sessions.
        cursor_p.close()
        session_p.close()
        self.session.close()

    def test_prepare_update_delete_commit_with_no_base_update(self):
        nrows = 2000

        # Create a small table.
        uri_1 = "table:test_prepare10_1"
        ds_1 = SimpleDataSet(self, uri_1, 0, key_format="S", value_format='u')
        ds_1.populate()

        # Create another small table.
        uri_2 = "table:test_prepare10_2"
        ds_2 = SimpleDataSet(self, uri_2, 0, key_format="S", value_format='u')
        ds_2.populate()

        value_a = b"aaaaa" * 100
        value_b = b"bbbbb" * 100
        value_c = b"ccccc" * 100
        value_d = b"ddddd" * 100
        value_e = b"eeeee" * 100

        # Commit some updates along with a prepared update, which is not resolved.
        self.conn.set_timestamp('oldest_timestamp=' + timestamp_str(10))
        self.conn.set_timestamp('stable_timestamp=' + timestamp_str(10))

        # Initially load huge data
        self.updates(ds_1, uri_1, nrows, value_a, 20)
        self.updates(ds_2, uri_2, nrows, value_a, 20)

        # Remove updates from one table and add some more updates to another table
        self.removes(ds_1, uri_1, nrows, 30)
        self.updates(ds_2, uri_2, nrows, value_b, 30)

        # Checkpoint
        self.session.checkpoint()

        # Remove the updates from a prepare session and and keep it open.
        session_p = self.conn.open_session()
        cursor_p = session_p.open_cursor(uri_1)
        session_p.begin_transaction('isolation=snapshot')
        for i in range(1, nrows):
            cursor_p.set_key(ds_1.key(i))
            cursor_p.set_value(value_c)
            self.assertEquals(cursor_p.update(), 0)
            cursor_p.set_key(ds_1.key(i))
            cursor_p.set_value(value_d)
            self.assertEquals(cursor_p.update(), 0)
            cursor_p.set_key(ds_1.key(i))
            self.assertEquals(cursor_p.remove(), 0)
        session_p.prepare_transaction('prepare_timestamp=' + timestamp_str(40))

        # Adding more updates to other table should trigger eviction on uri_1
        self.updates(ds_2, uri_2, nrows, value_c, 40)
        self.updates(ds_2, uri_2, nrows, value_d, 50)
        self.updates(ds_2, uri_2, nrows, value_e, 60)

        self.check(ds_1, uri_1, nrows, value_a, 20)
        self.check(ds_1, uri_1, 0, None, 30)
        self.check(ds_1, uri_1, 0, None, 50)

        # Commit the prepared session
        session_p.commit_transaction('commit_timestamp=' + timestamp_str(50) + ',durable_timestamp=' + timestamp_str(60))

        self.check(ds_1, uri_1, nrows, value_a, 20)
        self.check(ds_1, uri_1, 0, None, 30)
        self.check(ds_1, uri_1, 0, None, 50)

        # close sessions.
        cursor_p.close()
        session_p.close()
        self.session.close()

if __name__ == '__main__':
    wttest.run()