We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0ce8bf commit 88eabceCopy full SHA for 88eabce
src/yandex_cloud_ml_sdk/_datasets/uploaders.py
@@ -16,7 +16,7 @@
16
17
logger = get_logger(__name__)
18
19
-DEFAULT_CHUNK_SIZE = 500 * 1024 ** 2
+DEFAULT_CHUNK_SIZE = 100 * 1024 ** 2 # 100 Mb
20
21
MAX_CHUNK_SIZE = 5 * 1024 ** 3 # 5 GB
22
MAX_CHUNK_SIZE_PRETTY = '5GB'
src/yandex_cloud_ml_sdk/_types/batch/operation.py
@@ -41,6 +41,7 @@ def __init__(
41
transformer=self._result_transformer,
42
service_name='ai-foundation-models',
43
initial_operation=initial_operation,
44
+ default_poll_timeout=60 * 60 * 72, # 72h
45
)
46
47
# NB: I don't want to make parent operation class Generic[MetadataTypeT] just to
0 commit comments