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
Iliya Manolov
neoppod
Commits
cd669221
Commit
cd669221
authored
Nov 24, 2015
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
master: fix verification when nodes don't have any readable cell
parent
ca2caf87
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
1 deletion
+63
-1
neo/master/verification.py
neo/master/verification.py
+26
-1
neo/tests/threaded/test.py
neo/tests/threaded/test.py
+37
-0
No files found.
neo/master/verification.py
View file @
cd669221
...
...
@@ -78,6 +78,27 @@ class VerificationManager(BaseServiceHandler):
getIdentifiedList
=
app
.
nm
.
getIdentifiedList
# Gather all transactions that may have been partially finished.
# It's safe to query outdated cells from nodes with readable cells.
# For other nodes, it's more complicated:
# 1. pt: U|U ltid: 10
# 2. S1: restart with voted ttid=13
# S2: stop with locked ttid=13
# 3. pt: U|O ltid: 10
# 4. verification drops ttid=13 because it's not locked
# 5. new commits -> ltid: 20
# 6. S1 restarted, S2 started
# 7. ttid=13 must be dropped
# And we can't ignore ttid < last tid for all nodes, even if the
# master serializes unlock notifications:
# 1. pt: U.|.U ltid: 15
# 2. unlock ttid=18 to S1
# 3. unlock ttid=20 to S2
# 4. S1 stopped before unlocking ttid=18
# 5. S2 unlocks ttid=20
# 6. back to recovery, S1 started
# 7. verification must validate ttid=18
# So for nodes without any readable cell, and only for them, we only
# check if they have locked transactions. Replication will do the rest.
self
.
_askStorageNodesAndWait
(
Packets
.
AskLockedTransactions
(),
[
x
for
x
in
getIdentifiedList
()
if
x
.
isStorage
()])
...
...
@@ -122,10 +143,14 @@ class VerificationManager(BaseServiceHandler):
def
answerLockedTransactions
(
self
,
conn
,
tid_dict
):
uuid
=
conn
.
getUUID
()
self
.
_uuid_set
.
remove
(
uuid
)
app
=
self
.
app
node
=
app
.
nm
.
getByUUID
(
uuid
)
vote
=
any
(
x
[
1
].
isReadable
()
for
x
in
app
.
pt
.
iterNodeCell
(
node
))
for
ttid
,
tid
in
tid_dict
.
iteritems
():
if
tid
:
self
.
_locked_dict
[
ttid
]
=
tid
self
.
_voted_dict
[
ttid
].
add
(
uuid
)
if
vote
:
self
.
_voted_dict
[
ttid
].
add
(
uuid
)
def
answerFinalTID
(
self
,
conn
,
tid
):
self
.
_uuid_set
.
remove
(
conn
.
getUUID
())
...
...
neo/tests/threaded/test.py
View file @
cd669221
...
...
@@ -530,6 +530,43 @@ class Test(NEOThreadedTest):
finally
:
cluster
.
stop
()
def
testVerificationWithNodesWithoutReadableCells
(
self
):
def
onLockTransaction
(
storage
,
die_after
):
def
lock
(
orig
,
*
args
,
**
kw
):
if
die_after
:
orig
(
*
args
,
**
kw
)
sys
.
exit
()
return
Patch
(
storage
.
tm
,
lock
=
lock
)
cluster
=
NEOCluster
(
replicas
=
1
)
try
:
cluster
.
start
()
t
,
c
=
cluster
.
getTransaction
()
c
.
root
()[
0
]
=
None
s0
,
s1
=
cluster
.
storage_list
with
onLockTransaction
(
s0
,
False
),
onLockTransaction
(
s1
,
True
):
self
.
assertRaises
(
ConnectionClosed
,
t
.
commit
)
s0
.
resetNode
()
s0
.
start
()
t
.
begin
()
c
.
root
()[
1
]
=
None
t
.
commit
()
cluster
.
master
.
stop
()
x
=
cluster
.
master
,
s1
cluster
.
join
(
x
)
for
x
in
x
:
x
.
resetNode
()
x
.
start
()
# Verification must drop the first transaction because it's only
# locked on a node without any readable cell, and other nodes may
# have cleared ttrans/tobj (which is the case here).
self
.
tic
()
t
.
begin
()
s0
.
stop
()
# force client to ask s1
self
.
assertEqual
(
sorted
(
c
.
root
()),
[
1
])
t0
,
t1
=
c
.
_storage
.
iterator
()
finally
:
cluster
.
stop
()
def
testDropUnfinishedData
(
self
):
def
lock
(
orig
,
*
args
,
**
kw
):
orig
(
*
args
,
**
kw
)
...
...
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