- Notifications
You must be signed in to change notification settings - Fork935
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
call sync with the filepath to only sync that file when enable sync is set to true#9546
Open
spaced0gg wants to merge2 commits intorundeck:mainChoose a base branch fromspaced0gg:main
base:main
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Is this a bugfix, or an enhancement? Please describe.
Enhancement.
After a recent hardware upgrade and mandated security software upgrade on our servers, we have noticed that using enable-sync=true on the rundeck localhost node is causing massive performance issues. For example. we have a job that runs across around 20 nodes takes around 6 minutes with enable-sync=false, but takes around an hour with enable-sync=true.
This change keeps the enable-sync=true behaviour that fixes the "text file busy" issue we were seeing, but keeps the performance on par with enable-sync=false.
see#9544
Describe the solution you've implemented
sync is now called with filepath so that it only syncs that specific file of all outstanding changes, see the sync docs for more info:
https://man7.org/linux/man-pages/man1/sync.1.html
Without the filepath, the sync command synchronizes all cached data for the current user to the permanent memory.
Describe alternatives you've considered
see rundeck google group discussion:
https://groups.google.com/g/rundeck-discuss/c/Eqetx33hKgM
I have been testing with enable-sync=false and file-busy-err-retry=true in hopes that this would prevent the text file busy issue while also disabling the sync command. This did not work.
I also tried setting
file-copy-destination-dir="/var/lib/rundeck/rundeckTmpfs"
and mounting a tmpfs filesystem.
I would have thought setting this along with enable-sync=false could workaround our problem, as the tmpfs location would be in memory and the sync shouldn't be needed/have no effect. This also didn't fix the issue. We still see intermittent text file busy failures.