Traffic Dump: Allow unlimited disk utilization#9186
Merged
bneradt merged 2 commits intoapache:masterfrom Nov 15, 2022
Merged
Conversation
The traffic_dump.so plugin has a --limit argument that specifies how much disk space the plugin will use before stopping writing out new sessions to replay files. This patch allows the user to configure unrestricted disk utilization by passing a value of 0 to --limit.
e5ef523 to
1f22f12
Compare
Contributor
|
A couple of suggestions:
|
Contributor
Author
Yes, good points. I'll just make the |
Without --limit specified, there is no disk usage limitation enforcement.
c9b5edb to
260fd29
Compare
Contributor
|
Cherry-picked to v9.2.x |
zwoop
pushed a commit
that referenced
this pull request
Nov 17, 2022
The traffic_dump.so plugin has a --limit argument that specifies how much disk space the plugin will use before stopping writing out new sessions to replay files. This patch allows the user to configure unrestricted disk utilization by not using the --limit argument which was previous a required argument. (cherry picked from commit 9e0257e)
masaori335
pushed a commit
to masaori335/trafficserver
that referenced
this pull request
Feb 21, 2023
The traffic_dump.so plugin has a --limit argument that specifies how much disk space the plugin will use before stopping writing out new sessions to replay files. This patch allows the user to configure unrestricted disk utilization by not using the --limit argument which was previous a required argument. (cherry picked from commit 9e0257e)
masaori335
pushed a commit
to masaori335/trafficserver
that referenced
this pull request
Feb 21, 2023
* asf/9.2.x: Revert "Make separate read and write vc_handlers (apache#8301)" AuTest: Update to Proxy Verifier 2.5.2 (apache#9223) AuTest: Update to Proxy Verifier v2.5.0 (apache#9221) Updated ChangeLog Adding back set_connect_fail for generic I/O error (apache#9181) AuTest: make MakeATSProcess accessible for TestRuns (apache#9195) Traffic Dump: Allow unlimited disk utilization (apache#9186) AuTest: bind stdout/stderr to traffic.out (apache#8919) Adds support for serving statichit content out of a directory (apache#9107)
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
Sign up for free
to 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.
The traffic_dump.so plugin has a --limit argument that specifies how much disk space the plugin will use before stopping writing out new sessions to replay files. This patch allows the user to configure unrestricted disk utilization by making --limit optional and making the absence of
--limitimply no disk utilization.