modal 1.0.1.dev5__py3-none-any.whl → 1.0.2.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- modal/_functions.py +34 -10
- modal/client.pyi +2 -2
- {modal-1.0.1.dev5.dist-info → modal-1.0.2.dev0.dist-info}/METADATA +1 -1
- {modal-1.0.1.dev5.dist-info → modal-1.0.2.dev0.dist-info}/RECORD +9 -9
- modal_version/__init__.py +1 -1
- {modal-1.0.1.dev5.dist-info → modal-1.0.2.dev0.dist-info}/WHEEL +0 -0
- {modal-1.0.1.dev5.dist-info → modal-1.0.2.dev0.dist-info}/entry_points.txt +0 -0
- {modal-1.0.1.dev5.dist-info → modal-1.0.2.dev0.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.1.dev5.dist-info → modal-1.0.2.dev0.dist-info}/top_level.txt +0 -0
modal/_functions.py
CHANGED
@@ -99,6 +99,7 @@ if TYPE_CHECKING:
|
|
99
99
|
import modal.cls
|
100
100
|
import modal.partial_function
|
101
101
|
|
102
|
+
MAX_INTERNAL_FAILURE_COUNT = 8
|
102
103
|
|
103
104
|
@dataclasses.dataclass
|
104
105
|
class _RetryContext:
|
@@ -348,10 +349,14 @@ class _InputPlaneInvocation:
|
|
348
349
|
stub: ModalClientModal,
|
349
350
|
attempt_token: str,
|
350
351
|
client: _Client,
|
352
|
+
input_item: api_pb2.FunctionPutInputsItem,
|
353
|
+
function_id: str,
|
351
354
|
):
|
352
355
|
self.stub = stub
|
353
356
|
self.client = client # Used by the deserializer.
|
354
357
|
self.attempt_token = attempt_token
|
358
|
+
self.input_item = input_item
|
359
|
+
self.function_id = function_id
|
355
360
|
|
356
361
|
@staticmethod
|
357
362
|
async def create(
|
@@ -365,36 +370,55 @@ class _InputPlaneInvocation:
|
|
365
370
|
stub = await client.get_stub(input_plane_url)
|
366
371
|
|
367
372
|
function_id = function.object_id
|
368
|
-
|
373
|
+
input_item = await _create_input(args, kwargs, stub, method_name=function._use_method_name)
|
369
374
|
|
370
375
|
request = api_pb2.AttemptStartRequest(
|
371
376
|
function_id=function_id,
|
372
377
|
parent_input_id=current_input_id() or "",
|
373
|
-
input=
|
378
|
+
input=input_item,
|
374
379
|
)
|
375
380
|
response = await retry_transient_errors(stub.AttemptStart, request)
|
376
381
|
attempt_token = response.attempt_token
|
377
382
|
|
378
|
-
return _InputPlaneInvocation(stub, attempt_token, client)
|
383
|
+
return _InputPlaneInvocation(stub, attempt_token, client, input_item, function_id)
|
379
384
|
|
380
385
|
async def run_function(self) -> Any:
|
381
|
-
#
|
386
|
+
# This will retry when the server returns GENERIC_STATUS_INTERNAL_FAILURE, i.e. lost inputs or worker preemption
|
387
|
+
# TODO(ryan): add logic to retry for user defined retry policy
|
388
|
+
internal_failure_count = 0
|
382
389
|
while True:
|
383
|
-
|
390
|
+
await_request = api_pb2.AttemptAwaitRequest(
|
384
391
|
attempt_token=self.attempt_token,
|
385
392
|
timeout_secs=OUTPUTS_TIMEOUT,
|
386
393
|
requested_at=time.time(),
|
387
394
|
)
|
388
|
-
|
395
|
+
await_response: api_pb2.AttemptAwaitResponse = await retry_transient_errors(
|
389
396
|
self.stub.AttemptAwait,
|
390
|
-
|
397
|
+
await_request,
|
391
398
|
attempt_timeout=OUTPUTS_TIMEOUT + ATTEMPT_TIMEOUT_GRACE_PERIOD,
|
392
399
|
)
|
393
400
|
|
394
|
-
|
395
|
-
|
396
|
-
|
401
|
+
try:
|
402
|
+
if await_response.HasField("output"):
|
403
|
+
return await _process_result(
|
404
|
+
await_response.output.result, await_response.output.data_format, self.stub, self.client
|
405
|
+
)
|
406
|
+
except InternalFailure as e:
|
407
|
+
internal_failure_count += 1
|
408
|
+
# Limit the number of times we retry
|
409
|
+
if internal_failure_count >= MAX_INTERNAL_FAILURE_COUNT:
|
410
|
+
raise e
|
411
|
+
# For system failures on the server, we retry immediately,
|
412
|
+
# and the failure does not count towards the retry policy.
|
413
|
+
retry_request = api_pb2.AttemptRetryRequest(
|
414
|
+
function_id=self.function_id,
|
415
|
+
parent_input_id=current_input_id() or "",
|
416
|
+
input=self.input_item,
|
417
|
+
attempt_token=self.attempt_token,
|
397
418
|
)
|
419
|
+
# TODO(ryan): Add exponential backoff?
|
420
|
+
retry_response = await retry_transient_errors(self.stub.AttemptRetry, retry_request)
|
421
|
+
self.attempt_token = retry_response.attempt_token
|
398
422
|
|
399
423
|
|
400
424
|
# Wrapper type for api_pb2.FunctionStats
|
modal/client.pyi
CHANGED
@@ -31,7 +31,7 @@ class _Client:
|
|
31
31
|
server_url: str,
|
32
32
|
client_type: int,
|
33
33
|
credentials: typing.Optional[tuple[str, str]],
|
34
|
-
version: str = "1.0.
|
34
|
+
version: str = "1.0.2.dev0",
|
35
35
|
): ...
|
36
36
|
def is_closed(self) -> bool: ...
|
37
37
|
@property
|
@@ -94,7 +94,7 @@ class Client:
|
|
94
94
|
server_url: str,
|
95
95
|
client_type: int,
|
96
96
|
credentials: typing.Optional[tuple[str, str]],
|
97
|
-
version: str = "1.0.
|
97
|
+
version: str = "1.0.2.dev0",
|
98
98
|
): ...
|
99
99
|
def is_closed(self) -> bool: ...
|
100
100
|
@property
|
@@ -3,7 +3,7 @@ modal/__main__.py,sha256=sTJcc9EbDuCKSwg3tL6ZckFw9WWdlkXW8mId1IvJCNc,2846
|
|
3
3
|
modal/_clustered_functions.py,sha256=kTf-9YBXY88NutC1akI-gCbvf01RhMPCw-zoOI_YIUE,2700
|
4
4
|
modal/_clustered_functions.pyi,sha256=2aWxN2v5WUnj-R-sk6BzJ-3AvggkQGQjwhtvbDH3pds,777
|
5
5
|
modal/_container_entrypoint.py,sha256=2Zx9O_EMJg0H77EdnC2vGKs6uFMWwbP1NLFf-qYmWmU,28962
|
6
|
-
modal/_functions.py,sha256=
|
6
|
+
modal/_functions.py,sha256=iL1ZVzgLr9xP1UF0rpiazSavdC6DNqnkDU38eaTbk9I,78525
|
7
7
|
modal/_ipython.py,sha256=TW1fkVOmZL3YYqdS2YlM1hqpf654Yf8ZyybHdBnlhSw,301
|
8
8
|
modal/_location.py,sha256=joiX-0ZeutEUDTrrqLF1GHXCdVLF-rHzstocbMcd_-k,366
|
9
9
|
modal/_object.py,sha256=KzzzZoM41UQUiY9TKOrft9BtZKgjWG_ukdlyLGjB4UY,10758
|
@@ -22,7 +22,7 @@ modal/app.py,sha256=NZ_rJ9TuMfiNiLg8-gOFgufD5flGtXWPHOZI0gdD3hE,46585
|
|
22
22
|
modal/app.pyi,sha256=4-b_vbe3lNAqQPcMRpQCEDsE1zsVkQRJGUql9B7HvbM,22659
|
23
23
|
modal/call_graph.py,sha256=1g2DGcMIJvRy-xKicuf63IVE98gJSnQsr8R_NVMptNc,2581
|
24
24
|
modal/client.py,sha256=OwISJvkgMb-rHm9Gc4i-7YcDgGiZgwJ7F_PzwZH7a6Q,16847
|
25
|
-
modal/client.pyi,sha256=
|
25
|
+
modal/client.pyi,sha256=2S10LK_1EoCSDcYYFPc7w_BxJVLTNabJKLW5ENbtEks,8457
|
26
26
|
modal/cloud_bucket_mount.py,sha256=YOe9nnvSr4ZbeCn587d7_VhE9IioZYRvF9VYQTQux08,5914
|
27
27
|
modal/cloud_bucket_mount.pyi,sha256=30T3K1a89l6wzmEJ_J9iWv9SknoGqaZDx59Xs-ZQcmk,1607
|
28
28
|
modal/cls.py,sha256=dBbeARwOWftlKd1cwtM0cHFtQWSWkwVXwVmOV4w0SyI,37907
|
@@ -147,7 +147,7 @@ modal/requirements/2024.10.txt,sha256=qD-5cVIVM9wXesJ6JC89Ew-3m2KjEElUz3jaw_MddR
|
|
147
147
|
modal/requirements/PREVIEW.txt,sha256=qD-5cVIVM9wXesJ6JC89Ew-3m2KjEElUz3jaw_MddRo,296
|
148
148
|
modal/requirements/README.md,sha256=9tK76KP0Uph7O0M5oUgsSwEZDj5y-dcUPsnpR0Sc-Ik,854
|
149
149
|
modal/requirements/base-images.json,sha256=57vMSqzMbLBxw5tFWSaMiIkkVEps4JfX5PAtXGnkS4U,740
|
150
|
-
modal-1.0.
|
150
|
+
modal-1.0.2.dev0.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
|
151
151
|
modal_docs/__init__.py,sha256=svYKtV8HDwDCN86zbdWqyq5T8sMdGDj0PVlzc2tIxDM,28
|
152
152
|
modal_docs/gen_cli_docs.py,sha256=c1yfBS_x--gL5bs0N4ihMwqwX8l3IBWSkBAKNNIi6bQ,3801
|
153
153
|
modal_docs/gen_reference_docs.py,sha256=d_CQUGQ0rfw28u75I2mov9AlS773z9rG40-yq5o7g2U,6359
|
@@ -170,10 +170,10 @@ modal_proto/options_pb2.pyi,sha256=l7DBrbLO7q3Ir-XDkWsajm0d0TQqqrfuX54i4BMpdQg,1
|
|
170
170
|
modal_proto/options_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
171
171
|
modal_proto/options_pb2_grpc.pyi,sha256=CImmhxHsYnF09iENPoe8S4J-n93jtgUYD2JPAc0yJSI,247
|
172
172
|
modal_proto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
173
|
-
modal_version/__init__.py,sha256=
|
173
|
+
modal_version/__init__.py,sha256=eVgGwOcq0pOZ79wRcMg2EbUedzqwB1QqfCQLuyhrJDo,120
|
174
174
|
modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
|
175
|
-
modal-1.0.
|
176
|
-
modal-1.0.
|
177
|
-
modal-1.0.
|
178
|
-
modal-1.0.
|
179
|
-
modal-1.0.
|
175
|
+
modal-1.0.2.dev0.dist-info/METADATA,sha256=eSZ35kWG8zk9VWR8kBw94CAL2V7L9WG-dGCBUkdQops,2454
|
176
|
+
modal-1.0.2.dev0.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
177
|
+
modal-1.0.2.dev0.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
|
178
|
+
modal-1.0.2.dev0.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
|
179
|
+
modal-1.0.2.dev0.dist-info/RECORD,,
|
modal_version/__init__.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|