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
9e6a4d3c
Commit
9e6a4d3c
authored
Jan 17, 2012
by
Vincent Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refuse all neoctl requests when not connected to a primary master.
parent
9077cfcd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
14 deletions
+21
-14
neo/admin/handler.py
neo/admin/handler.py
+13
-12
neo/tests/functional/__init__.py
neo/tests/functional/__init__.py
+8
-2
No files found.
neo/admin/handler.py
View file @
9e6a4d3c
...
...
@@ -23,11 +23,17 @@ from neo.lib.protocol import Packets, Errors
from
neo.lib.exception
import
PrimaryFailure
from
neo.lib.util
import
dump
def
check_primary_master
(
func
):
def
wrapper
(
self
,
*
args
,
**
kw
):
if
self
.
app
.
master_conn
is
None
:
raise
protocol
.
NotReadyError
(
'Not connected to a primary master.'
)
return
func
(
self
,
*
args
,
**
kw
)
return
wrapper
def
forward_ask
(
klass
):
@
check_primary_master
def
wrapper
(
self
,
conn
,
*
args
,
**
kw
):
app
=
self
.
app
if
app
.
master_conn
is
None
:
raise
protocol
.
NotReadyError
(
'Not connected to a primary master.'
)
msg_id
=
app
.
master_conn
.
ask
(
klass
(
*
args
,
**
kw
))
app
.
dispatcher
.
register
(
msg_id
,
conn
,
{
'msg_id'
:
conn
.
getPeerId
()})
return
wrapper
...
...
@@ -41,15 +47,13 @@ def forward_answer(klass):
class
AdminEventHandler
(
EventHandler
):
"""This class deals with events for administrating cluster."""
@
check_primary_master
def
askPartitionList
(
self
,
conn
,
min_offset
,
max_offset
,
uuid
):
neo
.
lib
.
logging
.
info
(
"ask partition list from %s to %s for %s"
%
(
min_offset
,
max_offset
,
dump
(
uuid
)))
app
=
self
.
app
# check we have one pt otherwise ask it to PMN
if
app
.
pt
is
None
:
if
self
.
app
.
master_conn
is
None
:
raise
protocol
.
NotReadyError
(
'Not connected to a primary '
\
'master.'
)
msg_id
=
self
.
app
.
master_conn
.
ask
(
Packets
.
AskPartitionTable
())
app
.
dispatcher
.
register
(
msg_id
,
conn
,
{
'min_offset'
:
min_offset
,
...
...
@@ -60,6 +64,7 @@ class AdminEventHandler(EventHandler):
app
.
sendPartitionTable
(
conn
,
min_offset
,
max_offset
,
uuid
)
@
check_primary_master
def
askNodeList
(
self
,
conn
,
node_type
):
if
node_type
is
None
:
node_type
=
'all'
...
...
@@ -72,6 +77,7 @@ class AdminEventHandler(EventHandler):
p
=
Packets
.
AnswerNodeList
(
node_information_list
)
conn
.
answer
(
p
)
@
check_primary_master
def
setNodeState
(
self
,
conn
,
uuid
,
state
,
modify_partition_table
):
neo
.
lib
.
logging
.
info
(
"set node state for %s-%s"
%
(
dump
(
uuid
),
state
))
node
=
self
.
app
.
nm
.
getByUUID
(
uuid
)
...
...
@@ -83,17 +89,13 @@ class AdminEventHandler(EventHandler):
conn
.
answer
(
p
)
return
# forward to primary master node
if
self
.
app
.
master_conn
is
None
:
raise
protocol
.
NotReadyError
(
'Not connected to a primary master.'
)
p
=
Packets
.
SetNodeState
(
uuid
,
state
,
modify_partition_table
)
msg_id
=
self
.
app
.
master_conn
.
ask
(
p
)
self
.
app
.
dispatcher
.
register
(
msg_id
,
conn
,
{
'msg_id'
:
conn
.
getPeerId
()})
@
check_primary_master
def
askClusterState
(
self
,
conn
):
if
self
.
app
.
cluster_state
is
None
:
if
self
.
app
.
master_conn
is
None
:
raise
protocol
.
NotReadyError
(
'Not connected to a primary '
\
'master.'
)
# required it from PMN first
msg_id
=
self
.
app
.
master_conn
.
ask
(
Packets
.
AskClusterState
())
self
.
app
.
dispatcher
.
register
(
msg_id
,
conn
,
...
...
@@ -101,9 +103,8 @@ class AdminEventHandler(EventHandler):
else
:
conn
.
answer
(
Packets
.
AnswerClusterState
(
self
.
app
.
cluster_state
))
@
check_primary_master
def
askPrimary
(
self
,
conn
):
if
self
.
app
.
master_conn
is
None
:
raise
protocol
.
NotReadyError
(
'Not connected to a primary master.'
)
master_node
=
self
.
app
.
master_node
conn
.
answer
(
Packets
.
AnswerPrimary
(
master_node
.
getUUID
(),
[]))
...
...
neo/tests/functional/__init__.py
View file @
9e6a4d3c
...
...
@@ -505,7 +505,10 @@ class NEOCluster(object):
def
expectAllMasters
(
self
,
node_count
,
state
=
None
,
*
args
,
**
kw
):
def
callback
(
last_try
):
current_try
=
len
(
self
.
getMasterList
(
state
=
state
))
try
:
current_try
=
len
(
self
.
getMasterList
(
state
=
state
))
except
NotReadyException
:
current_try
=
0
if
last_try
is
not
None
and
current_try
<
last_try
:
raise
AssertionError
,
'Regression: %s became %s'
%
\
(
last_try
,
current_try
)
...
...
@@ -516,7 +519,10 @@ class NEOCluster(object):
if
not
isinstance
(
state
,
(
tuple
,
list
)):
state
=
(
state
,
)
def
callback
(
last_try
):
current_try
=
self
.
__getNodeState
(
node_type
,
uuid
)
try
:
current_try
=
self
.
__getNodeState
(
node_type
,
uuid
)
except
NotReadyException
:
current_try
=
None
return
current_try
in
state
,
current_try
self
.
expectCondition
(
callback
,
*
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