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
86b7ebbd
Commit
86b7ebbd
authored
May 12, 2017
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
storage: prevent 2 nodes from working with the same database
parent
8d42a2e6
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
79 additions
and
13 deletions
+79
-13
neo/storage/database/manager.py
neo/storage/database/manager.py
+29
-1
neo/storage/database/mysqldb.py
neo/storage/database/mysqldb.py
+12
-3
neo/storage/database/sqlite.py
neo/storage/database/sqlite.py
+1
-0
neo/tests/__init__.py
neo/tests/__init__.py
+2
-1
neo/tests/functional/__init__.py
neo/tests/functional/__init__.py
+6
-4
neo/tests/storage/testStorageDBTests.py
neo/tests/storage/testStorageDBTests.py
+9
-0
neo/tests/storage/testStorageMySQL.py
neo/tests/storage/testStorageMySQL.py
+7
-3
neo/tests/storage/testStorageSQLite.py
neo/tests/storage/testStorageSQLite.py
+13
-1
No files found.
neo/storage/database/manager.py
View file @
86b7ebbd
...
...
@@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
struct
,
threading
import
os
,
errno
,
socket
,
struct
,
sys
,
threading
from
collections
import
defaultdict
from
contextlib
import
contextmanager
from
functools
import
wraps
...
...
@@ -55,6 +55,10 @@ class DatabaseManager(object):
ENGINES
=
()
UNSAFE
=
False
__lock
=
None
LOCK
=
"neostorage"
LOCKED
=
"error: database is locked"
_deferred
=
0
_duplicating
=
_repairing
=
None
...
...
@@ -84,6 +88,7 @@ class DatabaseManager(object):
def
_duplicate
(
self
):
cls
=
self
.
__class__
db
=
cls
.
__new__
(
cls
)
db
.
LOCK
=
None
db
.
_duplicating
=
self
try
:
db
.
_connect
()
...
...
@@ -102,6 +107,26 @@ class DatabaseManager(object):
def
_connect
(
self
):
"""Connect to the database"""
def
lock
(
self
,
db_path
):
if
self
.
LOCK
:
assert
self
.
__lock
is
None
,
self
.
__lock
# For platforms that don't support anonymous sockets,
# we can either use zc.lockfile or an empty SQLite db
# (with BEGIN EXCLUSIVE).
try
:
stat
=
os
.
stat
(
db_path
)
except
OSError
as
e
:
if
e
.
errno
!=
errno
.
ENOENT
:
raise
return
# in-memory or temporary database
s
=
self
.
__lock
=
socket
.
socket
(
socket
.
AF_UNIX
)
try
:
s
.
bind
(
'
\
0
%s:%s:%s'
%
(
self
.
LOCK
,
stat
.
st_dev
,
stat
.
st_ino
))
except
socket
.
error
as
e
:
if
e
.
errno
!=
errno
.
EADDRINUSE
:
raise
sys
.
exit
(
self
.
LOCKED
)
@
abstract
def
erase
(
self
):
""""""
...
...
@@ -152,6 +177,9 @@ class DatabaseManager(object):
def
close
(
self
):
self
.
_deferredCommit
()
self
.
_close
()
if
self
.
__lock
:
self
.
__lock
.
close
()
del
self
.
__lock
def
_commit
(
self
):
"""Backend-specific code to commit the pending changes"""
...
...
neo/storage/database/mysqldb.py
View file @
86b7ebbd
...
...
@@ -29,6 +29,7 @@ import os
import
re
import
string
import
struct
import
sys
import
time
from
.
import
LOG_QUERIES
...
...
@@ -102,9 +103,17 @@ class MySQLDatabaseManager(DatabaseManager):
conn
.
autocommit
(
False
)
conn
.
query
(
"SET SESSION group_concat_max_len = %u"
%
(
2
**
32
-
1
))
conn
.
set_sql_mode
(
"TRADITIONAL,NO_ENGINE_SUBSTITUTION"
)
conn
.
query
(
"SHOW VARIABLES WHERE variable_name='max_allowed_packet'"
)
r
=
conn
.
store_result
()
(
name
,
value
),
=
r
.
fetch_row
(
r
.
num_rows
())
def
query
(
sql
):
conn
.
query
(
sql
)
r
=
conn
.
store_result
()
return
r
.
fetch_row
(
r
.
num_rows
())
if
self
.
LOCK
:
(
locked
,),
=
query
(
"SELECT GET_LOCK('%s.%s', 0)"
%
(
self
.
db
,
self
.
LOCK
))
if
not
locked
:
sys
.
exit
(
self
.
LOCKED
)
(
name
,
value
),
=
query
(
"SHOW VARIABLES WHERE variable_name='max_allowed_packet'"
)
if
int
(
value
)
<
self
.
_max_allowed_packet
:
raise
DatabaseFailure
(
"Global variable %r is too small."
" Minimal value must be %uk."
...
...
neo/storage/database/sqlite.py
View file @
86b7ebbd
...
...
@@ -78,6 +78,7 @@ class SQLiteDatabaseManager(DatabaseManager):
def
_connect
(
self
):
logging
.
info
(
'connecting to SQLite database %r'
,
self
.
db
)
self
.
conn
=
sqlite3
.
connect
(
self
.
db
,
check_same_thread
=
False
)
self
.
lock
(
self
.
db
)
if
self
.
UNSAFE
:
q
=
self
.
query
q
(
"PRAGMA synchronous = OFF"
)
...
...
neo/tests/__init__.py
View file @
86b7ebbd
...
...
@@ -217,7 +217,8 @@ class NeoUnitTestBase(NeoTestBase):
temp_dir
=
getTempDirectory
()
for
i
in
xrange
(
number
):
try
:
os
.
remove
(
os
.
path
.
join
(
temp_dir
,
'test_neo%s.sqlite'
%
i
))
os
.
remove
(
os
.
path
.
join
(
temp_dir
,
'%s%s.sqlite'
%
(
prefix
,
i
)))
except
OSError
,
e
:
if
e
.
errno
!=
errno
.
ENOENT
:
raise
...
...
neo/tests/functional/__init__.py
View file @
86b7ebbd
...
...
@@ -37,10 +37,11 @@ from neo.lib import logging
from
neo.lib.protocol
import
ClusterStates
,
NodeTypes
,
CellStates
,
NodeStates
,
\
UUID_NAMESPACES
from
neo.lib.util
import
dump
from
..
import
ADDRESS_TYPE
,
DB_SOCKET
,
DB_USER
,
IP_VERSION_FORMAT_DICT
,
SSL
,
\
buildUrlFromString
,
cluster
,
getTempDirectory
,
NeoTestBase
,
setupMySQLdb
from
..
import
(
ADDRESS_TYPE
,
DB_SOCKET
,
DB_USER
,
IP_VERSION_FORMAT_DICT
,
SSL
,
buildUrlFromString
,
cluster
,
getTempDirectory
,
NeoTestBase
,
Patch
,
setupMySQLdb
)
from
neo.client.Storage
import
Storage
from
neo.storage.database
import
buildDatabaseManager
from
neo.storage.database
import
manager
,
buildDatabaseManager
try
:
coverage
=
sys
.
modules
[
'neo.scripts.runner'
].
coverage
...
...
@@ -483,7 +484,8 @@ class NEOCluster(object):
def
getSQLConnection
(
self
,
db
):
assert
db
is
not
None
and
db
in
self
.
db_list
return
buildDatabaseManager
(
self
.
adapter
,
(
self
.
db_template
(
db
),))
with
Patch
(
manager
.
DatabaseManager
,
LOCK
=
None
):
return
buildDatabaseManager
(
self
.
adapter
,
(
self
.
db_template
(
db
),))
def
getMasterProcessList
(
self
):
return
self
.
process_dict
.
get
(
NodeTypes
.
MASTER
)
...
...
neo/tests/storage/testStorageDBTests.py
View file @
86b7ebbd
...
...
@@ -131,6 +131,15 @@ class StorageDBTests(NeoUnitTestBase):
def
checkSet
(
self
,
list1
,
list2
):
self
.
assertEqual
(
set
(
list1
),
set
(
list2
))
def
_test_lockDatabase_open
(
self
):
raise
NotImplementedError
def
test_lockDatabase
(
self
):
db
=
self
.
_test_lockDatabase_open
()
self
.
assertRaises
(
SystemExit
,
self
.
_test_lockDatabase_open
)
db
.
close
()
self
.
_test_lockDatabase_open
().
close
()
def
test_getUnfinishedTIDDict
(
self
):
tid1
,
tid2
,
tid3
,
tid4
=
self
.
getTIDs
(
4
)
oid1
,
oid2
=
self
.
getOIDs
(
2
)
...
...
neo/tests/storage/testStorageMySQL.py
View file @
86b7ebbd
...
...
@@ -29,11 +29,13 @@ class StorageMySQLdbTests(StorageDBTests):
engine
=
None
def
getDB
(
self
,
reset
=
0
):
def
_test_lockDatabase_open
(
self
):
self
.
prepareDatabase
(
number
=
1
,
prefix
=
DB_PREFIX
)
# db manager
database
=
'%s@%s0%s'
%
(
DB_USER
,
DB_PREFIX
,
DB_SOCKET
)
db
=
MySQLDatabaseManager
(
database
,
self
.
engine
)
return
MySQLDatabaseManager
(
database
,
self
.
engine
)
def
getDB
(
self
,
reset
=
0
):
db
=
self
.
_test_lockDatabase_open
()
self
.
assertEqual
(
db
.
db
,
DB_PREFIX
+
'0'
)
self
.
assertEqual
(
db
.
user
,
DB_USER
)
try
:
...
...
@@ -129,11 +131,13 @@ class StorageMySQLdbTests(StorageDBTests):
class
StorageMySQLdbRocksDBTests
(
StorageMySQLdbTests
):
engine
=
"RocksDB"
test_lockDatabase
=
None
class
StorageMySQLdbTokuDBTests
(
StorageMySQLdbTests
):
engine
=
"TokuDB"
test_lockDatabase
=
None
del
StorageDBTests
...
...
neo/tests/storage/testStorageSQLite.py
View file @
86b7ebbd
...
...
@@ -14,17 +14,29 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
unittest
import
os
,
unittest
from
..
import
getTempDirectory
,
DB_PREFIX
from
.testStorageDBTests
import
StorageDBTests
from
neo.storage.database.sqlite
import
SQLiteDatabaseManager
class
StorageSQLiteTests
(
StorageDBTests
):
def
_test_lockDatabase_open
(
self
):
db
=
os
.
path
.
join
(
getTempDirectory
(),
DB_PREFIX
+
'0.sqlite'
)
return
SQLiteDatabaseManager
(
db
)
def
getDB
(
self
,
reset
=
0
):
db
=
SQLiteDatabaseManager
(
':memory:'
)
db
.
setup
(
reset
)
return
db
def
test_lockDatabase
(
self
):
super
(
StorageSQLiteTests
,
self
).
test_lockDatabase
()
# No lock on temporary databases.
db
=
self
.
getDB
()
self
.
getDB
().
close
()
db
.
close
()
del
StorageDBTests
if
__name__
==
"__main__"
:
...
...
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