gw: annotate cvmfs_receiver process with lease path#4065
Open
orbaps wants to merge 2 commits into
Open
Conversation
The cvmfs_receiver process is now spawned with an additional '-l <lease_path>' argument. This argument is ignored by the receiver logic but serves to identify the process in system process listings (e.g., ps aux), facilitating debugging and monitoring. Fixes cvmfs#3399
…407394230612695521 gw: annotate cvmfs_receiver process with lease path
Collaborator
|
Can one of the admins verify this patch? |
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.
This PR addresses issue #3399 by adding an optional
-largument to thecvmfs_receiverprocess.Description
The
cvmfs_receiverprocess is spawned by the gateway. This change passes the lease path as an unused-lcommand-line argument to the receiver process. This allows administrators to easily identify which receiver process corresponds to which lease path using standard process listing tools, aiding in debugging and monitoring.Changes
cvmfs/receiver/receiver.cc: Updated argument parsing to accept an optional-lflag.gateway/internal/gateway/receiver/pool.go: Updated the worker pool to extract the lease path from the task and pass it to the receiver process.Testing
Fixes #3399