-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[docker-syncd] Add timeout to force stop syncd container #4617
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -163,11 +163,21 @@ stop() { | |
debug "${TYPE} shutdown syncd process ..." | ||
/usr/bin/docker exec -i syncd$DEV /usr/bin/syncd_request_shutdown --${TYPE} | ||
|
||
# wait until syncd quits gracefully | ||
while docker top syncd$DEV | grep -q /usr/bin/syncd; do | ||
# wait until syncd quits gracefully or force syncd to exit after | ||
# waiting for 20 seconds | ||
start_in_secs=${SECONDS} | ||
end_in_secs=${SECONDS} | ||
timer_threshold=20 | ||
while docker top syncd$DEV | grep -q /usr/bin/syncd \ | ||
&& [[ $((end_in_secs - start_in_secs)) -le $timer_threshold ]]; do | ||
sleep 0.1 | ||
end_in_secs=${SECONDS} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why not move this line to the top of the wile loop and remove line 169? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you mean we should modify the code like this? |
||
done | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did you try There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tried this method. Actually |
||
|
||
if [[ $((end_in_secs - start_in_secs)) -gt $timer_threshold ]]; then | ||
debug "syncd process in container syncd$DEV did not exit gracefully" | ||
fi | ||
|
||
/usr/bin/docker exec -i syncd$DEV /bin/sync | ||
debug "Finished ${TYPE} shutdown syncd process ..." | ||
fi | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why 20 seconds? what is the rationale?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This threshold 20 seconds is what we discussed in our weekly meeting. In the meeting, we decided to set the timer to be 20 seconds and wait for enough long time such that syncd process has a chance to exit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there must be some rationale to set it to 20 seconds, why not 10 seconds? can you explain it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually when I tested the auto-restart feature of swss container, syncd container sometimes can be normally stopped and sometimes can not be stopped. The first thing I did is to profile how long this while loop will spin if syncd container can be normally stopped after swss container is stopped. The result is 5 seconds or 6 seconds. After that, in our meeting, we talked about to set a 20 seconds timer for this while loop before forcing syncd to exit. Please review the section of "Why I did it" of this PR for more details.
Sure, I can also try to set a 10 seconds timer to check whether it works or not.