feldera 0.110.0__py3-none-any.whl → 0.112.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/pipeline.py CHANGED
@@ -838,14 +838,14 @@ pipeline '{self.name}' to sync checkpoint '{uuid}'"""
838
838
 
839
839
  def set_runtime_config(self, runtime_config: RuntimeConfig):
840
840
  """Updates the runtime config of the pipeline. The pipeline
841
- must be stopped and, in addition, changing some pipeline
842
- configuration requires storage to be cleared.
841
+ must be stopped. Changing some pipeline configuration, such
842
+ as the number of workers, requires storage to be cleared.
843
843
 
844
- For example, to set 'min_batch_size_records' on a pipeline:
844
+ For example, to set 'min_batch_size_records' on a pipeline::
845
845
 
846
- runtime_config = pipeline.runtime_config()
847
- runtime_config.min_batch_size_records = 500
848
- pipeline.set_runtime_config(runtime_config)
846
+ runtime_config = pipeline.runtime_config()
847
+ runtime_config.min_batch_size_records = 500
848
+ pipeline.set_runtime_config(runtime_config)
849
849
 
850
850
  """
851
851
 
@@ -272,7 +272,11 @@ class FelderaClient:
272
272
 
273
273
  if status == "Running":
274
274
  break
275
- elif status == "Failed":
275
+ elif (
276
+ status == "Stopped"
277
+ and len(resp.deployment_error or {}) > 0
278
+ and resp.deployment_desired_status == "Stopped"
279
+ ):
276
280
  raise RuntimeError(
277
281
  f"""Unable to START the pipeline.
278
282
  Reason: The pipeline is in a STOPPED state due to the following error:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: feldera
3
- Version: 0.110.0
3
+ Version: 0.112.0
4
4
  Summary: The feldera python client
5
5
  Author-email: Feldera Team <dev@feldera.com>
6
6
  License: MIT
@@ -3,7 +3,7 @@ feldera/_callback_runner.py,sha256=GNOg3TrKJg9zJU0HvpWxCHqzjMUX8ORiHhtiEEdVQzE,4
3
3
  feldera/_helpers.py,sha256=rN0WuGSCCQlXWFMimZUQrgs-LJAfUo074d79sLElncQ,3023
4
4
  feldera/enums.py,sha256=MTHBojVANsdRnjbrzCyIOniDIUaH8nTYRfxB7QvajEE,9570
5
5
  feldera/output_handler.py,sha256=64J3ljhOaKIhxdjOKYi-BUz_HnMwROfmN8eE-btYygU,1930
6
- feldera/pipeline.py,sha256=fRtGWYzxZOm6Z93bDjpU68EZ_uDTMdwPL-r-o7EXPTE,35135
6
+ feldera/pipeline.py,sha256=nJgRFglBhoTWKYAsaj8f2sTwymFij2bQHej12rZFnPg,35164
7
7
  feldera/pipeline_builder.py,sha256=25tncJd-qiuHWZOezU34oGfDJqFAdjBEMd9QipNfswc,4195
8
8
  feldera/runtime_config.py,sha256=MuYJPd5G_hnu_eDz4ge4BfYvSBSOvOEtv4NYh5sEwqU,4452
9
9
  feldera/stats.py,sha256=XBhkRsV7FXErwWuPP0i3q9W77mzkMo-oThPVEZy5y3U,5028
@@ -12,12 +12,12 @@ feldera/rest/_helpers.py,sha256=q7jWInKp9IiIli8N5o31lDG3hNUbcsJqufZXYHG04ps,222
12
12
  feldera/rest/_httprequests.py,sha256=e22YbpzOzy7MGo7hk9MOU7ZRTj3F314grY0Ygr-_goI,6636
13
13
  feldera/rest/config.py,sha256=DYzZKngDEhouTEwqVFd-rDrBN9tWqsU07Jl_BTT4mXs,1008
14
14
  feldera/rest/errors.py,sha256=b4i2JjrbSmej7jdko_FL8UeXklLKenSipwMT80jowaM,1720
15
- feldera/rest/feldera_client.py,sha256=b85YS7gbxpCu5OHK34TDlB96vnt-HYVXY65WeWroDJY,25737
15
+ feldera/rest/feldera_client.py,sha256=VypUydqkLM5bbVEDxCNyfyF4AQIvCxlbT-OFUuvixgg,25895
16
16
  feldera/rest/feldera_config.py,sha256=1pnGbLFMSLvp7Qh_OlPLALSKCSHIktNWKvx6gYU00U4,1374
17
17
  feldera/rest/pipeline.py,sha256=-dGGUdtHMABKrQEclaeuwGI_FOCrQOk6p2aCFV0FdU8,2890
18
18
  feldera/rest/sql_table.py,sha256=qrw-YwMzx5T81zDefNO1KOx7EyypFz1vPwGBzSUB7kc,652
19
19
  feldera/rest/sql_view.py,sha256=hN12mPM0mvwLCIPYywpb12s9Hd2Ws31IlTMXPriMisw,644
20
- feldera-0.110.0.dist-info/METADATA,sha256=N93J-gZZsEyKYrckWeOEkhSQQYKQPc5xta5ltiFdCwk,4101
21
- feldera-0.110.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
22
- feldera-0.110.0.dist-info/top_level.txt,sha256=fB6yTqrQiO6RCbY1xP2T_mpPoTjDFtJvkJJodiee7d0,8
23
- feldera-0.110.0.dist-info/RECORD,,
20
+ feldera-0.112.0.dist-info/METADATA,sha256=VjkT_hnHXfZk5lTfGQPo5K_-qLjXHX2eUspbqEHdUok,4101
21
+ feldera-0.112.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
22
+ feldera-0.112.0.dist-info/top_level.txt,sha256=fB6yTqrQiO6RCbY1xP2T_mpPoTjDFtJvkJJodiee7d0,8
23
+ feldera-0.112.0.dist-info/RECORD,,