-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Is there parity for aws s3 sync
?
#824
Comments
The |
:( |
Hi, just wanted to stop by and add my :( to this. Sync functionality has been available in the PHP SDK since 2013. The Java SDK also has this/something similar. |
Same here.. just stopping by again to add my :( This is a really useful feature to have in sdk, so we don't have to install cli dependency on hosting, and our background jobs can run purely on gem dependency. Adding this feature will make it whole lot easier to do PaaS deployments on system like Heroku. |
Bumping for 2019. Any chance of having this function added to the Ruby SDK? |
Looking for SDK equivalent SDK method for Does this exist? |
Reopening as a feature request. Happy to take an PRs. |
Need the ability to run: Using the API, you can create a TransferManager object, but it assumes a single S3 AWS connection. An API change would hopefully accommodate this use case. |
Any update on this? |
We are in 2021, any updates? |
^ @VitalyTarasiu I can second this. We are in 2021. Still waiting for this feature to drop :( |
+1 |
Just do the loop yourself, the SDK only contains the actual API calls, not some utility that goes on top. |
@pviet-cohere it's not "just a loop". May be read up on the documentation for the original utility? https://docs.aws.amazon.com/cli/latest/reference/s3/sync.html |
Hi guys, I also am looking for SDK equivalent of CLI aws sync; I found this really helpful article that served my purpose. The code is easy to run as well. Nevertheless, I do request aws-sdk to include the sync feature to standardize the algo. |
I know my comment will be unpopular; I braced for I personally will choose neither SDK nor CLI for sync. Because, IMO, there is an economy behind software. You'll get better priority, support, and maintenance by switching to something more specific, like Rclone. Anyway, it seems the AWS team is still open for the PR; if you really want this, you should go for it. |
The AWS CLI has the the amazing
aws s3 sync
command which I use frequently. It's super fast because in some cases it only copies the delta between the buckets.There doesn't seem to be a similar way to invoke that API from this library. Is it here and I'm just missing it?
The text was updated successfully, but these errors were encountered: