feldera 0.29.0__tar.gz → 0.30.0__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.
Potentially problematic release.
This version of feldera might be problematic. Click here for more details.
- {feldera-0.29.0 → feldera-0.30.0}/PKG-INFO +1 -1
- {feldera-0.29.0 → feldera-0.30.0}/feldera/enums.py +6 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/rest/feldera_client.py +11 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera.egg-info/PKG-INFO +1 -1
- {feldera-0.29.0 → feldera-0.30.0}/pyproject.toml +1 -1
- {feldera-0.29.0 → feldera-0.30.0}/README.md +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/__init__.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/_callback_runner.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/_helpers.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/output_handler.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/pipeline.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/pipeline_builder.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/rest/__init__.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/rest/_httprequests.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/rest/config.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/rest/errors.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/rest/pipeline.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/rest/sql_table.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/rest/sql_view.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera/runtime_config.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera.egg-info/SOURCES.txt +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera.egg-info/dependency_links.txt +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera.egg-info/requires.txt +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/feldera.egg-info/top_level.txt +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/setup.cfg +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/tests/test_pipeline.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/tests/test_pipeline_builder.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/tests/test_udf.py +0 -0
- {feldera-0.29.0 → feldera-0.30.0}/tests/test_variant.py +0 -0
|
@@ -175,6 +175,12 @@ class PipelineStatus(Enum):
|
|
|
175
175
|
`PipelineStatus.SHUTDOWN` state.
|
|
176
176
|
"""
|
|
177
177
|
|
|
178
|
+
UNAVAILABLE = 9
|
|
179
|
+
"""
|
|
180
|
+
The pipeline was at least once initialized, but in the most recent status check either
|
|
181
|
+
could not be reached or returned it is not yet ready.
|
|
182
|
+
"""
|
|
183
|
+
|
|
178
184
|
@staticmethod
|
|
179
185
|
def from_str(value):
|
|
180
186
|
for member in PipelineStatus:
|
|
@@ -286,6 +286,17 @@ class FelderaClient:
|
|
|
286
286
|
|
|
287
287
|
raise RuntimeError(f"Failed to shutdown pipeline {pipeline_name}")
|
|
288
288
|
|
|
289
|
+
def checkpoint_pipeline(self, pipeline_name: str):
|
|
290
|
+
"""
|
|
291
|
+
Checkpoint a fault-tolerant pipeline
|
|
292
|
+
|
|
293
|
+
:param pipeline_name: The name of the pipeline to checkpoint
|
|
294
|
+
"""
|
|
295
|
+
|
|
296
|
+
self.http.post(
|
|
297
|
+
path=f"/pipelines/{pipeline_name}/checkpoint",
|
|
298
|
+
)
|
|
299
|
+
|
|
289
300
|
def push_to_pipeline(
|
|
290
301
|
self,
|
|
291
302
|
pipeline_name: str,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|