indexify 0.3.28__tar.gz → 0.3.29__tar.gz

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.
Files changed (67) hide show
  1. {indexify-0.3.28 → indexify-0.3.29}/PKG-INFO +1 -1
  2. {indexify-0.3.28 → indexify-0.3.29}/pyproject.toml +1 -1
  3. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/cli/cli.py +12 -2
  4. {indexify-0.3.28 → indexify-0.3.29}/README.md +0 -0
  5. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/README.md +0 -0
  6. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/api_objects.py +0 -0
  7. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/blob_store/blob_store.py +0 -0
  8. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/blob_store/local_fs_blob_store.py +0 -0
  9. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/blob_store/metrics/blob_store.py +0 -0
  10. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/blob_store/s3_blob_store.py +0 -0
  11. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/downloader.py +0 -0
  12. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/executor.py +0 -0
  13. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/executor_flavor.py +0 -0
  14. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/function_executor.py +0 -0
  15. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/function_executor_state.py +0 -0
  16. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/function_executor_states_container.py +0 -0
  17. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/function_executor_status.py +0 -0
  18. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/health_checker.py +0 -0
  19. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/invocation_state_client.py +0 -0
  20. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/metrics/function_executor.py +0 -0
  21. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/metrics/function_executor_state.py +0 -0
  22. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/metrics/function_executor_state_container.py +0 -0
  23. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/metrics/health_checker.py +0 -0
  24. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/metrics/invocation_state_client.py +0 -0
  25. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/metrics/single_task_runner.py +0 -0
  26. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/server/client_configuration.py +0 -0
  27. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/server/function_executor_server.py +0 -0
  28. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/server/function_executor_server_factory.py +0 -0
  29. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/server/subprocess_function_executor_server.py +0 -0
  30. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/server/subprocess_function_executor_server_factory.py +0 -0
  31. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/single_task_runner.py +0 -0
  32. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/task_input.py +0 -0
  33. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/function_executor/task_output.py +0 -0
  34. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/grpc/channel_manager.py +0 -0
  35. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/grpc/function_executor_controller.py +0 -0
  36. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/grpc/metrics/channel_manager.py +0 -0
  37. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/grpc/metrics/state_reconciler.py +0 -0
  38. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/grpc/metrics/state_reporter.py +0 -0
  39. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/grpc/metrics/task_controller.py +0 -0
  40. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/grpc/state_reconciler.py +0 -0
  41. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/grpc/state_reporter.py +0 -0
  42. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/grpc/task_controller.py +0 -0
  43. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/host_resources/host_resources.py +0 -0
  44. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/host_resources/nvidia_gpu.py +0 -0
  45. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/host_resources/nvidia_gpu_allocator.py +0 -0
  46. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/metrics/downloader.py +0 -0
  47. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/metrics/executor.py +0 -0
  48. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/metrics/task_fetcher.py +0 -0
  49. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/metrics/task_reporter.py +0 -0
  50. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/metrics/task_runner.py +0 -0
  51. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/monitoring/function_allowlist.py +0 -0
  52. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/monitoring/handler.py +0 -0
  53. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/monitoring/health_check_handler.py +0 -0
  54. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/monitoring/health_checker/generic_health_checker.py +0 -0
  55. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/monitoring/health_checker/health_checker.py +0 -0
  56. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/monitoring/metrics.py +0 -0
  57. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/monitoring/prometheus_metrics_handler.py +0 -0
  58. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/monitoring/server.py +0 -0
  59. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/monitoring/startup_probe_handler.py +0 -0
  60. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/runtime_probes.py +0 -0
  61. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/task_fetcher.py +0 -0
  62. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/task_reporter.py +0 -0
  63. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/executor/task_runner.py +0 -0
  64. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/proto/executor_api.proto +0 -0
  65. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/proto/executor_api_pb2.py +0 -0
  66. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/proto/executor_api_pb2.pyi +0 -0
  67. {indexify-0.3.28 → indexify-0.3.29}/src/indexify/proto/executor_api_pb2_grpc.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: indexify
3
- Version: 0.3.28
3
+ Version: 0.3.29
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,7 +1,7 @@
1
1
  [tool.poetry]
2
2
  name = "indexify"
3
3
  # Incremented if any of the components provided in this packages are updated.
4
- version = "0.3.28"
4
+ version = "0.3.29"
5
5
  description = "Open Source Indexify components and helper tools"
6
6
  authors = ["Tensorlake Inc. <support@tensorlake.ai>"]
7
7
  license = "Apache 2.0"
@@ -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=True,
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=True,
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()
File without changes