Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
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
Expand all
Hide 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
.
_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
.
_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
)
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
This diff is collapsed.
Click to expand it.
neo/storage/database/sqlite.py
View file @
52c5d862
This diff is collapsed.
Click to expand it.
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,11 +300,11 @@ class StorageApplication(ServerNode, neo.storage.app.Application):
pass
def
switchTables
(
self
):
with
self
.
dm
as
q
:
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
)
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
)
def
getDataLockInfo
(
self
):
dm
=
self
.
dm
...
...
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