Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
1aec4c0e
Commit
1aec4c0e
authored
May 27, 2013
by
James Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Now can specify amount of time to wait_for_handoffs or ring ready instead of booleans.
parent
633724dc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
9 deletions
+16
-9
library/database/riak
+16
-9
No files found.
library/database/riak
View file @
1aec4c0e
...
...
@@ -54,18 +54,18 @@ options:
aliases: []
wait_for_handoffs:
description:
-
Waits for handoffs to complete before continuing. This can take awhile and should generally be used with async mod
e.
-
Number of seconds to wait for handoffs to complet
e.
required: false
default: null
aliases: []
type: '
bool
'
type: '
int
'
wait_for_ring:
description:
-
Waits for all nodes to agree on the status of the ring
-
Number of seconds to wait for all nodes to agree on the ring.
required: false
default: null
aliases: []
type: '
bool
'
type: '
int
'
wait_for_service:
description:
- Waits for a riak service to come online before continuing.
...
...
@@ -107,8 +107,8 @@ def main():
config_dir
=
dict
(
default
=
'/etc/riak'
),
http_conn
=
dict
(
required
=
False
,
default
=
'127.0.0.1:8098'
),
target_node
=
dict
(
default
=
'riak@127.0.0.1'
,
required
=
False
),
wait_for_handoffs
=
dict
(
default
=
None
,
type
=
'bool
'
),
wait_for_ring
=
dict
(
default
=
None
,
type
=
'bool
'
),
wait_for_handoffs
=
dict
(
default
=
False
,
type
=
'int
'
),
wait_for_ring
=
dict
(
default
=
False
,
type
=
'int
'
),
wait_for_service
=
dict
(
required
=
False
,
default
=
None
,
choices
=
[
'kv'
])
)
...
...
@@ -157,6 +157,7 @@ def main():
except
Exception
,
e
:
module
.
fail_json
(
msg
=
'Could not fetch Riak stats:
%
s'
%
e
)
# here we attempt to load those stats,
try
:
stats
=
json
.
loads
(
stats_raw
)
...
...
@@ -219,16 +220,18 @@ def main():
rc
=
0
err
=
''
out
=
''
wait
=
0
# this could take a while, recommend to run in async mode
if
wait_for_handoffs
:
while
wait
==
0
:
timeout
=
time
.
time
()
+
wait_for_handoffs
while
True
:
rc
,
out
,
err
=
module
.
run_command
(
'riak-admin transfers 2> /dev/null'
)
if
out
.
find
(
'No transfers active'
)
!=
-
1
:
result
[
'handoffs'
]
=
'No transfers active.'
break
time
.
sleep
(
10
)
if
time
.
time
()
>
timeout
:
module
.
fail_json
(
msg
=
'Timeout waiting for handoffs.'
)
# this could take a while, recommend to run in async mode
if
wait_for_service
:
...
...
@@ -238,10 +241,14 @@ def main():
if
wait_for_ring
:
while
wait
==
0
:
timeout
=
time
.
time
()
+
wait_for_ring
while
True
:
if
ring_check
():
break
time
.
sleep
(
10
)
wait
+=
10
if
time
.
time
()
>
timeout
:
module
.
fail_json
(
msg
=
'Timeout waiting for nodes to agree on ring.'
)
result
[
'ring_ready'
]
=
ring_check
()
...
...
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