Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
neoppod
Commits
52c5d862
Commit
52c5d862
authored
Aug 09, 2012
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
storage: fix severe performance issue by committing backend only at key moments
parent
4741e38e
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
344 additions
and
437 deletions
+344
-437
neo/storage/database/manager.py
neo/storage/database/manager.py
+9
-39
neo/storage/database/mysqldb.py
neo/storage/database/mysqldb.py
+155
-177
neo/storage/database/sqlite.py
neo/storage/database/sqlite.py
+174
-192
neo/storage/handlers/storage.py
neo/storage/handlers/storage.py
+1
-0
neo/tests/storage/testStorageDBTests.py
neo/tests/storage/testStorageDBTests.py
+0
-24
neo/tests/threaded/__init__.py
neo/tests/threaded/__init__.py
+5
-5
No files found.
neo/storage/database/manager.py
View file @
52c5d862
...
...
@@ -15,7 +15,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
neo.lib
import
logging
,
util
from
neo.lib.exception
import
DatabaseFailure
from
neo.lib.protocol
import
ZERO_TID
class
CreationUndone
(
Exception
):
...
...
@@ -28,7 +27,6 @@ class DatabaseManager(object):
"""
Initialize the object.
"""
self
.
_under_transaction
=
False
self
.
_wait
=
wait
self
.
_parse
(
database
)
...
...
@@ -50,34 +48,9 @@ class DatabaseManager(object):
"""
raise
NotImplementedError
def
__enter__
(
self
):
"""
Begin a transaction
"""
if
self
.
_under_transaction
:
raise
DatabaseFailure
(
'A transaction has already begun'
)
r
=
self
.
begin
()
self
.
_under_transaction
=
True
return
r
def
__exit__
(
self
,
exc_type
,
exc_value
,
tb
):
if
not
self
.
_under_transaction
:
raise
DatabaseFailure
(
'The transaction has not begun'
)
self
.
_under_transaction
=
False
if
exc_type
is
None
:
self
.
commit
()
else
:
self
.
rollback
()
def
begin
(
self
):
pass
def
commit
(
self
):
pass
def
rollback
(
self
):
pass
def
_getPartition
(
self
,
oid_or_tid
):
return
oid_or_tid
%
self
.
getNumPartitions
()
...
...
@@ -91,11 +64,8 @@ class DatabaseManager(object):
"""
Set a configuration value
"""
if
self
.
_under_transaction
:
self
.
_setConfiguration
(
key
,
value
)
else
:
with
self
:
self
.
_setConfiguration
(
key
,
value
)
self
.
commit
()
def
_setConfiguration
(
self
,
key
,
value
):
raise
NotImplementedError
...
...
@@ -344,8 +314,8 @@ class DatabaseManager(object):
else
:
del
refcount
[
data_id
]
if
prune
:
with
self
:
self
.
_pruneData
(
data_id_list
)
self
.
commit
()
__getDataTID
=
set
()
def
_getDataTID
(
self
,
oid
,
tid
=
None
,
before_tid
=
None
):
...
...
@@ -465,11 +435,11 @@ class DatabaseManager(object):
def
truncate
(
self
,
tid
):
assert
tid
not
in
(
None
,
ZERO_TID
),
tid
with
self
:
assert
self
.
getBackupTID
()
self
.
setBackupTID
(
tid
)
for
partition
in
xrange
(
self
.
getNumPartitions
()):
self
.
_deleteRange
(
partition
,
tid
)
self
.
commit
()
def
getTransaction
(
self
,
tid
,
all
=
False
):
"""Return a tuple of the list of OIDs, user information,
...
...
neo/storage/database/mysqldb.py
View file @
52c5d862
...
...
@@ -93,23 +93,10 @@ class MySQLDatabaseManager(DatabaseManager):
self
.
conn
.
query
(
"SET SESSION group_concat_max_len = -1"
)
self
.
conn
.
set_sql_mode
(
"TRADITIONAL,NO_ENGINE_SUBSTITUTION"
)
def
begin
(
self
):
q
=
self
.
query
q
(
"BEGIN"
)
return
q
if
LOG_QUERIES
:
def
commit
(
self
):
logging
.
debug
(
'committing...'
)
self
.
conn
.
commit
()
def
rollback
(
self
):
logging
.
debug
(
'aborting...'
)
self
.
conn
.
rollback
()
else
:
commit
=
property
(
lambda
self
:
self
.
conn
.
commit
)
rollback
=
property
(
lambda
self
:
self
.
conn
.
rollback
)
def
query
(
self
,
query
):
"""Query data from a database."""
conn
=
self
.
conn
...
...
@@ -271,7 +258,7 @@ class MySQLDatabaseManager(DatabaseManager):
def
_getLastIDs
(
self
,
all
=
True
):
p64
=
util
.
p64
with
self
as
q
:
q
=
self
.
query
trans
=
dict
((
partition
,
p64
(
tid
))
for
partition
,
tid
in
q
(
"SELECT partition, MAX(tid)"
" FROM trans GROUP BY partition"
))
...
...
@@ -292,23 +279,17 @@ class MySQLDatabaseManager(DatabaseManager):
return
trans
,
obj
,
None
if
oid
is
None
else
p64
(
oid
)
def
getUnfinishedTIDList
(
self
):
tid_set
=
set
()
with
self
as
q
:
r
=
q
(
"""SELECT tid FROM ttrans"""
)
tid_set
.
update
((
util
.
p64
(
t
[
0
])
for
t
in
r
))
r
=
q
(
"""SELECT tid FROM tobj"""
)
tid_set
.
update
((
util
.
p64
(
t
[
0
])
for
t
in
r
))
return
list
(
tid_set
)
p64
=
util
.
p64
return
[
p64
(
t
[
0
])
for
t
in
self
.
query
(
"SELECT tid FROM ttrans"
" UNION SELECT tid FROM tobj"
)]
def
objectPresent
(
self
,
oid
,
tid
,
all
=
True
):
oid
=
util
.
u64
(
oid
)
tid
=
util
.
u64
(
tid
)
partition
=
self
.
_getPartition
(
oid
)
with
self
as
q
:
return
q
(
"SELECT oid FROM obj WHERE partition=%d AND oid=%d AND "
"tid=%d"
%
(
partition
,
oid
,
tid
))
or
all
and
\
q
(
"SELECT oid FROM tobj WHERE tid=%d AND oid=%d"
%
(
tid
,
oid
))
q
=
self
.
query
return
q
(
"SELECT 1 FROM obj WHERE partition=%d AND oid=%d AND tid=%d"
%
(
self
.
_getPartition
(
oid
),
oid
,
tid
))
or
all
and
\
q
(
"SELECT 1 FROM tobj WHERE tid=%d AND oid=%d"
%
(
tid
,
oid
))
def
_getObject
(
self
,
oid
,
tid
=
None
,
before_tid
=
None
):
q
=
self
.
query
...
...
@@ -339,19 +320,19 @@ class MySQLDatabaseManager(DatabaseManager):
def
doSetPartitionTable
(
self
,
ptid
,
cell_list
,
reset
):
offset_list
=
[]
with
self
as
q
:
q
=
self
.
query
if
reset
:
q
(
"""TRUNCATE pt""
"
)
q
(
"TRUNCATE pt
"
)
for
offset
,
uuid
,
state
in
cell_list
:
# TODO: this logic should move out of database manager
# add 'dropCells(cell_list)' to API and use one query
if
state
==
CellStates
.
DISCARDED
:
q
(
"""DELETE FROM pt WHERE rid = %d AND uuid = %d""
"
q
(
"DELETE FROM pt WHERE rid = %d AND uuid = %d
"
%
(
offset
,
uuid
))
else
:
offset_list
.
append
(
offset
)
q
(
"""INSERT INTO pt VALUES (%d, %d, %d)
ON DUPLICATE KEY UPDATE state = %d"""
\
q
(
"INSERT INTO pt VALUES (%d, %d, %d)"
" ON DUPLICATE KEY UPDATE state = %d"
%
(
offset
,
uuid
,
state
,
state
))
self
.
setPTID
(
ptid
)
if
self
.
_use_partition
:
...
...
@@ -372,7 +353,7 @@ class MySQLDatabaseManager(DatabaseManager):
self
.
doSetPartitionTable
(
ptid
,
cell_list
,
True
)
def
dropPartitions
(
self
,
offset_list
):
with
self
as
q
:
q
=
self
.
query
# XXX: these queries are inefficient (execution time increase with
# row count, although we use indexes) when there are rows to
# delete. It should be done as an idle task, by chunks.
...
...
@@ -395,25 +376,23 @@ class MySQLDatabaseManager(DatabaseManager):
raise
def
dropUnfinishedData
(
self
):
with
self
as
q
:
q
=
self
.
query
data_id_list
=
[
x
for
x
,
in
q
(
"SELECT data_id FROM tobj"
)
if
x
]
q
(
"""TRUNCATE tobj""
"
)
q
(
"""TRUNCATE ttrans""
"
)
q
(
"TRUNCATE tobj
"
)
q
(
"TRUNCATE ttrans
"
)
self
.
unlockData
(
data_id_list
,
True
)
def
storeTransaction
(
self
,
tid
,
object_list
,
transaction
,
temporary
=
True
):
e
=
self
.
escape
u64
=
util
.
u64
tid
=
u64
(
tid
)
if
temporary
:
obj_table
=
'tobj'
trans_table
=
'ttrans'
else
:
obj_table
=
'obj'
trans_table
=
'trans'
with
self
as
q
:
q
=
self
.
query
for
oid
,
data_id
,
value_serial
in
object_list
:
oid
=
u64
(
oid
)
partition
=
self
.
_getPartition
(
oid
)
...
...
@@ -428,7 +407,6 @@ class MySQLDatabaseManager(DatabaseManager):
value_serial
=
'NULL'
q
(
"REPLACE INTO %s VALUES (%d, %d, %d, %s, %s)"
%
(
obj_table
,
partition
,
oid
,
tid
,
data_id
or
'NULL'
,
value_serial
))
if
transaction
:
oid_list
,
user
,
desc
,
ext
,
packed
,
ttid
=
transaction
partition
=
self
.
_getPartition
(
tid
)
...
...
@@ -436,6 +414,8 @@ class MySQLDatabaseManager(DatabaseManager):
q
(
"REPLACE INTO %s VALUES (%d,%d,%i,'%s','%s','%s','%s',%d)"
%
(
trans_table
,
partition
,
tid
,
packed
,
e
(
''
.
join
(
oid_list
)),
e
(
user
),
e
(
desc
),
e
(
ext
),
u64
(
ttid
)))
if
temporary
:
self
.
commit
()
def
_pruneData
(
self
,
data_id_list
):
data_id_list
=
set
(
data_id_list
).
difference
(
self
.
_uncommitted_data
)
...
...
@@ -448,20 +428,17 @@ class MySQLDatabaseManager(DatabaseManager):
def
_storeData
(
self
,
checksum
,
data
,
compression
):
e
=
self
.
escape
checksum
=
e
(
checksum
)
with
self
as
q
:
try
:
q
(
"INSERT INTO data VALUES (NULL, '%s', %d, '%s')"
%
self
.
query
(
"INSERT INTO data VALUES (NULL, '%s', %d, '%s')"
%
(
checksum
,
compression
,
e
(
data
)))
except
IntegrityError
,
(
code
,
_
):
if
code
!=
DUP_ENTRY
:
raise
(
r
,
c
,
d
),
=
q
(
"SELECT id, compression, value"
if
code
==
DUP_ENTRY
:
(
r
,
c
,
d
),
=
self
.
query
(
"SELECT id, compression, value"
" FROM data WHERE hash='%s'"
%
checksum
)
if
c
!=
compression
or
d
!=
data
:
raise
else
:
r
=
self
.
conn
.
insert_id
()
if
c
==
compression
and
d
==
data
:
return
r
raise
return
self
.
conn
.
insert_id
()
def
_getDataTID
(
self
,
oid
,
tid
=
None
,
before_tid
=
None
):
sql
=
(
'SELECT tid, data_id, value_tid FROM obj'
...
...
@@ -486,7 +463,6 @@ class MySQLDatabaseManager(DatabaseManager):
def
finishTransaction
(
self
,
tid
):
q
=
self
.
query
tid
=
util
.
u64
(
tid
)
with
self
as
q
:
sql
=
" FROM tobj WHERE tid=%d"
%
tid
data_id_list
=
[
x
for
x
,
in
q
(
"SELECT data_id"
+
sql
)
if
x
]
q
(
"INSERT INTO obj SELECT *"
+
sql
)
...
...
@@ -494,12 +470,13 @@ class MySQLDatabaseManager(DatabaseManager):
q
(
"INSERT INTO trans SELECT * FROM ttrans WHERE tid=%d"
%
tid
)
q
(
"DELETE FROM ttrans WHERE tid=%d"
%
tid
)
self
.
unlockData
(
data_id_list
)
self
.
commit
()
def
deleteTransaction
(
self
,
tid
,
oid_list
=
()):
u64
=
util
.
u64
tid
=
u64
(
tid
)
getPartition
=
self
.
_getPartition
with
self
as
q
:
q
=
self
.
query
sql
=
" FROM tobj WHERE tid=%d"
%
tid
data_id_list
=
[
x
for
x
,
in
q
(
"SELECT data_id"
+
sql
)
if
x
]
self
.
unlockData
(
data_id_list
)
...
...
@@ -525,7 +502,7 @@ class MySQLDatabaseManager(DatabaseManager):
%
(
self
.
_getPartition
(
oid
),
oid
)
if
serial
:
sql
+=
' AND tid=%d'
%
u64
(
serial
)
with
self
as
q
:
q
=
self
.
query
data_id_list
=
[
x
for
x
,
in
q
(
"SELECT DISTINCT data_id"
+
sql
)
if
x
]
q
(
"DELETE"
+
sql
)
self
.
_pruneData
(
data_id_list
)
...
...
@@ -545,7 +522,7 @@ class MySQLDatabaseManager(DatabaseManager):
def
getTransaction
(
self
,
tid
,
all
=
False
):
tid
=
util
.
u64
(
tid
)
with
self
as
q
:
q
=
self
.
query
r
=
q
(
"SELECT oids, user, description, ext, packed, ttid"
" FROM trans WHERE partition = %d AND tid = %d"
%
(
self
.
_getPartition
(
tid
),
tid
))
...
...
@@ -665,10 +642,10 @@ class MySQLDatabaseManager(DatabaseManager):
tid
=
util
.
u64
(
tid
)
updatePackFuture
=
self
.
_updatePackFuture
getPartition
=
self
.
_getPartition
with
self
as
q
:
q
=
self
.
query
self
.
_setPackTID
(
tid
)
for
count
,
oid
,
max_serial
in
q
(
'SELECT COUNT(*) - 1, oid, '
'MAX(tid) FROM obj WHERE tid <= %d GROUP BY oid'
for
count
,
oid
,
max_serial
in
q
(
"SELECT COUNT(*) - 1, oid, MAX(tid)"
" FROM obj WHERE tid <= %d GROUP BY oid"
%
tid
):
partition
=
getPartition
(
oid
)
if
q
(
"SELECT 1 FROM obj WHERE partition = %d"
...
...
@@ -691,6 +668,7 @@ class MySQLDatabaseManager(DatabaseManager):
q
(
'DELETE'
+
sql
)
data_id_set
.
discard
(
None
)
self
.
_pruneData
(
data_id_set
)
self
.
commit
()
def
checkTIDRange
(
self
,
partition
,
length
,
min_tid
,
max_tid
):
count
,
tid_checksum
,
max_tid
=
self
.
query
(
...
...
neo/storage/database/sqlite.py
View file @
52c5d862
...
...
@@ -76,23 +76,13 @@ class SQLiteDatabaseManager(DatabaseManager):
def
_connect
(
self
):
logging
.
info
(
'connecting to SQLite database %r'
,
self
.
db
)
self
.
conn
=
sqlite3
.
connect
(
self
.
db
,
isolation_level
=
None
,
check_same_thread
=
False
)
self
.
conn
=
sqlite3
.
connect
(
self
.
db
,
check_same_thread
=
False
)
def
begin
(
self
):
q
=
self
.
query
retry_if_locked
(
q
,
"BEGIN IMMEDIATE"
)
return
q
if
LOG_QUERIES
:
def
commit
(
self
):
logging
.
debug
(
'committing...'
)
retry_if_locked
(
self
.
conn
.
commit
)
def
rollback
(
self
):
logging
.
debug
(
'aborting...'
)
self
.
conn
.
rollback
()
if
LOG_QUERIES
:
def
query
(
self
,
query
):
printable_char_list
=
[]
for
c
in
query
.
split
(
'
\
n
'
,
1
)[
0
][:
70
]:
...
...
@@ -102,10 +92,7 @@ class SQLiteDatabaseManager(DatabaseManager):
logging
.
debug
(
'querying %s...'
,
''
.
join
(
printable_char_list
))
return
self
.
conn
.
execute
(
query
)
else
:
rollback
=
property
(
lambda
self
:
self
.
conn
.
rollback
)
query
=
property
(
lambda
self
:
self
.
conn
.
execute
)
def
commit
(
self
):
retry_if_locked
(
self
.
conn
.
commit
)
def
setup
(
self
,
reset
=
0
):
self
.
_config
.
clear
()
...
...
@@ -226,7 +213,7 @@ class SQLiteDatabaseManager(DatabaseManager):
def
_getLastIDs
(
self
,
all
=
True
):
p64
=
util
.
p64
with
self
as
q
:
q
=
self
.
query
trans
=
dict
((
partition
,
p64
(
tid
))
for
partition
,
tid
in
q
(
"SELECT partition, MAX(tid)"
" FROM trans GROUP BY partition"
))
...
...
@@ -248,22 +235,17 @@ class SQLiteDatabaseManager(DatabaseManager):
def
getUnfinishedTIDList
(
self
):
p64
=
util
.
p64
tid_set
=
set
()
with
self
as
q
:
tid_set
.
update
((
p64
(
t
[
0
])
for
t
in
q
(
"SELECT tid FROM ttrans"
)))
tid_set
.
update
((
p64
(
t
[
0
])
for
t
in
q
(
"SELECT tid FROM tobj"
)))
return
list
(
tid_set
)
return
[
p64
(
t
[
0
])
for
t
in
self
.
query
(
"SELECT tid FROM ttrans"
" UNION SELECT tid FROM tobj"
)]
def
objectPresent
(
self
,
oid
,
tid
,
all
=
True
):
oid
=
util
.
u64
(
oid
)
tid
=
util
.
u64
(
tid
)
with
self
as
q
:
r
=
q
(
"SELECT 1 FROM obj WHERE partition=? AND oid=? AND tid=?"
,
(
self
.
_getPartition
(
oid
),
oid
,
tid
)).
fetchone
()
if
not
r
and
all
:
r
=
q
(
"SELECT 1 FROM tobj WHERE tid=? AND oid=?"
,
q
=
self
.
query
return
q
(
"SELECT 1 FROM obj WHERE partition=? AND oid=? AND tid=?"
,
(
self
.
_getPartition
(
oid
),
oid
,
tid
)).
fetchone
()
or
all
and
\
q
(
"SELECT 1 FROM tobj WHERE tid=? AND oid=?"
,
(
tid
,
oid
)).
fetchone
()
return
bool
(
r
)
def
_getObject
(
self
,
oid
,
tid
=
None
,
before_tid
=
None
):
q
=
self
.
query
...
...
@@ -292,7 +274,7 @@ class SQLiteDatabaseManager(DatabaseManager):
return
serial
,
r
and
r
[
0
],
compression
,
checksum
,
data
,
value_serial
def
doSetPartitionTable
(
self
,
ptid
,
cell_list
,
reset
):
with
self
as
q
:
q
=
self
.
query
if
reset
:
q
(
"DELETE FROM pt"
)
for
offset
,
uuid
,
state
in
cell_list
:
...
...
@@ -316,17 +298,17 @@ class SQLiteDatabaseManager(DatabaseManager):
def
dropPartitions
(
self
,
offset_list
):
where
=
" WHERE partition=?"
with
self
as
q
:
q
=
self
.
query
for
partition
in
offset_list
:
args
=
partition
,
data_id_list
=
[
x
for
x
,
in
q
(
"SELECT DISTINCT data_id FROM obj"
+
where
,
(
partition
,))
if
x
]
q
(
"DELETE FROM obj"
+
where
,
(
partition
,))
q
(
"DELETE FROM trans"
+
where
,
(
partition
,))
q
(
"SELECT DISTINCT data_id FROM obj"
+
where
,
args
)
if
x
]
q
(
"DELETE FROM obj"
+
where
,
args
)
q
(
"DELETE FROM trans"
+
where
,
args
)
self
.
_pruneData
(
data_id_list
)
def
dropUnfinishedData
(
self
):
with
self
as
q
:
q
=
self
.
query
data_id_list
=
[
x
for
x
,
in
q
(
"SELECT data_id FROM tobj"
)
if
x
]
q
(
"DELETE FROM tobj"
)
q
(
"DELETE FROM ttrans"
)
...
...
@@ -337,7 +319,7 @@ class SQLiteDatabaseManager(DatabaseManager):
tid
=
u64
(
tid
)
T
=
't'
if
temporary
else
''
obj_sql
=
"INSERT OR FAIL INTO %sobj VALUES (?,?,?,?,?)"
%
T
with
self
as
q
:
q
=
self
.
query
for
oid
,
data_id
,
value_serial
in
object_list
:
oid
=
u64
(
oid
)
partition
=
self
.
_getPartition
(
oid
)
...
...
@@ -360,7 +342,6 @@ class SQLiteDatabaseManager(DatabaseManager):
if
r
==
(
data_id
,
value_serial
):
continue
raise
if
transaction
:
oid_list
,
user
,
desc
,
ext
,
packed
,
ttid
=
transaction
partition
=
self
.
_getPartition
(
tid
)
...
...
@@ -368,6 +349,8 @@ class SQLiteDatabaseManager(DatabaseManager):
q
(
"INSERT OR FAIL INTO %strans VALUES (?,?,?,?,?,?,?,?)"
%
T
,
(
partition
,
tid
,
packed
,
buffer
(
''
.
join
(
oid_list
)),
buffer
(
user
),
buffer
(
desc
),
buffer
(
ext
),
u64
(
ttid
)))
if
temporary
:
self
.
commit
()
def
_pruneData
(
self
,
data_id_list
):
data_id_list
=
set
(
data_id_list
).
difference
(
self
.
_uncommitted_data
)
...
...
@@ -381,13 +364,12 @@ class SQLiteDatabaseManager(DatabaseManager):
def
_storeData
(
self
,
checksum
,
data
,
compression
):
H
=
buffer
(
checksum
)
with
self
as
q
:
try
:
return
q
(
"INSERT INTO data VALUES (NULL,?,?,?)"
,
return
self
.
query
(
"INSERT INTO data VALUES (NULL,?,?,?)"
,
(
H
,
compression
,
buffer
(
data
))).
lastrowid
except
sqlite3
.
IntegrityError
,
e
:
if
e
.
args
[
0
]
==
'column hash is not unique'
:
(
r
,
c
,
d
),
=
q
(
"SELECT id, compression, value"
(
r
,
c
,
d
),
=
self
.
query
(
"SELECT id, compression, value"
" FROM data WHERE hash=?"
,
(
H
,))
if
c
==
compression
and
str
(
d
)
==
data
:
return
r
...
...
@@ -415,21 +397,21 @@ class SQLiteDatabaseManager(DatabaseManager):
def
finishTransaction
(
self
,
tid
):
args
=
util
.
u64
(
tid
),
with
self
as
q
:
q
=
self
.
query
sql
=
" FROM tobj WHERE tid=?"
data_id_list
=
[
x
for
x
,
in
q
(
"SELECT data_id"
+
sql
,
args
)
if
x
]
q
(
"INSERT OR FAIL INTO obj SELECT *"
+
sql
,
args
)
q
(
"DELETE FROM tobj WHERE tid=?"
,
args
)
q
(
"INSERT OR FAIL INTO trans SELECT * FROM ttrans WHERE tid=?"
,
args
)
q
(
"INSERT OR FAIL INTO trans SELECT * FROM ttrans WHERE tid=?"
,
args
)
q
(
"DELETE FROM ttrans WHERE tid=?"
,
args
)
self
.
unlockData
(
data_id_list
)
self
.
commit
()
def
deleteTransaction
(
self
,
tid
,
oid_list
=
()):
u64
=
util
.
u64
tid
=
u64
(
tid
)
getPartition
=
self
.
_getPartition
with
self
as
q
:
q
=
self
.
query
sql
=
" FROM tobj WHERE tid=?"
data_id_list
=
[
x
for
x
,
in
q
(
"SELECT data_id"
+
sql
,
(
tid
,))
if
x
]
self
.
unlockData
(
data_id_list
)
...
...
@@ -455,7 +437,7 @@ class SQLiteDatabaseManager(DatabaseManager):
if
serial
:
sql
+=
" AND tid=?"
args
.
append
(
util
.
u64
(
serial
))
with
self
as
q
:
q
=
self
.
query
data_id_list
=
[
x
for
x
,
in
q
(
"SELECT DISTINCT data_id"
+
sql
,
args
)
if
x
]
q
(
"DELETE"
+
sql
,
args
)
...
...
@@ -480,7 +462,7 @@ class SQLiteDatabaseManager(DatabaseManager):
def
getTransaction
(
self
,
tid
,
all
=
False
):
tid
=
util
.
u64
(
tid
)
with
self
as
q
:
q
=
self
.
query
r
=
q
(
"SELECT oids, user, description, ext, packed, ttid"
" FROM trans WHERE partition=? AND tid=?"
,
(
self
.
_getPartition
(
tid
),
tid
)).
fetchone
()
...
...
@@ -515,8 +497,7 @@ class SQLiteDatabaseManager(DatabaseManager):
pack_tid
=
self
.
_getPackTID
()
result
=
[]
append
=
result
.
append
with
self
as
q
:
for
serial
,
length
,
value_serial
in
q
(
"""
\
for
serial
,
length
,
value_serial
in
self
.
query
(
"""
\
SELECT tid, LENGTH(value), value_tid
FROM obj LEFT JOIN data ON obj.data_id = data.id
WHERE partition=? AND oid=? AND tid>=?
...
...
@@ -587,10 +568,10 @@ class SQLiteDatabaseManager(DatabaseManager):
tid
=
util
.
u64
(
tid
)
updatePackFuture
=
self
.
_updatePackFuture
getPartition
=
self
.
_getPartition
with
self
as
q
:
q
=
self
.
query
self
.
_setPackTID
(
tid
)
for
count
,
oid
,
max_serial
in
q
(
"SELECT COUNT(*) - 1, oid,
"
" MAX(tid)
FROM obj WHERE tid<=? GROUP BY oid"
,
for
count
,
oid
,
max_serial
in
q
(
"SELECT COUNT(*) - 1, oid, MAX(tid)
"
"
FROM obj WHERE tid<=? GROUP BY oid"
,
(
tid
,)):
partition
=
getPartition
(
oid
)
if
q
(
"SELECT 1 FROM obj WHERE partition=?"
...
...
@@ -613,6 +594,7 @@ class SQLiteDatabaseManager(DatabaseManager):
q
(
"DELETE"
+
sql
,
args
)
data_id_set
.
discard
(
None
)
self
.
_pruneData
(
data_id_set
)
self
.
commit
()
def
checkTIDRange
(
self
,
partition
,
length
,
min_tid
,
max_tid
):
count
,
tids
,
max_tid
=
self
.
query
(
"""
\
...
...
neo/storage/handlers/storage.py
View file @
52c5d862
...
...
@@ -98,6 +98,7 @@ class StorageOperationHandler(EventHandler):
for
serial
,
oid_list
in
object_dict
.
iteritems
():
for
oid
in
oid_list
:
deleteObject
(
oid
,
serial
)
self
.
app
.
dm
.
commit
()
assert
not
pack_tid
,
"TODO"
if
next_tid
:
self
.
app
.
replicator
.
fetchObjects
(
next_tid
,
next_oid
)
...
...
neo/tests/storage/testStorageDBTests.py
View file @
52c5d862
...
...
@@ -20,7 +20,6 @@ from mock import Mock
from
neo.lib.util
import
add64
,
dump
,
p64
,
u64
from
neo.lib.protocol
import
CellStates
,
ZERO_HASH
,
ZERO_OID
,
ZERO_TID
,
MAX_TID
from
..
import
NeoUnitTestBase
from
neo.lib.exception
import
DatabaseFailure
class
StorageDBTests
(
NeoUnitTestBase
):
...
...
@@ -93,29 +92,6 @@ class StorageDBTests(NeoUnitTestBase):
db
=
self
.
getDB
()
self
.
checkConfigEntry
(
db
.
getPTID
,
db
.
setPTID
,
self
.
getPTID
(
1
))
def
test_transaction
(
self
):
db
=
self
.
getDB
()
x
=
[]
class
DB
(
db
.
__class__
):
begin
=
lambda
self
:
x
.
append
(
'begin'
)
commit
=
lambda
self
:
x
.
append
(
'commit'
)
rollback
=
lambda
self
:
x
.
append
(
'rollback'
)
db
.
__class__
=
DB
with
db
:
self
.
assertEqual
(
x
.
pop
(),
'begin'
)
self
.
assertEqual
(
x
.
pop
(),
'commit'
)
try
:
with
db
:
self
.
assertEqual
(
x
.
pop
(),
'begin'
)
with
db
:
self
.
fail
()
self
.
fail
()
except
DatabaseFailure
:
pass
self
.
assertEqual
(
x
.
pop
(),
'rollback'
)
self
.
assertRaises
(
DatabaseFailure
,
db
.
__exit__
,
None
,
None
,
None
)
self
.
assertFalse
(
x
)
def
test_getPartitionTable
(
self
):
db
=
self
.
getDB
()
ptid
=
self
.
getPTID
(
1
)
...
...
neo/tests/threaded/__init__.py
View file @
52c5d862
...
...
@@ -300,8 +300,8 @@ class StorageApplication(ServerNode, neo.storage.app.Application):
pass
def
switchTables
(
self
):
with
self
.
dm
as
q
:
for
table
in
(
'trans'
,
'obj'
)
:
q
=
self
.
dm
.
query
for
table
in
'trans'
,
'obj'
:
q
(
'ALTER TABLE %s RENAME TO tmp'
%
table
)
q
(
'ALTER TABLE t%s RENAME TO %s'
%
(
table
,
table
))
q
(
'ALTER TABLE tmp RENAME TO t%s'
%
table
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment