indexify 0.3.12__py3-none-any.whl → 0.3.14__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.
@@ -0,0 +1,286 @@
1
+ from typing import ClassVar as _ClassVar
2
+ from typing import Iterable as _Iterable
3
+ from typing import Mapping as _Mapping
4
+ from typing import Optional as _Optional
5
+ from typing import Union as _Union
6
+
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import message as _message
9
+ from google.protobuf.internal import containers as _containers
10
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
11
+
12
+ DESCRIPTOR: _descriptor.FileDescriptor
13
+
14
+ class GPUModel(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
15
+ __slots__ = ()
16
+ GPU_MODEL_UNKNOWN: _ClassVar[GPUModel]
17
+ GPU_MODEL_NVIDIA_TESLA_T4_16GB: _ClassVar[GPUModel]
18
+ GPU_MODEL_NVIDIA_TESLA_V100_16GB: _ClassVar[GPUModel]
19
+ GPU_MODEL_NVIDIA_A10_24GB: _ClassVar[GPUModel]
20
+ GPU_MODEL_NVIDIA_A6000_48GB: _ClassVar[GPUModel]
21
+ GPU_MODEL_NVIDIA_A100_SXM4_40GB: _ClassVar[GPUModel]
22
+ GPU_MODEL_NVIDIA_A100_SXM4_80GB: _ClassVar[GPUModel]
23
+ GPU_MODEL_NVIDIA_A100_PCI_40GB: _ClassVar[GPUModel]
24
+ GPU_MODEL_NVIDIA_H100_SXM5_80GB: _ClassVar[GPUModel]
25
+ GPU_MODEL_NVIDIA_H100_PCI_80GB: _ClassVar[GPUModel]
26
+ GPU_MODEL_NVIDIA_RTX_6000_24GB: _ClassVar[GPUModel]
27
+
28
+ class FunctionExecutorStatus(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
29
+ __slots__ = ()
30
+ FUNCTION_EXECUTOR_STATUS_UNKNOWN: _ClassVar[FunctionExecutorStatus]
31
+ FUNCTION_EXECUTOR_STATUS_STOPPED: _ClassVar[FunctionExecutorStatus]
32
+ FUNCTION_EXECUTOR_STATUS_STARTING_UP: _ClassVar[FunctionExecutorStatus]
33
+ FUNCTION_EXECUTOR_STATUS_STARTUP_FAILED_CUSTOMER_ERROR: _ClassVar[
34
+ FunctionExecutorStatus
35
+ ]
36
+ FUNCTION_EXECUTOR_STATUS_STARTUP_FAILED_PLATFORM_ERROR: _ClassVar[
37
+ FunctionExecutorStatus
38
+ ]
39
+ FUNCTION_EXECUTOR_STATUS_IDLE: _ClassVar[FunctionExecutorStatus]
40
+ FUNCTION_EXECUTOR_STATUS_RUNNING_TASK: _ClassVar[FunctionExecutorStatus]
41
+ FUNCTION_EXECUTOR_STATUS_UNHEALTHY: _ClassVar[FunctionExecutorStatus]
42
+ FUNCTION_EXECUTOR_STATUS_STOPPING: _ClassVar[FunctionExecutorStatus]
43
+
44
+ class ExecutorStatus(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
45
+ __slots__ = ()
46
+ EXECUTOR_STATUS_UNKNOWN: _ClassVar[ExecutorStatus]
47
+ EXECUTOR_STATUS_STARTING: _ClassVar[ExecutorStatus]
48
+ EXECUTOR_STATUS_RUNNING: _ClassVar[ExecutorStatus]
49
+ EXECUTOR_STATUS_DRAINED: _ClassVar[ExecutorStatus]
50
+ EXECUTOR_STATUS_SHUTTING_DOWN: _ClassVar[ExecutorStatus]
51
+
52
+ GPU_MODEL_UNKNOWN: GPUModel
53
+ GPU_MODEL_NVIDIA_TESLA_T4_16GB: GPUModel
54
+ GPU_MODEL_NVIDIA_TESLA_V100_16GB: GPUModel
55
+ GPU_MODEL_NVIDIA_A10_24GB: GPUModel
56
+ GPU_MODEL_NVIDIA_A6000_48GB: GPUModel
57
+ GPU_MODEL_NVIDIA_A100_SXM4_40GB: GPUModel
58
+ GPU_MODEL_NVIDIA_A100_SXM4_80GB: GPUModel
59
+ GPU_MODEL_NVIDIA_A100_PCI_40GB: GPUModel
60
+ GPU_MODEL_NVIDIA_H100_SXM5_80GB: GPUModel
61
+ GPU_MODEL_NVIDIA_H100_PCI_80GB: GPUModel
62
+ GPU_MODEL_NVIDIA_RTX_6000_24GB: GPUModel
63
+ FUNCTION_EXECUTOR_STATUS_UNKNOWN: FunctionExecutorStatus
64
+ FUNCTION_EXECUTOR_STATUS_STOPPED: FunctionExecutorStatus
65
+ FUNCTION_EXECUTOR_STATUS_STARTING_UP: FunctionExecutorStatus
66
+ FUNCTION_EXECUTOR_STATUS_STARTUP_FAILED_CUSTOMER_ERROR: FunctionExecutorStatus
67
+ FUNCTION_EXECUTOR_STATUS_STARTUP_FAILED_PLATFORM_ERROR: FunctionExecutorStatus
68
+ FUNCTION_EXECUTOR_STATUS_IDLE: FunctionExecutorStatus
69
+ FUNCTION_EXECUTOR_STATUS_RUNNING_TASK: FunctionExecutorStatus
70
+ FUNCTION_EXECUTOR_STATUS_UNHEALTHY: FunctionExecutorStatus
71
+ FUNCTION_EXECUTOR_STATUS_STOPPING: FunctionExecutorStatus
72
+ EXECUTOR_STATUS_UNKNOWN: ExecutorStatus
73
+ EXECUTOR_STATUS_STARTING: ExecutorStatus
74
+ EXECUTOR_STATUS_RUNNING: ExecutorStatus
75
+ EXECUTOR_STATUS_DRAINED: ExecutorStatus
76
+ EXECUTOR_STATUS_SHUTTING_DOWN: ExecutorStatus
77
+
78
+ class GPUResources(_message.Message):
79
+ __slots__ = ("count", "model")
80
+ COUNT_FIELD_NUMBER: _ClassVar[int]
81
+ MODEL_FIELD_NUMBER: _ClassVar[int]
82
+ count: int
83
+ model: GPUModel
84
+ def __init__(
85
+ self, count: _Optional[int] = ..., model: _Optional[_Union[GPUModel, str]] = ...
86
+ ) -> None: ...
87
+
88
+ class HostResources(_message.Message):
89
+ __slots__ = ("cpu_count", "memory_bytes", "disk_bytes", "gpu")
90
+ CPU_COUNT_FIELD_NUMBER: _ClassVar[int]
91
+ MEMORY_BYTES_FIELD_NUMBER: _ClassVar[int]
92
+ DISK_BYTES_FIELD_NUMBER: _ClassVar[int]
93
+ GPU_FIELD_NUMBER: _ClassVar[int]
94
+ cpu_count: int
95
+ memory_bytes: int
96
+ disk_bytes: int
97
+ gpu: GPUResources
98
+ def __init__(
99
+ self,
100
+ cpu_count: _Optional[int] = ...,
101
+ memory_bytes: _Optional[int] = ...,
102
+ disk_bytes: _Optional[int] = ...,
103
+ gpu: _Optional[_Union[GPUResources, _Mapping]] = ...,
104
+ ) -> None: ...
105
+
106
+ class AllowedFunction(_message.Message):
107
+ __slots__ = ("namespace", "graph_name", "function_name", "graph_version")
108
+ NAMESPACE_FIELD_NUMBER: _ClassVar[int]
109
+ GRAPH_NAME_FIELD_NUMBER: _ClassVar[int]
110
+ FUNCTION_NAME_FIELD_NUMBER: _ClassVar[int]
111
+ GRAPH_VERSION_FIELD_NUMBER: _ClassVar[int]
112
+ namespace: str
113
+ graph_name: str
114
+ function_name: str
115
+ graph_version: str
116
+ def __init__(
117
+ self,
118
+ namespace: _Optional[str] = ...,
119
+ graph_name: _Optional[str] = ...,
120
+ function_name: _Optional[str] = ...,
121
+ graph_version: _Optional[str] = ...,
122
+ ) -> None: ...
123
+
124
+ class FunctionExecutorDescription(_message.Message):
125
+ __slots__ = (
126
+ "id",
127
+ "namespace",
128
+ "graph_name",
129
+ "graph_version",
130
+ "function_name",
131
+ "image_uri",
132
+ )
133
+ ID_FIELD_NUMBER: _ClassVar[int]
134
+ NAMESPACE_FIELD_NUMBER: _ClassVar[int]
135
+ GRAPH_NAME_FIELD_NUMBER: _ClassVar[int]
136
+ GRAPH_VERSION_FIELD_NUMBER: _ClassVar[int]
137
+ FUNCTION_NAME_FIELD_NUMBER: _ClassVar[int]
138
+ IMAGE_URI_FIELD_NUMBER: _ClassVar[int]
139
+ id: str
140
+ namespace: str
141
+ graph_name: str
142
+ graph_version: str
143
+ function_name: str
144
+ image_uri: str
145
+ def __init__(
146
+ self,
147
+ id: _Optional[str] = ...,
148
+ namespace: _Optional[str] = ...,
149
+ graph_name: _Optional[str] = ...,
150
+ graph_version: _Optional[str] = ...,
151
+ function_name: _Optional[str] = ...,
152
+ image_uri: _Optional[str] = ...,
153
+ ) -> None: ...
154
+
155
+ class FunctionExecutorState(_message.Message):
156
+ __slots__ = ("description", "status")
157
+ DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
158
+ STATUS_FIELD_NUMBER: _ClassVar[int]
159
+ description: FunctionExecutorDescription
160
+ status: FunctionExecutorStatus
161
+ def __init__(
162
+ self,
163
+ description: _Optional[_Union[FunctionExecutorDescription, _Mapping]] = ...,
164
+ status: _Optional[_Union[FunctionExecutorStatus, str]] = ...,
165
+ ) -> None: ...
166
+
167
+ class ExecutorState(_message.Message):
168
+ __slots__ = (
169
+ "executor_id",
170
+ "executor_status",
171
+ "host_resources",
172
+ "allowed_functions",
173
+ "function_executor_states",
174
+ )
175
+ EXECUTOR_ID_FIELD_NUMBER: _ClassVar[int]
176
+ EXECUTOR_STATUS_FIELD_NUMBER: _ClassVar[int]
177
+ HOST_RESOURCES_FIELD_NUMBER: _ClassVar[int]
178
+ ALLOWED_FUNCTIONS_FIELD_NUMBER: _ClassVar[int]
179
+ FUNCTION_EXECUTOR_STATES_FIELD_NUMBER: _ClassVar[int]
180
+ executor_id: str
181
+ executor_status: ExecutorStatus
182
+ host_resources: HostResources
183
+ allowed_functions: _containers.RepeatedCompositeFieldContainer[AllowedFunction]
184
+ function_executor_states: _containers.RepeatedCompositeFieldContainer[
185
+ FunctionExecutorState
186
+ ]
187
+ def __init__(
188
+ self,
189
+ executor_id: _Optional[str] = ...,
190
+ executor_status: _Optional[_Union[ExecutorStatus, str]] = ...,
191
+ host_resources: _Optional[_Union[HostResources, _Mapping]] = ...,
192
+ allowed_functions: _Optional[
193
+ _Iterable[_Union[AllowedFunction, _Mapping]]
194
+ ] = ...,
195
+ function_executor_states: _Optional[
196
+ _Iterable[_Union[FunctionExecutorState, _Mapping]]
197
+ ] = ...,
198
+ ) -> None: ...
199
+
200
+ class ReportExecutorStateRequest(_message.Message):
201
+ __slots__ = ("executor_state",)
202
+ EXECUTOR_STATE_FIELD_NUMBER: _ClassVar[int]
203
+ executor_state: ExecutorState
204
+ def __init__(
205
+ self, executor_state: _Optional[_Union[ExecutorState, _Mapping]] = ...
206
+ ) -> None: ...
207
+
208
+ class ReportExecutorStateResponse(_message.Message):
209
+ __slots__ = ()
210
+ def __init__(self) -> None: ...
211
+
212
+ class Task(_message.Message):
213
+ __slots__ = (
214
+ "id",
215
+ "namespace",
216
+ "graph_name",
217
+ "graph_version",
218
+ "function_name",
219
+ "graph_invocation_id",
220
+ "input_key",
221
+ "reducer_output_key",
222
+ )
223
+ ID_FIELD_NUMBER: _ClassVar[int]
224
+ NAMESPACE_FIELD_NUMBER: _ClassVar[int]
225
+ GRAPH_NAME_FIELD_NUMBER: _ClassVar[int]
226
+ GRAPH_VERSION_FIELD_NUMBER: _ClassVar[int]
227
+ FUNCTION_NAME_FIELD_NUMBER: _ClassVar[int]
228
+ GRAPH_INVOCATION_ID_FIELD_NUMBER: _ClassVar[int]
229
+ INPUT_KEY_FIELD_NUMBER: _ClassVar[int]
230
+ REDUCER_OUTPUT_KEY_FIELD_NUMBER: _ClassVar[int]
231
+ id: str
232
+ namespace: str
233
+ graph_name: str
234
+ graph_version: str
235
+ function_name: str
236
+ graph_invocation_id: str
237
+ input_key: str
238
+ reducer_output_key: str
239
+ def __init__(
240
+ self,
241
+ id: _Optional[str] = ...,
242
+ namespace: _Optional[str] = ...,
243
+ graph_name: _Optional[str] = ...,
244
+ graph_version: _Optional[str] = ...,
245
+ function_name: _Optional[str] = ...,
246
+ graph_invocation_id: _Optional[str] = ...,
247
+ input_key: _Optional[str] = ...,
248
+ reducer_output_key: _Optional[str] = ...,
249
+ ) -> None: ...
250
+
251
+ class TaskAllocation(_message.Message):
252
+ __slots__ = ("function_executor_id", "task")
253
+ FUNCTION_EXECUTOR_ID_FIELD_NUMBER: _ClassVar[int]
254
+ TASK_FIELD_NUMBER: _ClassVar[int]
255
+ function_executor_id: str
256
+ task: Task
257
+ def __init__(
258
+ self,
259
+ function_executor_id: _Optional[str] = ...,
260
+ task: _Optional[_Union[Task, _Mapping]] = ...,
261
+ ) -> None: ...
262
+
263
+ class GetDesiredExecutorStatesRequest(_message.Message):
264
+ __slots__ = ("executor_id",)
265
+ EXECUTOR_ID_FIELD_NUMBER: _ClassVar[int]
266
+ executor_id: str
267
+ def __init__(self, executor_id: _Optional[str] = ...) -> None: ...
268
+
269
+ class DesiredExecutorState(_message.Message):
270
+ __slots__ = ("function_executors", "task_allocations", "clock")
271
+ FUNCTION_EXECUTORS_FIELD_NUMBER: _ClassVar[int]
272
+ TASK_ALLOCATIONS_FIELD_NUMBER: _ClassVar[int]
273
+ CLOCK_FIELD_NUMBER: _ClassVar[int]
274
+ function_executors: _containers.RepeatedCompositeFieldContainer[
275
+ FunctionExecutorDescription
276
+ ]
277
+ task_allocations: _containers.RepeatedCompositeFieldContainer[TaskAllocation]
278
+ clock: int
279
+ def __init__(
280
+ self,
281
+ function_executors: _Optional[
282
+ _Iterable[_Union[FunctionExecutorDescription, _Mapping]]
283
+ ] = ...,
284
+ task_allocations: _Optional[_Iterable[_Union[TaskAllocation, _Mapping]]] = ...,
285
+ clock: _Optional[int] = ...,
286
+ ) -> None: ...
@@ -0,0 +1,170 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import warnings
4
+
5
+ import grpc
6
+
7
+ from indexify.task_scheduler.proto import (
8
+ task_scheduler_pb2 as indexify_dot_task__scheduler_dot_proto_dot_task__scheduler__pb2,
9
+ )
10
+
11
+ GRPC_GENERATED_VERSION = "1.70.0"
12
+ GRPC_VERSION = grpc.__version__
13
+ _version_not_supported = False
14
+
15
+ try:
16
+ from grpc._utilities import first_version_is_lower
17
+
18
+ _version_not_supported = first_version_is_lower(
19
+ GRPC_VERSION, GRPC_GENERATED_VERSION
20
+ )
21
+ except ImportError:
22
+ _version_not_supported = True
23
+
24
+ if _version_not_supported:
25
+ raise RuntimeError(
26
+ f"The grpc package installed is at version {GRPC_VERSION},"
27
+ + f" but the generated code in indexify/task_scheduler/proto/task_scheduler_pb2_grpc.py depends on"
28
+ + f" grpcio>={GRPC_GENERATED_VERSION}."
29
+ + f" Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}"
30
+ + f" or downgrade your generated code using grpcio-tools<={GRPC_VERSION}."
31
+ )
32
+
33
+
34
+ class TaskSchedulerServiceStub(object):
35
+ """Internal API for scheduling and running tasks on Executors. Executors are acting as clients of this API.
36
+ Server is responsible for scheduling tasks on Executors and Executors are responsible for running the tasks.
37
+ """
38
+
39
+ def __init__(self, channel):
40
+ """Constructor.
41
+
42
+ Args:
43
+ channel: A grpc.Channel.
44
+ """
45
+ self.report_executor_state = channel.unary_unary(
46
+ "/task_scheduler_service.TaskSchedulerService/report_executor_state",
47
+ request_serializer=indexify_dot_task__scheduler_dot_proto_dot_task__scheduler__pb2.ReportExecutorStateRequest.SerializeToString,
48
+ response_deserializer=indexify_dot_task__scheduler_dot_proto_dot_task__scheduler__pb2.ReportExecutorStateResponse.FromString,
49
+ _registered_method=True,
50
+ )
51
+ self.get_desired_executor_states = channel.unary_stream(
52
+ "/task_scheduler_service.TaskSchedulerService/get_desired_executor_states",
53
+ request_serializer=indexify_dot_task__scheduler_dot_proto_dot_task__scheduler__pb2.GetDesiredExecutorStatesRequest.SerializeToString,
54
+ response_deserializer=indexify_dot_task__scheduler_dot_proto_dot_task__scheduler__pb2.DesiredExecutorState.FromString,
55
+ _registered_method=True,
56
+ )
57
+
58
+
59
+ class TaskSchedulerServiceServicer(object):
60
+ """Internal API for scheduling and running tasks on Executors. Executors are acting as clients of this API.
61
+ Server is responsible for scheduling tasks on Executors and Executors are responsible for running the tasks.
62
+ """
63
+
64
+ def report_executor_state(self, request, context):
65
+ """Called by Executor every 5 seconds to report that it's still alive and provide its current state.
66
+
67
+ Missing 3 reports will result in the Executor being deregistered by Server.
68
+ """
69
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
70
+ context.set_details("Method not implemented!")
71
+ raise NotImplementedError("Method not implemented!")
72
+
73
+ def get_desired_executor_states(self, request, context):
74
+ """Called by Executor to open a stream of its desired states. When Server wants Executor to change something
75
+ it puts a message on the stream with the new desired state of the Executor.
76
+
77
+ Depricated HTTP API is used to download the serialized graph and task inputs.
78
+ """
79
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
80
+ context.set_details("Method not implemented!")
81
+ raise NotImplementedError("Method not implemented!")
82
+
83
+
84
+ def add_TaskSchedulerServiceServicer_to_server(servicer, server):
85
+ rpc_method_handlers = {
86
+ "report_executor_state": grpc.unary_unary_rpc_method_handler(
87
+ servicer.report_executor_state,
88
+ request_deserializer=indexify_dot_task__scheduler_dot_proto_dot_task__scheduler__pb2.ReportExecutorStateRequest.FromString,
89
+ response_serializer=indexify_dot_task__scheduler_dot_proto_dot_task__scheduler__pb2.ReportExecutorStateResponse.SerializeToString,
90
+ ),
91
+ "get_desired_executor_states": grpc.unary_stream_rpc_method_handler(
92
+ servicer.get_desired_executor_states,
93
+ request_deserializer=indexify_dot_task__scheduler_dot_proto_dot_task__scheduler__pb2.GetDesiredExecutorStatesRequest.FromString,
94
+ response_serializer=indexify_dot_task__scheduler_dot_proto_dot_task__scheduler__pb2.DesiredExecutorState.SerializeToString,
95
+ ),
96
+ }
97
+ generic_handler = grpc.method_handlers_generic_handler(
98
+ "task_scheduler_service.TaskSchedulerService", rpc_method_handlers
99
+ )
100
+ server.add_generic_rpc_handlers((generic_handler,))
101
+ server.add_registered_method_handlers(
102
+ "task_scheduler_service.TaskSchedulerService", rpc_method_handlers
103
+ )
104
+
105
+
106
+ # This class is part of an EXPERIMENTAL API.
107
+ class TaskSchedulerService(object):
108
+ """Internal API for scheduling and running tasks on Executors. Executors are acting as clients of this API.
109
+ Server is responsible for scheduling tasks on Executors and Executors are responsible for running the tasks.
110
+ """
111
+
112
+ @staticmethod
113
+ def report_executor_state(
114
+ request,
115
+ target,
116
+ options=(),
117
+ channel_credentials=None,
118
+ call_credentials=None,
119
+ insecure=False,
120
+ compression=None,
121
+ wait_for_ready=None,
122
+ timeout=None,
123
+ metadata=None,
124
+ ):
125
+ return grpc.experimental.unary_unary(
126
+ request,
127
+ target,
128
+ "/task_scheduler_service.TaskSchedulerService/report_executor_state",
129
+ indexify_dot_task__scheduler_dot_proto_dot_task__scheduler__pb2.ReportExecutorStateRequest.SerializeToString,
130
+ indexify_dot_task__scheduler_dot_proto_dot_task__scheduler__pb2.ReportExecutorStateResponse.FromString,
131
+ options,
132
+ channel_credentials,
133
+ insecure,
134
+ call_credentials,
135
+ compression,
136
+ wait_for_ready,
137
+ timeout,
138
+ metadata,
139
+ _registered_method=True,
140
+ )
141
+
142
+ @staticmethod
143
+ def get_desired_executor_states(
144
+ request,
145
+ target,
146
+ options=(),
147
+ channel_credentials=None,
148
+ call_credentials=None,
149
+ insecure=False,
150
+ compression=None,
151
+ wait_for_ready=None,
152
+ timeout=None,
153
+ metadata=None,
154
+ ):
155
+ return grpc.experimental.unary_stream(
156
+ request,
157
+ target,
158
+ "/task_scheduler_service.TaskSchedulerService/get_desired_executor_states",
159
+ indexify_dot_task__scheduler_dot_proto_dot_task__scheduler__pb2.GetDesiredExecutorStatesRequest.SerializeToString,
160
+ indexify_dot_task__scheduler_dot_proto_dot_task__scheduler__pb2.DesiredExecutorState.FromString,
161
+ options,
162
+ channel_credentials,
163
+ insecure,
164
+ call_credentials,
165
+ compression,
166
+ wait_for_ready,
167
+ timeout,
168
+ metadata,
169
+ _registered_method=True,
170
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: indexify
3
- Version: 0.3.12
3
+ Version: 0.3.14
4
4
  Summary: Open Source Indexify components and helper tools
5
5
  Home-page: https://github.com/tensorlakeai/indexify
6
6
  License: Apache 2.0
@@ -1,14 +1,14 @@
1
- indexify/cli/cli.py,sha256=SQOVWIr-ZNPilFAVQw1qRC42V8T0VEbVt_E1eClsnpM,10946
1
+ indexify/cli/cli.py,sha256=Y0PwJKhc3MWOV4Sw9c01WjS0M43QSMcOP6IVMKUnjME,11027
2
2
  indexify/executor/README.md,sha256=ozC6_hMkhQQNVCMEpBxwiUALz6lwErPQxNxQfQDqnG4,2029
3
3
  indexify/executor/api_objects.py,sha256=TaYwDoo7EjuLBusxH512-KdvAJRtBwbEP2IObWraabU,1100
4
- indexify/executor/downloader.py,sha256=XjaGCzsGM3ex2HxbKGkIsB50OhlXgdnywWGCjUBdW2k,8127
5
- indexify/executor/executor.py,sha256=r5do6k7Izp9SIzebgOn2psYjzKZmNqHx3iuTW3vWrhg,10035
6
- indexify/executor/function_executor/function_executor.py,sha256=BxNhsW0uXxKjdKT5ixMAyIo5F7otdIT2c0FMQ09Lsrs,10234
7
- indexify/executor/function_executor/function_executor_state.py,sha256=IWPLWa7LaN0Eq8PDu-0kFzkuKJB0COShu7wCO1oyiNA,3141
8
- indexify/executor/function_executor/function_executor_states_container.py,sha256=x4hlF7ZBWswk9dkA06Rvgeqar6H9TWjZ7Etyy2CzBDE,2682
9
- indexify/executor/function_executor/health_checker.py,sha256=YT24ajPLdYOpdt2UNyJGviGbivCDXIJpeQOxQofcl50,3258
4
+ indexify/executor/downloader.py,sha256=LkvAXfKxddnDzgfmwHcpDB_n795-eVKzn-hLjq4nUEM,9412
5
+ indexify/executor/executor.py,sha256=stF2gTi0b2jUf5jtogh4rFz3jC1-jMOyhk9eaUno4dg,15200
6
+ indexify/executor/function_executor/function_executor.py,sha256=sQ5FOdrjybDDsjagghlfjV06IXTpWWDBSTHqQXI-w9M,11245
7
+ indexify/executor/function_executor/function_executor_state.py,sha256=_mqWPHI442ak2hwo21BbDclXIUhjg_M7tfg7lyOoxg8,3666
8
+ indexify/executor/function_executor/function_executor_states_container.py,sha256=Z4tMQfOoGqaWotQXTIBvsujXkXAAw2UGsIxUnlUm8Wo,3067
9
+ indexify/executor/function_executor/health_checker.py,sha256=qUUpG4oeVsPLibiCspAiRm-2Ldg46ulnnpj9EBXr1NQ,3916
10
10
  indexify/executor/function_executor/invocation_state_client.py,sha256=p-xgM4__cHR1ApvMV9hShrGWee_Je0VDhICZUGjpQY4,9644
11
- indexify/executor/function_executor/metrics/function_executor.py,sha256=y36cgZEp949HPCBVFF6uFQIxk2PvnSI74QSbxcAalI4,5659
11
+ indexify/executor/function_executor/metrics/function_executor.py,sha256=KHzf4cMh_HqnOAE7TZ6_oIqUH3nExOkt9LSekAEN69w,6304
12
12
  indexify/executor/function_executor/metrics/function_executor_state.py,sha256=M7cMA7JY8_8FW9xjuSqtp6o2xxUgB31LJowo7kzcexg,352
13
13
  indexify/executor/function_executor/metrics/function_executor_state_container.py,sha256=6rrAfml-TivjkHatCM4BLY7jmVs523Wzb6QIysncc-0,302
14
14
  indexify/executor/function_executor/metrics/health_checker.py,sha256=EaeIYJPrQ-qqNMGZVGkvjPoeQSCl4FzPKXEv3Cly1NE,456
@@ -16,12 +16,12 @@ indexify/executor/function_executor/metrics/invocation_state_client.py,sha256=6F
16
16
  indexify/executor/function_executor/metrics/single_task_runner.py,sha256=7BJlGkdPGKeufMs3zWNO_1GRVzjINRY5rW3Mp4oWWec,805
17
17
  indexify/executor/function_executor/server/client_configuration.py,sha256=gOywMus0cotlX6NKIadEJwvOmBE-LbGE_wvoMi5-HzY,994
18
18
  indexify/executor/function_executor/server/function_executor_server.py,sha256=_DLivLDikupZusRk8gVWDk7fWPT9XjZ4un1yWSlOObs,883
19
- indexify/executor/function_executor/server/function_executor_server_factory.py,sha256=oBEuOwuGsZrvOZsv9v8M4JEtfproirE-cH28XCr0HoY,1739
19
+ indexify/executor/function_executor/server/function_executor_server_factory.py,sha256=Xw-t6ZK-nAQUaRHf-peOnHP_CvLVH22oBYecEZ34GRw,1842
20
20
  indexify/executor/function_executor/server/subprocess_function_executor_server.py,sha256=JekDOqF7oFD4J6zcN3xB0Dxd1cgpEXMOsb_rKZOeBlI,668
21
21
  indexify/executor/function_executor/server/subprocess_function_executor_server_factory.py,sha256=xbH0-73tBM-i0dh1x_k0fDrNAi8WgDKjqiQ9xveU4Zg,4214
22
- indexify/executor/function_executor/single_task_runner.py,sha256=Td28vF6pNemKZEs4mNWeLKzy22XRmmMVgp2ipYO_OXU,9262
22
+ indexify/executor/function_executor/single_task_runner.py,sha256=l02KDO4s7KMZxm2AazKC9SWqKBdy_mmrXTfZEyhNXAU,10205
23
23
  indexify/executor/function_executor/task_input.py,sha256=wSrHR4m0juiGClQyeVdhRC37QzDt6Rrjq-ZXJkfBi9k,584
24
- indexify/executor/function_executor/task_output.py,sha256=Qg7vojYi0WmeHRf2qlC-5h46jcwis13EgiN63OmWpcg,1229
24
+ indexify/executor/function_executor/task_output.py,sha256=SQJSlrknB7Ylf5IOeINfBEgiplS5hAPJh1hYulhyvfU,1962
25
25
  indexify/executor/metrics/downloader.py,sha256=lctPh8xjkXeLEFJnl1hNrD1yEhLhIl5sggsR4Yoe_Zc,2746
26
26
  indexify/executor/metrics/executor.py,sha256=ua-Vv_k1CB4juJdF7tEBQbBMksqWAA3iXKKMKXZUCLk,2369
27
27
  indexify/executor/metrics/task_fetcher.py,sha256=iJEwCLzYr2cuz7hRvNiqaa2nvQP4OrA0hm0iJY0YKG0,736
@@ -37,10 +37,16 @@ indexify/executor/monitoring/prometheus_metrics_handler.py,sha256=KiGqSf7rkXTfbD
37
37
  indexify/executor/monitoring/server.py,sha256=yzdYhcxnmY6uTQUMt3vatF5jilN52ZtfFseOmHyQpTo,1254
38
38
  indexify/executor/monitoring/startup_probe_handler.py,sha256=zXXsBU15SMlBx1bSFpxWDfed1VHtKKnwvLQ8-frpG98,425
39
39
  indexify/executor/runtime_probes.py,sha256=bo6Dq6AGZpJH099j0DHtVSDEH80tv3j9MXf3VXSx_p8,2182
40
+ indexify/executor/state_reconciler.py,sha256=hIO3BDjXJKicvS7Sgdd5eht9nTsZtleZi7beBPI8d8E,11764
41
+ indexify/executor/state_reporter.py,sha256=83ImGX4b78bEDBJzTDsiEhSd8780a0uob5v6RgA2kzA,4514
40
42
  indexify/executor/task_fetcher.py,sha256=NpFfHgaY99bSL-K2D5kcDAMNUG2FArq0-qF_mgF-LBQ,3375
41
- indexify/executor/task_reporter.py,sha256=t7FzSKV7fG1fEtxyTcFh-sTWZ8WXApbG-qXaAMq_gRQ,7363
42
- indexify/executor/task_runner.py,sha256=tcS7hHdSVQexC3XEIsDTwX51bJK4iSQqC8CbWeNoud0,5590
43
- indexify-0.3.12.dist-info/METADATA,sha256=OkLYjGB3yomMTO21dsw1YR5q3swzqRsaWvsOzrPQTKg,1158
44
- indexify-0.3.12.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
45
- indexify-0.3.12.dist-info/entry_points.txt,sha256=GU9wmsgvN7nQw3N2X0PMYn1RSvF6CrhH9RuC2D8d3Gk,53
46
- indexify-0.3.12.dist-info/RECORD,,
43
+ indexify/executor/task_reporter.py,sha256=mYgwozUO95PEwYMmeeIS0-HfMrO4z3Nhy6IduMsMahM,7367
44
+ indexify/executor/task_runner.py,sha256=ggV1IcOI2x4IWzzsulmClJP4mcgAA4z64W0Beo2GM2U,5938
45
+ indexify/task_scheduler/proto/task_scheduler.proto,sha256=6zpGLqhITlbXtwYQwqZms7Ok5FYhjF6tWA1h-QbktSQ,5410
46
+ indexify/task_scheduler/proto/task_scheduler_pb2.py,sha256=NeDSktCe7cs6E-_W_cL25qbIgp9uBJccv0bgts2Oufo,8767
47
+ indexify/task_scheduler/proto/task_scheduler_pb2.pyi,sha256=MX4oyoqNQfhikOBSE7bnMLvFbvmdUqL3aBlEsC5Uo24,10620
48
+ indexify/task_scheduler/proto/task_scheduler_pb2_grpc.py,sha256=a-KpbGWSGZIZ9F35OgwEjp25C4jySf5PW8BOf8UFR2A,7144
49
+ indexify-0.3.14.dist-info/METADATA,sha256=M1Q7n7lwImSZ9c5J0SAMp5Agu79Ys9r0Nt9gQRFTdCs,1158
50
+ indexify-0.3.14.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
51
+ indexify-0.3.14.dist-info/entry_points.txt,sha256=GU9wmsgvN7nQw3N2X0PMYn1RSvF6CrhH9RuC2D8d3Gk,53
52
+ indexify-0.3.14.dist-info/RECORD,,