Move parsed folder and rename zipped#297
Open
PascalEgn wants to merge 5 commits into
Open
Conversation
e985973 to
55c7b02
Compare
Contributor
Author
|
Once this is merged on qa and prod we can run something like this to move the already parsed files in all buckets: #!/bin/bash
set -e
# Configuration
REMOTE="scoap3"
BUCKET="scoap3-<PROD/QA>-workflows-<PUBLISHER>"
SOURCE_PREFIX="extracted/parsed/"
DEST_PREFIX="parsed/"
echo "Starting migration of S3 objects..."
echo "Remote: $REMOTE"
echo "Bucket: $BUCKET"
echo "Source: /$SOURCE_PREFIX"
echo "Destination: /$DEST_PREFIX"
echo ""
echo "Copying objects..."
rclone copy \
"$REMOTE:$BUCKET/$SOURCE_PREFIX" \
"$REMOTE:$BUCKET/$DEST_PREFIX" \
--progress \
--verbose
echo ""
echo "Deleting source objects..."
rclone delete \
"$REMOTE:$BUCKET/$SOURCE_PREFIX" \
--progress \
--verbose
echo ""
echo "✓ Migration complete!" |
55c7b02 to
7497ff6
Compare
7497ff6 to
05f05a2
Compare
05f05a2 to
700497b
Compare
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.
Uh oh!
There was an error while loading. Please reload this page.