-
Notifications
You must be signed in to change notification settings - Fork 166
app/vlstorage/netinsert: drain buffered data on graceful shutdown ins… #1572
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
Open
github-vincent-miszczak
wants to merge
7
commits into
VictoriaMetrics:master
Choose a base branch
from
github-vincent-miszczak:fix-vlinsert-drain-on-shutdown
base: master
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.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6eec825
app/vlstorage/netinsert: drain buffered data on graceful shutdown ins…
github-vincent-miszczak 8287d84
app/vlstorage/netinsert: bound send requests by a fixed timeout inste…
github-vincent-miszczak 34cbcba
app/vlstorage/netinsert: bound graceful shutdown drain with -insert.d…
cuongleqq 85e0cf3
Merge branch 'master' into fix-vlinsert-drain-on-shutdown
cuongleqq 1684d92
Merge branch 'master' into fix-vlinsert-drain-on-shutdown
cuongleqq 35fccc3
app/vlstorage/netinsert: keep re-trying to send pending data within -…
cuongleqq 60a6534
Merge branch 'master' into fix-vlinsert-drain-on-shutdown
github-vincent-miszczak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -71,6 +71,8 @@ var ( | |
| insertConcurrency = flag.Int("insert.concurrency", 2, "The average number of concurrent data ingestion requests, which can be sent to every -storageNode") | ||
| insertDisableCompression = flag.Bool("insert.disableCompression", false, "Whether to disable compression when sending the ingested data to -storageNode nodes. "+ | ||
| "Disabled compression reduces CPU usage at the cost of higher network usage") | ||
| insertDrainTimeout = flag.Duration("insert.drainTimeout", 5*time.Second, "The maximum duration for draining the in-memory buffered logs to -storageNode nodes on graceful shutdown. "+ | ||
| "It must be smaller than the container termination grace period minus -http.shutdownDelay, otherwise the process may be killed before the drain completes and the buffered logs are lost") | ||
|
Comment on lines
+74
to
+75
Member
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 think it's better to document that the grace period must cover: preStop + |
||
| selectDisableCompression = flag.Bool("select.disableCompression", false, "Whether to disable compression for select query responses received from -storageNode nodes. "+ | ||
| "Disabled compression reduces CPU usage at the cost of higher network usage") | ||
|
|
||
|
|
@@ -175,7 +177,7 @@ func initNetworkStorage() { | |
| } | ||
|
|
||
| logger.Infof("starting insert service for nodes %s", *storageNodeAddrs) | ||
| netstorageInsert = netinsert.NewStorage(*storageNodeAddrs, authCfgs, isTLSs, *insertConcurrency, *insertDisableCompression) | ||
| netstorageInsert = netinsert.NewStorage(*storageNodeAddrs, authCfgs, isTLSs, *insertConcurrency, *insertDisableCompression, *insertDrainTimeout) | ||
|
|
||
| logger.Infof("initializing select service for nodes %s", *storageNodeAddrs) | ||
| netstorageSelect = netselect.NewStorage(*storageNodeAddrs, authCfgs, isTLSs, *selectDisableCompression) | ||
|
|
||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
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.
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.
Wdyt about setting it to 12s by default? I know it's a bit of an edge case, but unavailable nodes are temporarily disabled for 10s, so setting it to 5s may not be an efficient retry interval