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
|
#!/usr/bin/env python
#
# Public Domain 2014-2019 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 sys, threading, wiredtiger, wttest
from suite_subprocess import suite_subprocess
from wiredtiger import WiredTigerError
from wtscenario import make_scenarios
# TODO - tmp code
def tty_pr(s):
o = open('/dev/tty', 'w')
o.write(s + '\n')
o.close()
class Callback(wiredtiger.AsyncCallback):
def __init__(self, current):
self.current = current
self.ncompact = 0
self.ninsert = 0
self.nremove = 0
self.nsearch = 0
self.nupdate = 0
self.nerror = 0
self.lock = threading.RLock()
def notify_error(self, key, value, optype, desc):
tty_pr('ERROR: notify(' + str(key) + ',' + str(value) + ',' +
str(optype) + '): ' + desc)
def notify(self, op, op_ret, flags):
# Note: we are careful not to throw any errors here. Any
# exceptions would be swallowed by a non-python worker thread.
try:
optype = op.get_type()
if optype != wiredtiger.WT_AOP_COMPACT:
key = op.get_key()
#
# Remove does not set a value. Just set it from the
# reference list.
#
if optype != wiredtiger.WT_AOP_REMOVE:
value = op.get_value()
else:
value = self.current[key]
if optype == wiredtiger.WT_AOP_INSERT:
self.lock.acquire()
self.ninsert += 1
self.lock.release()
elif optype == wiredtiger.WT_AOP_COMPACT:
self.lock.acquire()
self.ncompact += 1
self.lock.release()
# Skip checking key/value.
return 0
elif optype == wiredtiger.WT_AOP_REMOVE:
self.lock.acquire()
self.nremove += 1
self.lock.release()
elif optype == wiredtiger.WT_AOP_SEARCH:
self.lock.acquire()
self.nsearch += 1
self.lock.release()
elif optype == wiredtiger.WT_AOP_UPDATE:
self.lock.acquire()
self.nupdate += 1
self.lock.release()
else:
self.notify_error(key, value, optype, 'unexpected optype')
self.lock.acquire()
self.nerror += 1
self.lock.release()
if self.current[key] != value:
self.notify_error(key, value, optype, 'unexpected value')
self.lock.acquire()
self.nerror += 1
self.lock.release()
except (BaseException) as err:
tty_pr('ERROR: exception in notify: ' + str(err))
raise
return 0
# test_async01.py
# Async operations
# Basic smoke-test of file and table async ops: tests get/set key, insert
# update, and remove.
class test_async01(wttest.WiredTigerTestCase, suite_subprocess):
"""
Test basic operations
"""
table_name1 = 'test_async01'
nentries = 100
async_ops = nentries // 2
async_threads = 3
current = {}
scenarios = make_scenarios([
('file-col', dict(tablekind='col',uri='file')),
('file-fix', dict(tablekind='fix',uri='file')),
('file-row', dict(tablekind='row',uri='file')),
('lsm-row', dict(tablekind='row',uri='lsm')),
('table-col', dict(tablekind='col',uri='table')),
('table-fix', dict(tablekind='fix',uri='table')),
('table-row', dict(tablekind='row',uri='table')),
])
# Enable async for this test.
def conn_config(self):
return 'async=(enabled=true,ops_max=%s,' % self.async_ops + \
'threads=%s)' % self.async_threads
def genkey(self, i):
if self.tablekind == 'row':
return 'key' + str(i)
else:
return self.recno(i+1)
def genvalue(self, i):
if self.tablekind == 'fix':
return int(i & 0xff)
else:
return 'value' + str(i)
# Create and populate the object.
def create_session(self, tablearg):
if self.tablekind == 'row':
keyformat = 'key_format=S'
else:
keyformat = 'key_format=r' # record format
if self.tablekind == 'fix':
valformat = 'value_format=8t'
else:
valformat = 'value_format=S'
create_args = keyformat + ',' + valformat
self.pr('creating session: ' + create_args)
self.session.create(tablearg, create_args)
def test_ops(self):
tablearg = self.uri + ':' + self.table_name1
ncompact = 0
self.create_session(tablearg)
# Populate our reference table first, so we don't need to
# use locks to reference it.
self.current = {}
for i in range(0, self.nentries):
k = self.genkey(i)
v = self.genvalue(i)
self.current[k] = v
# Populate table with async inserts, callback checks
# to ensure key/value is correct.
callback = Callback(self.current)
for i in range(0, self.nentries):
self.pr('creating async op')
op = self.conn.async_new_op(tablearg, None, callback)
k = self.genkey(i)
v = self.genvalue(i)
op.set_key(k)
op.set_value(v)
op.insert()
# Compact after insert.
# Wait for all outstanding async ops to finish.
op = self.conn.async_new_op(tablearg, 'timeout=0', callback)
op.compact()
ncompact += 1
self.conn.async_flush()
self.pr('flushed')
# Now test async search and check key/value in the callback.
for i in range(0, self.nentries):
op = self.conn.async_new_op(tablearg, None, callback)
k = self.genkey(i)
op.set_key(k)
op.search()
# Wait for all outstanding async ops to finish.
self.conn.async_flush()
self.pr('flushed')
# Reset the reference table for the update.
for i in range(0, self.nentries):
k = self.genkey(i)
v = self.genvalue(i+10)
self.current[k] = v
for i in range(0, self.nentries):
self.pr('creating async op')
op = self.conn.async_new_op(tablearg, None, callback)
k = self.genkey(i)
v = self.genvalue(i+10)
op.set_key(k)
op.set_value(v)
op.update()
# Compact after update.
# Wait for all outstanding async ops to finish.
op = self.conn.async_new_op(tablearg, None, callback)
op.compact()
ncompact += 1
self.conn.async_flush()
self.pr('flushed')
# Now test async search and check key/value in the callback.
for i in range(0, self.nentries):
op = self.conn.async_new_op(tablearg, None, callback)
k = self.genkey(i)
op.set_key(k)
op.search()
# Wait for all outstanding async ops to finish.
self.conn.async_flush()
self.pr('flushed')
for i in range(0, self.nentries):
self.pr('creating async op')
op = self.conn.async_new_op(tablearg, None, callback)
k = self.genkey(i)
op.set_key(k)
op.remove()
# Wait for all outstanding async ops to finish.
self.conn.async_flush()
self.pr('flushed')
# Make sure all callbacks went according to plan.
self.assertTrue(callback.ncompact == ncompact)
self.assertTrue(callback.ninsert == self.nentries)
self.assertTrue(callback.nremove == self.nentries)
self.assertTrue(callback.nsearch == self.nentries * 2)
self.assertTrue(callback.nupdate == self.nentries)
self.assertTrue(callback.nerror == 0)
if __name__ == '__main__':
wttest.run()
|