Changelog
- Enterprise
- Open Source
Unreleased
We switched the implementation of DECIMAL numbers to a new DECIMAL
library that we have developed in house. The library uses 3 times
less space and is up to 100 times faster than our prior
implementation. This is a breaking change for user-defined
functions. The class exposed for DECIMALS has the same name as
the previous implementation (SqlDecimal
), but its API is
completely different.
0.103.0
This version changes the default values of various worker threads in our HTTP and IO runtime
to be equal to the worker
field in the runtime config.
This is a change from the previous default where it was configured to use the number of
CPU cores available on the node that a pod is running on.
This change was made to ensure that the number of threads is sized more appropriately
for the resources available to the pod. It also adds two new fields to the runtime config,
http_workers
and io_workers
which can be used to set the number of threads for both
runtimes explicitly.
We also changed the amount of HTTP worker threads for control plane services (kubernetes-runner, api-server, pipeline-manager) to be equal to the number of cores allocated for them.
0.97.0
This release modifies the state machine of a pipeline. The biggest user-facing change is that stopping a pipeline
now acts similar to Suspend
where a checkpoint is taken before stopping the pipeline. With this change, the
Suspend
state is redundant and removed from APIs and SDKs.
Stopping a pipeline now takes a checkpoint before shutting down. Alternatively, "Force Stop" stops a pipeline without taking one, which means any progress since the last checkpoint was taken is lost.
Pipeline state now persists between the runs; clearing it requires an explicit action.
Changes to Web Console
- Pipeline actions
Suspend
andShutdown
are now replaced withStop
andForce Stop
respectively. - The new storage indicator shows whether storage is
In Use
(and allows to clear the storage) orCleared
. - Pipeline code and some configuration options cannot be edited while a pipeline's storage is in use.
- The reason for the latest pipeline crash is now displayed as a banner above the code editor.
Changes to REST API
- Pipeline statuses
SuspendingCompute
,Suspended
,Failed
,ShuttingDown
,Shutdown
are removed and replaced with two new ones:Stopping
andStopped
- Renamed pipeline status
SuspendingCircuit
toSuspending
- New: storage status, which is either
Cleared
,InUse
orClearing
- New:
/stop?force=false/true
, which deprovisions the compute resources of a pipeline. Ifforce=false
(default), a checkpoint is attempted before the deprovisioning. - New:
/clear
, which clears the storage of a pipeline - Removed:
/shutdown
, it should be replaced with/stop?force=true
followed by/clear
once stopped - Removed:
/suspend
, instead use/stop?force=false
/logs
is now always available and does not get cleared when a pipeline is stopped- Changed:
/delete
now requires the storage to be cleared (/clear
) to succeed. - Deprecated:
runtime_config.checkpoint_during_suspend
, instead call/stop?force=false
if want to have a checkpoint taken before the deprovisioning, (/stop?force=true
if not).
Changes to Python SDK feldera
:
- Pipeline
shutdown
method replaced with newstop
- Pipeline
suspend
method removed, use theforce = False
argument instop
- Added
clear_storage
argument todelete
.
Changes to CLI fda
:
- Added a
--force
option tofda delete
to clear the storage of a pipeline. - Removed the
fda suspend
command, usefda stop
instead (which can be set to take a checkpoint using--checkpoint
).
Changes to Rust SDK feldera-rest-api
:
-
PipelineStatus::Shutdown
,PipelineStatus::Suspend
,PipelineStatus::Stopped
all map toPipelineStatus::Stopped
now -
API calls to start/pause pipeline functions are replaced with individual functions, e.g.,
let response = client
.post_pipeline_action()
.pipeline_name("my-pipeline")
.action("start")
.send()
.await?;becomes
let response = client
.post_pipeline_start()
.pipeline_name("my-pipeline")
.send()
.await?;
Pipeline Manager
- Changed the pipeline manager CLI argument
sql-compiler-home
tosql-compiler-path
: Now a path to the sql-to-dbsp JAR file has to be provided rather than a path to the sql-to-dbsp directory. If the provided docker images are used (and the entrypoint is not modified), no change/migration is necessary.
0.90.0 (2025-06-20)
- Aligned Open Source and Enterprise version: The enterprise edition of Feldera is now aligned with the Open Source edition. Versions will share the same codebase for a given release but the enterprise edition will include additional features and support.
Release notes for the Open Source edition can be found on github.