feldera 0.29.0__py3-none-any.whl → 0.30.0__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.

Potentially problematic release.


This version of feldera might be problematic. Click here for more details.

feldera/enums.py CHANGED
@@ -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,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: feldera
3
- Version: 0.29.0
3
+ Version: 0.30.0
4
4
  Summary: The feldera python client
5
5
  Author-email: Abhinav <abhinav.gyawali@feldera.com>
6
6
  License: MIT
@@ -1,7 +1,7 @@
1
1
  feldera/__init__.py,sha256=PxkgCtEAuFwo4u8NGEDio-bF3M-GnbeV45tAQVoBbqE,297
2
2
  feldera/_callback_runner.py,sha256=Tdf6BXN4zppyoy8t_y-Ooa3B0wEfvyezMHU9jxY2ZhA,4713
3
3
  feldera/_helpers.py,sha256=TuaJPQdAnRV9K5bG7-DCAr45b2JxsZyrwkZBJf1806M,2684
4
- feldera/enums.py,sha256=ZPQa-RE2G2qb9YsDSQOOyo87yisQ0SsOv7yyFh9cGzU,6061
4
+ feldera/enums.py,sha256=pdidN0KsYDruQRIDusdcklVsx2NW9sMXYfo9-kUqtak,6247
5
5
  feldera/output_handler.py,sha256=64J3ljhOaKIhxdjOKYi-BUz_HnMwROfmN8eE-btYygU,1930
6
6
  feldera/pipeline.py,sha256=jwgpF4zNwNU0ca7TluFfALq19Z495LuM9tTujapuG_A,15940
7
7
  feldera/pipeline_builder.py,sha256=FzpoBlMGPmN76uxLQ768ISI6f3N5jkGriune8jZMkJA,3688
@@ -10,11 +10,11 @@ feldera/rest/__init__.py,sha256=Eg-EKUU3RSTDcdxTR_7wNDnCly8VpXEzsZCQUmf-y2M,308
10
10
  feldera/rest/_httprequests.py,sha256=y3RxFn4BCTKbUztO1LN2CWXgGA93dIIV5VLdyiWQWuQ,6181
11
11
  feldera/rest/config.py,sha256=84Lj2QX6SYNZJdBfrCHPMh29Nj4MY7nRB-uddytx_ok,795
12
12
  feldera/rest/errors.py,sha256=b4i2JjrbSmej7jdko_FL8UeXklLKenSipwMT80jowaM,1720
13
- feldera/rest/feldera_client.py,sha256=wQLcRDo0thPx90_9T2vNzMEhx_gixwwLLIjkSEhnP9w,16629
13
+ feldera/rest/feldera_client.py,sha256=oL5vXTP84Qc4wX6WepwrECHKJx-wX40k-UWdNq4CNrU,16929
14
14
  feldera/rest/pipeline.py,sha256=W5Oo_bwVduae-alF3g69RyDwQcuSUsWh-rL6cfvvunQ,2786
15
15
  feldera/rest/sql_table.py,sha256=qrw-YwMzx5T81zDefNO1KOx7EyypFz1vPwGBzSUB7kc,652
16
16
  feldera/rest/sql_view.py,sha256=hN12mPM0mvwLCIPYywpb12s9Hd2Ws31IlTMXPriMisw,644
17
- feldera-0.29.0.dist-info/METADATA,sha256=iBu_kQP7PNHDaXrhPH9MDj1eXXTnytqhPAUX6l9E3sY,2582
18
- feldera-0.29.0.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
19
- feldera-0.29.0.dist-info/top_level.txt,sha256=fB6yTqrQiO6RCbY1xP2T_mpPoTjDFtJvkJJodiee7d0,8
20
- feldera-0.29.0.dist-info/RECORD,,
17
+ feldera-0.30.0.dist-info/METADATA,sha256=4MLxbR5a4zrc6wwr_65CfrcgfUXru_0S-BYWFvhZAqQ,2582
18
+ feldera-0.30.0.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
19
+ feldera-0.30.0.dist-info/top_level.txt,sha256=fB6yTqrQiO6RCbY1xP2T_mpPoTjDFtJvkJJodiee7d0,8
20
+ feldera-0.30.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.3.0)
2
+ Generator: setuptools (75.5.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5