File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 39
39
run : |
40
40
pip install git+https://github.com/fsspec/filesystem_spec
41
41
pip install --upgrade "aiobotocore${{ matrix.aiobotocore-version }}"
42
- pip install --upgrade "botocore" --no-deps
43
42
pip install . --no-deps
44
43
pip list
45
44
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ class S3FileSystem(AsyncFileSystem):
213
213
If RequesterPays buckets are supported.
214
214
default_block_size: int (None)
215
215
If given, the default block size value used for ``open()``, if no
216
- specific value is given at all time. The built-in default is 5MB .
216
+ specific value is given at all time. The built-in default is 50MB .
217
217
default_fill_cache : Bool (True)
218
218
Whether to use cache filling with open by default. Refer to
219
219
``S3File.open``.
@@ -241,9 +241,9 @@ class S3FileSystem(AsyncFileSystem):
241
241
session : aiobotocore AioSession object to be used for all connections.
242
242
This session will be used inplace of creating a new session inside S3FileSystem.
243
243
For example: aiobotocore.session.AioSession(profile='test_user')
244
- max_concurrency : int (1 )
244
+ max_concurrency : int (10 )
245
245
The maximum number of concurrent transfers to use per file for multipart
246
- upload (``put()``) operations. Defaults to 1 (sequential) . When used in
246
+ upload (``put()``) operations. Defaults to 10 . When used in
247
247
conjunction with ``S3FileSystem.put(batch_size=...)`` the maximum number of
248
248
simultaneous connections is ``max_concurrency * batch_size``. We may extend
249
249
this parameter to affect ``pipe()``, ``cat()`` and ``get()``. Increasing this
You can’t perform that action at this time.
0 commit comments