manta-node 0.5b0__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.
- manta_node/__init__.py +5 -0
- manta_node/__main__.py +57 -0
- manta_node/cli/__init__.py +6 -0
- manta_node/cli/commands/__init__.py +21 -0
- manta_node/cli/commands/cluster.py +419 -0
- manta_node/cli/commands/config.py +490 -0
- manta_node/cli/commands/logs.py +168 -0
- manta_node/cli/commands/start.py +459 -0
- manta_node/cli/commands/status.py +204 -0
- manta_node/cli/commands/stop.py +253 -0
- manta_node/cli/config_manager.py +139 -0
- manta_node/cli/main.py +133 -0
- manta_node/cli/version.py +106 -0
- manta_node/domain/__init__.py +8 -0
- manta_node/domain/task_lifecycle.py +90 -0
- manta_node/infrastructure/__init__.py +13 -0
- manta_node/infrastructure/config/__init__.py +31 -0
- manta_node/infrastructure/config/node_config_manager.py +918 -0
- manta_node/infrastructure/container/__init__.py +11 -0
- manta_node/infrastructure/container/docker_adapter.py +253 -0
- manta_node/infrastructure/container/image_executor.py +222 -0
- manta_node/infrastructure/container/manager.py +549 -0
- manta_node/infrastructure/filesystem/__init__.py +7 -0
- manta_node/infrastructure/filesystem/dataset_manager.py +469 -0
- manta_node/infrastructure/grpc/__init__.py +11 -0
- manta_node/infrastructure/grpc/client.py +373 -0
- manta_node/infrastructure/grpc/local_servicer.py +151 -0
- manta_node/infrastructure/grpc/world_servicer.py +284 -0
- manta_node/infrastructure/metrics/__init__.py +10 -0
- manta_node/infrastructure/metrics/collector.py +94 -0
- manta_node/infrastructure/metrics/metrics_collector.py +351 -0
- manta_node/infrastructure/mqtt/__init__.py +7 -0
- manta_node/infrastructure/mqtt/command_handler.py +450 -0
- manta_node/node_orchestrator.py +462 -0
- manta_node/task_manager.py +677 -0
- manta_node/tasks.py +273 -0
- manta_node/utils.py +52 -0
- manta_node-0.5b0.dist-info/METADATA +794 -0
- manta_node-0.5b0.dist-info/RECORD +43 -0
- manta_node-0.5b0.dist-info/WHEEL +5 -0
- manta_node-0.5b0.dist-info/entry_points.txt +2 -0
- manta_node-0.5b0.dist-info/licenses/LICENSE +683 -0
- manta_node-0.5b0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
manta_node/__init__.py,sha256=bgGWXH3yQVhNf0v1ZGUBAy5Y51fqb0Y-EaLnocbcino,153
|
|
2
|
+
manta_node/__main__.py,sha256=0VzbY1KfezaARZDuCBc7Th1GO_-BnKTK8eDEXhgP5J4,1731
|
|
3
|
+
manta_node/node_orchestrator.py,sha256=0VMBsZSMQiIe9L-Bd7Jn4avNpNyDCMa1kyPSTgRiOes,17336
|
|
4
|
+
manta_node/task_manager.py,sha256=pU7lOpjJKGOmS6gEym5tJ3Jln5HcuRRkg1NOk7o8S1o,24448
|
|
5
|
+
manta_node/tasks.py,sha256=aj2AUCgsfkKpP2_sBUudP_TdkwVDMn_q2r2Au0YnTWQ,6788
|
|
6
|
+
manta_node/utils.py,sha256=gkYRB7fylk1jy1sm7nKU7o8eadGxn0AX4IjCHT6Wzuw,1179
|
|
7
|
+
manta_node/cli/__init__.py,sha256=arzO3mXDJ-E2yeeytbZfN7mCswwxdQ43_QjyeL2E5yE,134
|
|
8
|
+
manta_node/cli/config_manager.py,sha256=FJ-yztHIoYRjvmbC0Cvh4ukFyZP0opvarFkSjat8kxs,4443
|
|
9
|
+
manta_node/cli/main.py,sha256=BzdkPh6Bk9ul2dKh49mzY3OH4PlrqfagVETvNshaBAQ,4153
|
|
10
|
+
manta_node/cli/version.py,sha256=QzzuK3uGrYb4gt3RO01vpuWk21I2R-7FoO7XANamIvk,3057
|
|
11
|
+
manta_node/cli/commands/__init__.py,sha256=GKLOURXZqec5B3H3EiwX41xDISGg6cO_kCueoyZvt0Q,505
|
|
12
|
+
manta_node/cli/commands/cluster.py,sha256=MwO9imczDqfzojX54jaQKL4Iy3D_4J3rntL5_T26na4,14255
|
|
13
|
+
manta_node/cli/commands/config.py,sha256=Hpnuj8QA-FjdVS0iT8n5zgiGjZ0LgYP9_8f64lEoMyM,16588
|
|
14
|
+
manta_node/cli/commands/logs.py,sha256=i0QtWLcGshxZpPbkCxKqF8icX70T0MM_15FIuOQZ5Zk,5297
|
|
15
|
+
manta_node/cli/commands/start.py,sha256=49kvB6p01nBTp0yqLX36RiXeEccGYTcl9YMcB2sI_9o,16233
|
|
16
|
+
manta_node/cli/commands/status.py,sha256=9YYUaelmQJWqh6FbVuy6y2y1lvjoPIkA2d18JU0PHls,6430
|
|
17
|
+
manta_node/cli/commands/stop.py,sha256=mcO8AMtaPkpNFEy6lVIe4fvNFJSEkheFdxkj1ySiYaI,7719
|
|
18
|
+
manta_node/domain/__init__.py,sha256=uyJXDf0QgfGCsXLMggqKCB5QV9oneYJ4iM-REaJGXDM,217
|
|
19
|
+
manta_node/domain/task_lifecycle.py,sha256=bnmarFdgrRoGkDeDlDj6OSOoCT8-qg00OMrny30stNI,3248
|
|
20
|
+
manta_node/infrastructure/__init__.py,sha256=yM60jKhdaD18BOsLb-0aR9D2XxGvrTnV92oOT7Kor2w,297
|
|
21
|
+
manta_node/infrastructure/config/__init__.py,sha256=jbRzb1c0RohpF83WOwtDpe19dBXVfbZYF3SoOaESh6k,617
|
|
22
|
+
manta_node/infrastructure/config/node_config_manager.py,sha256=iAzMWPjs2AWTxwDLAdCK8GpMMw_14QOzX11hvQMnSvY,30414
|
|
23
|
+
manta_node/infrastructure/container/__init__.py,sha256=EO4SndUwmXrHczM4qkleUbxC7lTGz3c3Hd3iGrPg6D8,262
|
|
24
|
+
manta_node/infrastructure/container/docker_adapter.py,sha256=eEUVpJSuDxI-9XahIxnLHeoyHE-G-Q-7avQVaLxtAIM,6990
|
|
25
|
+
manta_node/infrastructure/container/image_executor.py,sha256=hX6-bBjwhSxX5nO6AWvTXq0Y6THa34NmKpWkJJAsptI,8548
|
|
26
|
+
manta_node/infrastructure/container/manager.py,sha256=L4xfVQZ7d9Qd5MQfNoxzQF_TYrWnfdrg7VH5JqRNv5s,17973
|
|
27
|
+
manta_node/infrastructure/filesystem/__init__.py,sha256=nf6Fakp3wuFKjSAm_oihI6WE_yyUY6Uelr7A1GwSvXs,145
|
|
28
|
+
manta_node/infrastructure/filesystem/dataset_manager.py,sha256=lCcsLdDHM-rRfhndpD9fQ56rPKYcuel-p3qx8nUxffE,14894
|
|
29
|
+
manta_node/infrastructure/grpc/__init__.py,sha256=w2lG41CUq4yFrmfjgtvJ0HWZfirlynPvdTYbqJZBEx4,254
|
|
30
|
+
manta_node/infrastructure/grpc/client.py,sha256=jNrlJRX3VIBfmCfid2s_6aCOYx_7XWRGvln_yHEvIE4,9996
|
|
31
|
+
manta_node/infrastructure/grpc/local_servicer.py,sha256=azSMoyJWoMVuFwCfDnX0XD_KEmJstBUy1pDqnb4gwOs,4153
|
|
32
|
+
manta_node/infrastructure/grpc/world_servicer.py,sha256=pk5P5cXXSmpUxer3A-cNsBU7AP5uC353HTu2g4hSqjU,8212
|
|
33
|
+
manta_node/infrastructure/metrics/__init__.py,sha256=ODGAj9s63F5jba2c3dQRMfNK6I4WvMdcJUS_xApUN5Y,272
|
|
34
|
+
manta_node/infrastructure/metrics/collector.py,sha256=nhFPAbjA04ye3UaGN95_zdpf9hLs2lrMXwOwKlFKYsI,3070
|
|
35
|
+
manta_node/infrastructure/metrics/metrics_collector.py,sha256=jhEocAPWS6xgbNvcBBiEB9cAN_9hEGssZJXoysQzWOk,10518
|
|
36
|
+
manta_node/infrastructure/mqtt/__init__.py,sha256=riXo1sXgO4YV6DHCmWRqK61BAmuGLdHiVdQFunAJadA,140
|
|
37
|
+
manta_node/infrastructure/mqtt/command_handler.py,sha256=2kYl-1ojbv_NbgMfoFPPTA-snWIYYXwprevurH7SF84,17094
|
|
38
|
+
manta_node-0.5b0.dist-info/licenses/LICENSE,sha256=P5HojupjKoAusNtHqWOvO-YFolwLFWQ7Uq0XVKK9nFQ,35291
|
|
39
|
+
manta_node-0.5b0.dist-info/METADATA,sha256=AynI8BZsD9IBGL1KMDUJmIJLMXEqgHrf1a1z-nCvE-s,44647
|
|
40
|
+
manta_node-0.5b0.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
|
|
41
|
+
manta_node-0.5b0.dist-info/entry_points.txt,sha256=C_zcw6mdmztNxVUZGLZ83UH5TwcSuqb2C-rB4e2CQoc,56
|
|
42
|
+
manta_node-0.5b0.dist-info/top_level.txt,sha256=nbT5J5WETuXM9UPoQckl29uUOq8wMYdRb9QDx5kAFeo,11
|
|
43
|
+
manta_node-0.5b0.dist-info/RECORD,,
|