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
Vincent Pelletier
neoppod
Commits
61f72f9b
Commit
61f72f9b
authored
Feb 16, 2017
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve log messages that are related to write-locking of objects
parent
05cd65b6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
17 deletions
+18
-17
neo/client/app.py
neo/client/app.py
+6
-6
neo/client/handlers/storage.py
neo/client/handlers/storage.py
+4
-3
neo/storage/transactions.py
neo/storage/transactions.py
+8
-8
No files found.
neo/client/app.py
View file @
61f72f9b
...
@@ -456,18 +456,18 @@ class Application(ThreadedApplication):
...
@@ -456,18 +456,18 @@ class Application(ThreadedApplication):
data
=
tryToResolveConflict
(
oid
,
conflict_serial
,
data
=
tryToResolveConflict
(
oid
,
conflict_serial
,
serial
,
data
)
serial
,
data
)
except
ConflictError
:
except
ConflictError
:
logging
.
info
(
'Conflict resolution failed for '
logging
.
info
(
'
%r:%r with %r'
,
dump
(
oid
),
dump
(
serial
)
,
'
Conflict resolution failed for %s@%s with %s'
,
dump
(
conflict_serial
))
dump
(
oid
),
dump
(
serial
),
dump
(
conflict_serial
))
# With recent ZODB, get_pickle_metadata (from ZODB.utils)
# With recent ZODB, get_pickle_metadata (from ZODB.utils)
# does not support empty values, so do not pass 'data'
# does not support empty values, so do not pass 'data'
# in this case.
# in this case.
raise
ConflictError
(
oid
=
oid
,
serials
=
(
conflict_serial
,
raise
ConflictError
(
oid
=
oid
,
serials
=
(
conflict_serial
,
serial
),
data
=
data
or
None
)
serial
),
data
=
data
or
None
)
else
:
else
:
logging
.
info
(
'Conflict resolution succeeded for '
logging
.
info
(
'
%r:%r with %r'
,
dump
(
oid
),
dump
(
serial
)
,
'
Conflict resolution succeeded for %s@%s with %s'
,
dump
(
conflict_serial
))
dump
(
oid
),
dump
(
serial
),
dump
(
conflict_serial
))
# Mark this conflict as resolved
# Mark this conflict as resolved
resolved_dict
[
oid
]
=
conflict_serial
resolved_dict
[
oid
]
=
conflict_serial
# Try to store again
# Try to store again
...
...
neo/client/handlers/storage.py
View file @
61f72f9b
...
@@ -18,7 +18,7 @@ from zlib import decompress
...
@@ -18,7 +18,7 @@ from zlib import decompress
from
ZODB.TimeStamp
import
TimeStamp
from
ZODB.TimeStamp
import
TimeStamp
from
neo.lib
import
logging
from
neo.lib
import
logging
from
neo.lib.protocol
import
Packets
from
neo.lib.protocol
import
Packets
,
uuid_str
from
neo.lib.util
import
dump
,
makeChecksum
from
neo.lib.util
import
dump
,
makeChecksum
from
neo.lib.exception
import
NodeNotReady
from
neo.lib.exception
import
NodeNotReady
from
neo.lib.handler
import
MTEventHandler
from
neo.lib.handler
import
MTEventHandler
...
@@ -74,8 +74,9 @@ class StorageAnswersHandler(AnswerBaseHandler):
...
@@ -74,8 +74,9 @@ class StorageAnswersHandler(AnswerBaseHandler):
# we may process entirely a conflict with S1 (i.e. we received the
# we may process entirely a conflict with S1 (i.e. we received the
# answer to the store of the resolved object on S1) before we
# answer to the store of the resolved object on S1) before we
# receive the conflict answer from the first store on S2.
# receive the conflict answer from the first store on S2.
logging
.
info
(
'%r report a conflict for %r with %r'
,
logging
.
info
(
'%s reports a conflict on %s:%s with %s'
,
conn
,
dump
(
oid
),
dump
(
conflict
))
uuid_str
(
conn
.
getUUID
()),
dump
(
oid
),
dump
(
txn_context
.
ttid
),
dump
(
conflict
))
# If this conflict is not already resolved, mark it for
# If this conflict is not already resolved, mark it for
# resolution.
# resolution.
if
txn_context
.
resolved_dict
.
get
(
oid
,
''
)
<
conflict
:
if
txn_context
.
resolved_dict
.
get
(
oid
,
''
)
<
conflict
:
...
...
neo/storage/transactions.py
View file @
61f72f9b
...
@@ -317,8 +317,8 @@ class TransactionManager(EventQueue):
...
@@ -317,8 +317,8 @@ class TransactionManager(EventQueue):
# before we processed UnlockInformation from the master.
# before we processed UnlockInformation from the master.
# Or the locking transaction has already voted and there's no
# Or the locking transaction has already voted and there's no
# risk of deadlock if we delay.
# risk of deadlock if we delay.
logging
.
info
(
'
Store delayed for %r:%r by %r'
,
dump
(
oid
)
,
logging
.
info
(
'
Lock delayed for %s:%s by %s'
,
dump
(
ttid
),
dump
(
locked
))
dump
(
oid
),
dump
(
ttid
),
dump
(
locked
))
# A client may have several stores delayed for the same oid
# A client may have several stores delayed for the same oid
# but this is not a problem. EventQueue processes them in order
# but this is not a problem. EventQueue processes them in order
# and only the last one will not result in conflicts (that are
# and only the last one will not result in conflicts (that are
...
@@ -336,7 +336,7 @@ class TransactionManager(EventQueue):
...
@@ -336,7 +336,7 @@ class TransactionManager(EventQueue):
# We have a smaller "TTID" than locking transaction, so we are
# We have a smaller "TTID" than locking transaction, so we are
# older: this is a possible deadlock case, as we might already
# older: this is a possible deadlock case, as we might already
# hold locks the younger transaction is waiting upon.
# hold locks the younger transaction is waiting upon.
logging
.
info
(
'
Possible deadlock on %r:%r with %r
'
,
logging
.
info
(
'
Deadlock on %s:%s with %s
'
,
dump
(
oid
),
dump
(
ttid
),
dump
(
locked
))
dump
(
oid
),
dump
(
ttid
),
dump
(
locked
))
# Ask master to give the client a new locking tid, which will
# Ask master to give the client a new locking tid, which will
# be used to ask all involved storage nodes to rebase the
# be used to ask all involved storage nodes to rebase the
...
@@ -382,10 +382,10 @@ class TransactionManager(EventQueue):
...
@@ -382,10 +382,10 @@ class TransactionManager(EventQueue):
# "C+A vs. B -> C+A+B" rarely costs more than "C+A vs. C+B -> C+A+B".
# "C+A vs. B -> C+A+B" rarely costs more than "C+A vs. C+B -> C+A+B".
# However, this would be against the optimistic principle of ZODB.
# However, this would be against the optimistic principle of ZODB.
if
previous_serial
is
not
None
and
previous_serial
!=
serial
:
if
previous_serial
is
not
None
and
previous_serial
!=
serial
:
logging
.
info
(
'
Resolvable conflict on %r:%r
'
,
logging
.
info
(
'
Conflict on %s:%s with %s
'
,
dump
(
oid
),
dump
(
ttid
))
dump
(
oid
),
dump
(
ttid
)
,
dump
(
previous_serial
)
)
raise
ConflictError
(
previous_serial
)
raise
ConflictError
(
previous_serial
)
logging
.
debug
(
'Transaction %s
stor
ing %s'
,
dump
(
ttid
),
dump
(
oid
))
logging
.
debug
(
'Transaction %s
lock
ing %s'
,
dump
(
ttid
),
dump
(
oid
))
self
.
_store_lock_dict
[
oid
]
=
ttid
self
.
_store_lock_dict
[
oid
]
=
ttid
def
checkCurrentSerial
(
self
,
ttid
,
oid
,
serial
):
def
checkCurrentSerial
(
self
,
ttid
,
oid
,
serial
):
...
@@ -531,10 +531,10 @@ class TransactionManager(EventQueue):
...
@@ -531,10 +531,10 @@ class TransactionManager(EventQueue):
logging
.
info
(
' %s %r'
,
dump
(
ttid
),
txn
)
logging
.
info
(
' %s %r'
,
dump
(
ttid
),
txn
)
logging
.
info
(
' Read locks:'
)
logging
.
info
(
' Read locks:'
)
for
oid
,
ttid
in
self
.
_load_lock_dict
.
iteritems
():
for
oid
,
ttid
in
self
.
_load_lock_dict
.
iteritems
():
logging
.
info
(
' %
r by %r
'
,
dump
(
oid
),
dump
(
ttid
))
logging
.
info
(
' %
s by %s
'
,
dump
(
oid
),
dump
(
ttid
))
logging
.
info
(
' Write locks:'
)
logging
.
info
(
' Write locks:'
)
for
oid
,
ttid
in
self
.
_store_lock_dict
.
iteritems
():
for
oid
,
ttid
in
self
.
_store_lock_dict
.
iteritems
():
logging
.
info
(
' %
r by %r
'
,
dump
(
oid
),
dump
(
ttid
))
logging
.
info
(
' %
s by %s
'
,
dump
(
oid
),
dump
(
ttid
))
self
.
logQueuedEvents
()
self
.
logQueuedEvents
()
def
updateObjectDataForPack
(
self
,
oid
,
orig_serial
,
new_serial
,
data_id
):
def
updateObjectDataForPack
(
self
,
oid
,
orig_serial
,
new_serial
,
data_id
):
...
...
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