There is no posibility how to set permission for all members of project, so you have to set permission for each user in project. Permission sets only owner of bucket.
There is no possibility to set permissions for all members of a project,
so you have to set permissions for each user in a project.
Permission can be set only by the owner of the bucket.
@@ -109,12 +111,18 @@ There is no posibility how to set permission for all members of project, so you
## Bugs & Features
The S3cmd client uses by default the so-called "multipart upload", which means that it splits the uploaded file into "chunks" with a default size of 15 MB. However, this upload method has major implications for the data capacity of the filesystem/fileset when overwriting existing files. When overwriting an existing file in "multipart" mode, the capacity is duplicated (the file is not overwritten, but rewritten and the original file remains - but the capacity is allocated by both files). This is a described swift bug for which there is no fix yet. But there is a workaround and that is to disable "multipart upload" on the S3CMD client side.
By default, the S3cmd client uses the so-called "multipart upload",
which means that it splits the uploaded file into "chunks" with a default size of 15 MB.
However, this upload method has major implications for the data capacity of the filesystem/fileset when overwriting existing files.
When overwriting an existing file in a "multipart" mode, the capacity is duplicated
(the file is not overwritten, but rewritten and the original file remains - but the capacity is allocated by both files).
This is a described swift bug for which there is no fix yet.
But there is a workaround and that is to disable "multipart upload" on the S3CMD client side.
```console
~ s3cmd --disable-multipart put /install/test1.log s3://test-bucket1
upload: '/install/test1.log' ->'s3://test-bucket1/test1.log'[1 of 1]
1024000000 of 1024000000 100% in 9s 99.90 MB/s done
```
this method is not recomended for large files, because it is not so fast and reliable as multipart upload, but it is only way how to overwrite files without duplicating capacity.
this method is not recommended for large files, because it is not as fast and reliable as multipart upload, but it is the only way how to overwrite files without duplicating capacity.