indexify 0.3.28__py3-none-any.whl → 0.3.29__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.
- indexify/cli/cli.py +12 -2
- {indexify-0.3.28.dist-info → indexify-0.3.29.dist-info}/METADATA +1 -1
- {indexify-0.3.28.dist-info → indexify-0.3.29.dist-info}/RECORD +5 -5
- {indexify-0.3.28.dist-info → indexify-0.3.29.dist-info}/WHEEL +0 -0
- {indexify-0.3.28.dist-info → indexify-0.3.29.dist-info}/entry_points.txt +0 -0
indexify/cli/cli.py
CHANGED
@@ -131,6 +131,16 @@ def executor(
|
|
131
131
|
"Specified as <key>=<value>",
|
132
132
|
),
|
133
133
|
] = [],
|
134
|
+
enable_grpc_state_reconciler: Annotated[
|
135
|
+
bool,
|
136
|
+
typer.Option(
|
137
|
+
"--enable-grpc-state-reconciler",
|
138
|
+
help=(
|
139
|
+
"(exprimental) Enable gRPC state reconciler that will reconcile the state of the Function Executors and Task Allocations\n"
|
140
|
+
"with the desired state provided by Server. Required --grpc-server-addr to be set."
|
141
|
+
),
|
142
|
+
),
|
143
|
+
] = False,
|
134
144
|
):
|
135
145
|
if dev:
|
136
146
|
compact_tracebacks: bool = os.getenv("INDEXIFY_COMPACT_TRACEBACKS", "1") == "1"
|
@@ -165,7 +175,7 @@ def executor(
|
|
165
175
|
dev_mode=dev,
|
166
176
|
monitoring_server_host=monitoring_server_host,
|
167
177
|
monitoring_server_port=monitoring_server_port,
|
168
|
-
enable_grpc_state_reconciler=
|
178
|
+
enable_grpc_state_reconciler=enable_grpc_state_reconciler,
|
169
179
|
)
|
170
180
|
|
171
181
|
executor_cache = Path(executor_cache).expanduser().absolute()
|
@@ -225,7 +235,7 @@ def executor(
|
|
225
235
|
config_path=config_path,
|
226
236
|
monitoring_server_host=monitoring_server_host,
|
227
237
|
monitoring_server_port=monitoring_server_port,
|
228
|
-
enable_grpc_state_reconciler=
|
238
|
+
enable_grpc_state_reconciler=enable_grpc_state_reconciler,
|
229
239
|
blob_store=blob_store,
|
230
240
|
host_resources_provider=host_resources_provider,
|
231
241
|
).run()
|
@@ -1,4 +1,4 @@
|
|
1
|
-
indexify/cli/cli.py,sha256=
|
1
|
+
indexify/cli/cli.py,sha256=_FSY-HnSFm2fY2ppg5UTqrXq5zBptzw3cRcGZFkYQGA,9804
|
2
2
|
indexify/executor/README.md,sha256=ozC6_hMkhQQNVCMEpBxwiUALz6lwErPQxNxQfQDqnG4,2029
|
3
3
|
indexify/executor/api_objects.py,sha256=kHx5gKPwM0Rm64Ea__kPFwuarStX0u_9uaE7vV5M5z8,2222
|
4
4
|
indexify/executor/blob_store/blob_store.py,sha256=XViw_KRfFSNqwcFYwMZixZF-EYCjXK2AQHdt0xh4UVo,2368
|
@@ -62,7 +62,7 @@ indexify/proto/executor_api.proto,sha256=QMbYqwjjC7ujOecQf9VT9OzI6H_f6wdafCt1lBh
|
|
62
62
|
indexify/proto/executor_api_pb2.py,sha256=R74YKjzxD9o_SQgamySlsyfMjUEXMXmIONXL0y0DI8Y,15109
|
63
63
|
indexify/proto/executor_api_pb2.pyi,sha256=0DlfrG6TILJl9g_hVcyygxRpZk6KWfp7rnuiFT3FYQM,19784
|
64
64
|
indexify/proto/executor_api_pb2_grpc.py,sha256=GGiDtyQlA2382E_ZyKUBYcWNEJHH_RlulieStKfkJXI,9514
|
65
|
-
indexify-0.3.
|
66
|
-
indexify-0.3.
|
67
|
-
indexify-0.3.
|
68
|
-
indexify-0.3.
|
65
|
+
indexify-0.3.29.dist-info/METADATA,sha256=FLJLhnVYJDWtEU3L6SGfHQDSNe9TdPCZjt-lLqVKYIM,1237
|
66
|
+
indexify-0.3.29.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
67
|
+
indexify-0.3.29.dist-info/entry_points.txt,sha256=GU9wmsgvN7nQw3N2X0PMYn1RSvF6CrhH9RuC2D8d3Gk,53
|
68
|
+
indexify-0.3.29.dist-info/RECORD,,
|
File without changes
|
File without changes
|