-
Notifications
You must be signed in to change notification settings - Fork 226
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
[GitHub] azcopy list with versionids does not show version id #2550
Merged
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
gapra-msft
reviewed
Jan 22, 2024
siminsavani-msft
changed the title
[Bug] azcopy list with versionids does not show version id
[GitHub] azcopy list with versionids does not show version id
Jan 24, 2024
gapra-msft
reviewed
Jan 24, 2024
We want to list all versions of the base blob. Watch out for if the customer is using the --running-tally flag, as we probably don't want to sum up all the individual versions of the base blob, since they are incremental. |
siminsavani-msft
requested review from
adreed-msft,
nakulkar-msft,
vibhansa-msft,
tasherif-msft,
seanmcc-msft and
pranavmalik-msft
as code owners
January 30, 2024 04:59
gapra-msft
reviewed
Jan 30, 2024
gapra-msft
reviewed
Jan 30, 2024
gapra-msft
reviewed
Feb 7, 2024
gapra-msft
reviewed
Feb 7, 2024
gapra-msft
approved these changes
Feb 13, 2024
adreed-msft
approved these changes
Feb 13, 2024
tasherif-msft
approved these changes
Feb 14, 2024
gapra-msft
approved these changes
Feb 15, 2024
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.
When doing this
list "https://[accountName].blob.core.windows.net/[containerName]" --properties="VersionID"
, AzCopy does not print out the version IDs of individual blobs (see example below).INFO: hello/stuff/foo.txt; VersionId: ; Content Length: 3.00 B
The mentioned list command should print out something list this:
INFO: hello/stuff/foo.txt; VersionId: 2023-06-05T18:39:41.0295735Z; Content Length: 3.00 B
If the blob has more versions, then that will also be printed out:
This PR also handles
--running-tally
:Note that the total file size and count accounts for the latest versions only.
This fixes the bug in and completes the feature request in #2007 .
I've also added three unit tests in cmd with running rally and version id in property flag.