modal 0.73.168__py3-none-any.whl → 0.73.169__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/client.pyi +2 -2
- modal/parallel_map.py +8 -5
- {modal-0.73.168.dist-info → modal-0.73.169.dist-info}/METADATA +1 -1
- {modal-0.73.168.dist-info → modal-0.73.169.dist-info}/RECORD +9 -9
- modal_version/_version_generated.py +1 -1
- {modal-0.73.168.dist-info → modal-0.73.169.dist-info}/WHEEL +0 -0
- {modal-0.73.168.dist-info → modal-0.73.169.dist-info}/entry_points.txt +0 -0
- {modal-0.73.168.dist-info → modal-0.73.169.dist-info}/licenses/LICENSE +0 -0
- {modal-0.73.168.dist-info → modal-0.73.169.dist-info}/top_level.txt +0 -0
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 = "0.73.
|
34
|
+
version: str = "0.73.169",
|
35
35
|
): ...
|
36
36
|
def is_closed(self) -> bool: ...
|
37
37
|
@property
|
@@ -93,7 +93,7 @@ class Client:
|
|
93
93
|
server_url: str,
|
94
94
|
client_type: int,
|
95
95
|
credentials: typing.Optional[tuple[str, str]],
|
96
|
-
version: str = "0.73.
|
96
|
+
version: str = "0.73.169",
|
97
97
|
): ...
|
98
98
|
def is_closed(self) -> bool: ...
|
99
99
|
@property
|
modal/parallel_map.py
CHANGED
@@ -41,7 +41,8 @@ if typing.TYPE_CHECKING:
|
|
41
41
|
# pump_inputs should retry if it receives any of the standard retryable codes plus RESOURCE_EXHAUSTED.
|
42
42
|
PUMP_INPUTS_RETRYABLE_GRPC_STATUS_CODES = RETRYABLE_GRPC_STATUS_CODES + [Status.RESOURCE_EXHAUSTED]
|
43
43
|
PUMP_INPUTS_MAX_RETRIES = 8
|
44
|
-
PUMP_INPUTS_MAX_RETRY_DELAY=15
|
44
|
+
PUMP_INPUTS_MAX_RETRY_DELAY = 15
|
45
|
+
|
45
46
|
|
46
47
|
class _SynchronizedQueue:
|
47
48
|
"""mdmd:hidden"""
|
@@ -357,6 +358,7 @@ async def _map_invocation(
|
|
357
358
|
f"retried_outputs={retried_outputs} input_queue_size={input_queue.qsize()} "
|
358
359
|
f"retry_queue_size={retry_queue.qsize()} map_items_manager={len(map_items_manager)}"
|
359
360
|
)
|
361
|
+
|
360
362
|
while True:
|
361
363
|
log_stats()
|
362
364
|
try:
|
@@ -401,7 +403,7 @@ def _map_sync(
|
|
401
403
|
assert list(my_func.map([1, 2, 3, 4])) == [1, 4, 9, 16]
|
402
404
|
```
|
403
405
|
|
404
|
-
If applied to a `
|
406
|
+
If applied to a `app.function`, `map()` returns one result per input and the output order
|
405
407
|
is guaranteed to be the same as the input order. Set `order_outputs=False` to return results
|
406
408
|
in the order that they are completed instead.
|
407
409
|
|
@@ -570,6 +572,7 @@ class _MapItemState(enum.Enum):
|
|
570
572
|
# The output has been received and was either successful, or failed with no more retries remaining.
|
571
573
|
COMPLETE = 5
|
572
574
|
|
575
|
+
|
573
576
|
class _OutputType(enum.Enum):
|
574
577
|
SUCCESSFUL_COMPLETION = 1
|
575
578
|
FAILED_COMPLETION = 2
|
@@ -578,11 +581,12 @@ class _OutputType(enum.Enum):
|
|
578
581
|
STALE_RETRY_DUPLICATE = 5
|
579
582
|
NO_CONTEXT_DUPLICATE = 6
|
580
583
|
|
584
|
+
|
581
585
|
class _MapItemContext:
|
582
586
|
state: _MapItemState
|
583
587
|
input: api_pb2.FunctionInput
|
584
588
|
retry_manager: RetryManager
|
585
|
-
sync_client_retries_enabled:bool
|
589
|
+
sync_client_retries_enabled: bool
|
586
590
|
# Both these futures are strings. Omitting generic type because
|
587
591
|
# it causes an error when running `inv protoc type-stubs`.
|
588
592
|
input_id: asyncio.Future
|
@@ -701,8 +705,7 @@ class _MapItemsManager:
|
|
701
705
|
function_call_invocation_type: "api_pb2.FunctionCallInvocationType.ValueType",
|
702
706
|
retry_queue: TimestampPriorityQueue,
|
703
707
|
sync_client_retries_enabled: bool,
|
704
|
-
max_inputs_outstanding: int
|
705
|
-
|
708
|
+
max_inputs_outstanding: int,
|
706
709
|
):
|
707
710
|
self._retry_policy = retry_policy
|
708
711
|
self.function_call_invocation_type = function_call_invocation_type
|
@@ -22,7 +22,7 @@ modal/app.py,sha256=bJp7W3liuVG2VwWkG31tMFogDh84EKppzP8YJFWl3eQ,48140
|
|
22
22
|
modal/app.pyi,sha256=SkqXNrdnGIZ4MmNNvpGtzNLoUdyuvi9IjQQR_DRiRHk,26968
|
23
23
|
modal/call_graph.py,sha256=1g2DGcMIJvRy-xKicuf63IVE98gJSnQsr8R_NVMptNc,2581
|
24
24
|
modal/client.py,sha256=U-YKSw0n7J1ZLREt9cbEJCtmHe5YoPKFxl0xlkan2yc,15565
|
25
|
-
modal/client.pyi,sha256=
|
25
|
+
modal/client.pyi,sha256=OPhN2duy3E59Cd0XH_KxhMf2Asehk37vBruSo_mJEZ8,7661
|
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=x3CUDPC-QK7pa9E2eiFsiCS2ULvVi8UzNZQw1i9drsU,32945
|
@@ -52,7 +52,7 @@ modal/network_file_system.pyi,sha256=4N3eqMbTSlqmS8VV_aJK-uvrgJC8xnf_YtW5FHfRfc8
|
|
52
52
|
modal/object.py,sha256=bTeskuY8JFrESjU4_UL_nTwYlBQdOLmVaOX3X6EMxsg,164
|
53
53
|
modal/object.pyi,sha256=kyJkRQcVv3ct7zSAxvvXcuhBVeH914v80uSlqeS7cA4,5632
|
54
54
|
modal/output.py,sha256=q4T9uHduunj4NwY-YSwkHGgjZlCXMuJbfQ5UFaAGRAc,1968
|
55
|
-
modal/parallel_map.py,sha256=
|
55
|
+
modal/parallel_map.py,sha256=NN48Xg_qzbL4lbw781-t1HDV19w8lib8-9HofoAKxh4,33856
|
56
56
|
modal/parallel_map.pyi,sha256=mEenHruPiZDq3ucV_6RM8ctc0c_Qpqra5MBagXeHiiQ,5708
|
57
57
|
modal/partial_function.py,sha256=SwuAAj2wj4SO6F6nkSnwNZrczEmm9w9YdlQTHh6hr04,1195
|
58
58
|
modal/partial_function.pyi,sha256=NFWz1aCAs2B3-GnPf1cTatWRZOLnYpFKCnjP_X9iNRs,6411
|
@@ -145,7 +145,7 @@ modal/requirements/2024.10.txt,sha256=qD-5cVIVM9wXesJ6JC89Ew-3m2KjEElUz3jaw_MddR
|
|
145
145
|
modal/requirements/PREVIEW.txt,sha256=qD-5cVIVM9wXesJ6JC89Ew-3m2KjEElUz3jaw_MddRo,296
|
146
146
|
modal/requirements/README.md,sha256=9tK76KP0Uph7O0M5oUgsSwEZDj5y-dcUPsnpR0Sc-Ik,854
|
147
147
|
modal/requirements/base-images.json,sha256=57vMSqzMbLBxw5tFWSaMiIkkVEps4JfX5PAtXGnkS4U,740
|
148
|
-
modal-0.73.
|
148
|
+
modal-0.73.169.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
|
149
149
|
modal_docs/__init__.py,sha256=svYKtV8HDwDCN86zbdWqyq5T8sMdGDj0PVlzc2tIxDM,28
|
150
150
|
modal_docs/gen_cli_docs.py,sha256=c1yfBS_x--gL5bs0N4ihMwqwX8l3IBWSkBAKNNIi6bQ,3801
|
151
151
|
modal_docs/gen_reference_docs.py,sha256=cvTgltucqYLLIX84QxAwf51Z5Vc2n6cLxS8VcrxNCAo,6401
|
@@ -170,9 +170,9 @@ modal_proto/options_pb2_grpc.pyi,sha256=CImmhxHsYnF09iENPoe8S4J-n93jtgUYD2JPAc0y
|
|
170
170
|
modal_proto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
171
171
|
modal_version/__init__.py,sha256=wiJQ53c-OMs0Xf1UeXOxQ7FwlV1VzIjnX6o-pRYZ_Pk,470
|
172
172
|
modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
|
173
|
-
modal_version/_version_generated.py,sha256
|
174
|
-
modal-0.73.
|
175
|
-
modal-0.73.
|
176
|
-
modal-0.73.
|
177
|
-
modal-0.73.
|
178
|
-
modal-0.73.
|
173
|
+
modal_version/_version_generated.py,sha256=K1I-OHoqF3Qf9hN8YD8e7nCzAieLwZ3R8l4ov209qJs,150
|
174
|
+
modal-0.73.169.dist-info/METADATA,sha256=1QhcQPji6dqJkEd3YfibNbEuaI5JLzZAsF9LmPZ8FFQ,2475
|
175
|
+
modal-0.73.169.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
176
|
+
modal-0.73.169.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
|
177
|
+
modal-0.73.169.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
|
178
|
+
modal-0.73.169.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|