[GH-ISSUE #205] Any way to do recursive operations faster? #112

Closed
opened 2026-03-04 01:42:14 +03:00 by kerem · 3 comments
Owner

Originally created by @Jafo232 on GitHub (Jul 6, 2015).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/205

When doing a recursive operation like CHMOD or CHOWN, it takes FOREVER. Is there anyway to speed this up?

Originally created by @Jafo232 on GitHub (Jul 6, 2015). Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/205 When doing a recursive operation like CHMOD or CHOWN, it takes FOREVER. Is there anyway to speed this up?
kerem closed this issue 2026-03-04 01:42:14 +03:00
Author
Owner

@gaul commented on GitHub (Jul 6, 2015):

This is a problem for single-threaded commands running against any network file system but particularly acute for s3fs. Could you introduce parallelism via:

find | xargs --max-args=1 --max-procs=50 chmod
<!-- gh-comment-id:119022785 --> @gaul commented on GitHub (Jul 6, 2015): This is a problem for single-threaded commands running against any network file system but particularly acute for s3fs. Could you introduce parallelism via: ``` find | xargs --max-args=1 --max-procs=50 chmod ```
Author
Owner

@Jafo232 commented on GitHub (Jul 7, 2015):

Thanks, that helps a bit. Still slow, but not as much.

<!-- gh-comment-id:119054192 --> @Jafo232 commented on GitHub (Jul 7, 2015): Thanks, that helps a bit. Still slow, but not as much.
Author
Owner

@gaul commented on GitHub (Jul 7, 2015):

Also you can mount your S3 bucket with an EC2 instance in the same region to decrease per-operation latency.

<!-- gh-comment-id:119263333 --> @gaul commented on GitHub (Jul 7, 2015): Also you can mount your S3 bucket with an EC2 instance in the same region to decrease per-operation latency.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/s3fs-fuse#112
No description provided.