chore(deps): update ghcr.io/risingwavelabs/risingwave docker tag to v2.6.0 #11646
+1
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v2.1.3
->v2.6.0
Release Notes
risingwavelabs/risingwave (ghcr.io/risingwavelabs/risingwave)
v2.6.0
Compare Source
release v2.6.0
SQL features
CREATE INDEX
to create vector indexes, including flat and HNSW methods, and allows creating vector indexes on function expressions. #22432, #22022, #22808CREATE SINK
supportsauto.schema.change
option for Elasticsearch, Redshift, and Snowflake. #22611DROP CONNECTION
supportsCASCADE
option to automatically drop dependent objects, except for Iceberg connections. #22557DROP FUNCTION
supportsCASCADE
option to automatically remove dependent objects. #22991vector(n)
. #22019jsonb_to_array
function to convert a JSONB array into a SQL array of JSONB elements. #22777openai_embedding
accepts a single constant JSONBconfig
parameter instead of separateapi_key
andmodel
arguments. #22960arg_min
andarg_max
aggregate functions. #22895has_database_privilege
. #22576Connectors
copy-on-write
write mode for enhanced compaction. #22713VACUUM [FULL] schema_name.object_name
syntax. #22942allow_create_stream
is explicitly set totrue
. #22315group.id.prefix
parameter at runtime. #22492Installation and deployment
Cluster configuration changes
streaming_separate_consecutive_join
to separate consecutive stream joins to improve performance. #22259streaming_join_encoding
to switch join encoding type. #22416streaming_separate_sink
to separate sink. #22827protect_drop_table_with_incoming_sink
to block table drops if incoming sinks exist. #22347streaming_now_progress_ratio
to decouplenow_timestamp
fromepoch_timestamp
. #22487Access control list (ACL)
rwadmin
for the Cloud control plane. #22327Assets
docker run -it --pull=always -p 4566:4566 -p 5691:5691 risingwavelabs/risingwave:v2.6.0 standalone
v2.5.2
Compare Source
release v2.5.2
v2.5.1
Compare Source
release v2.5.1
v2.5.0
Compare Source
release v2.5.0
SQL features
ALTER DEFAULT PRIVILEGES
command to set privileges for objects created in the future. #22191public
schema is now managed byGRANT
/REVOKE
command. New non-super users should first be granted privileges before creating objects. #20201backfill_order
to define the ingestion order of streams during backfill in case of join amplification. #20967ALTER COLUMN TYPE
syntax inALTER TABLE
to change the data type of struct columns. Changing between primitive types (e.g.,int
→bigint
) is not supported. #20940SHOW PROCESSLIST
now displays queries from all serving nodes, making it easier to troubleshoot distributed queries. #21952CONNECTOR WITH
clause forALTER SINK
command. #20691barrier_interval_ms
andcheckpoint_frequency
. #22178approx_count_distinct
to estimate the number of distinct values. #21516, #21545array_flatten
to flatten an array of arrays. #21640openai_embedding
function to generate embeddings. #22242WINDOW
clause and window function over named window. #22024map_filter
function to filter map data. #22077||
), position, and overlay functions forbytea
data type. #22076rw_fragment_backfill_progress
to track the progress of each backfill partition. #22124Connectors
hosted_catalog=true
to enable RisingWave-managed SQL catalog in Iceberg table engine. #21351enable_config_load
for Iceberg sink, source, connection, and Iceberg table engine. #21938partition_by
for Iceberg table engine as the Iceberg sink. #21594sink_decouple
for creating sink into table. #21784ALTER SINK ... CONNECTOR WITH
to update connector-specific properties without recreating the sink. #20691Installation and deployment
Cluster configuration changes
streaming_separate_consecutive_join
to separate consecutive stream joins to improve performance. #22259streaming_enable_unaligned_join
to control whether the streaming joins should be unaligned. #20386Assets
docker run -it --pull=always -p 4566:4566 -p 5691:5691 risingwavelabs/risingwave:v2.5.0 standalone
v2.4.4
Compare Source
release v2.4.4
v2.4.3
Compare Source
release v2.4.3
v2.4.2
Compare Source
release v2.4.2
v2.4.1
Compare Source
release v2.4.1
v2.4.0
Compare Source
release v2.4.0
Main Changes
SQL features
SQL commands:
EXPLAIN ANALYZE
command to analyze the actual runtime performance of a streaming job. #20715streaming_parallelism
settings for tables, indexes, views, sinks, and sources. #21366DESCRIBE FRAGMENTS
command to check the execution fragments of an existing job. #21354CONNECTOR WITH
clause forALTER SINK
command. #20691GRANT
andREVOKE
privileges on connection, function and secret. ****#20755ALTER SYSTEM
now applies session variable changes immediately to the current session. #21294System catalog:
iceberg_tables
andiceberg_namespace_properties
. #21400has_function_privilege
. #20755Connectors
icelake
dependency. #20844commit_retry_num
option to configure the number of commit retries on Iceberg failures. #20433Cluster configuration changes
per_database_isolation
to enable per-database failure isolation. #20872streaming_enable_materialized_expressions
to enable materialized expressions. #21552streaming_force_filter_inside_join
to force filter pushed down into inner join. #21289Assets
docker run -it --pull=always -p 4566:4566 -p 5691:5691 risingwavelabs/risingwave:v2.4.0-standalone single_node
v2.3.4
Compare Source
release v2.3.4
v2.3.3
Compare Source
release v2.3.3
v2.3.2
Compare Source
release v2.3.2
v2.3.1
Compare Source
Please use v2.3.2 instead
#21687 reverted an optimization that can cause data inconsistency when an MV has
order by
clause.release v2.3.1
v2.3.0
Compare Source
Please use v2.3.2 instead
Release v2.3.0
Support for RisingWave v2.1 will end upon the release of v2.3. If you're using v2.1, please plan your upgrade to a newer version (v2.2 or later) soon to ensure continued support and updates. For more details, see our version support policy.
Main changes
SQL features
window_start
andwindow_end
at the same time in emit-on-window-close queries. #19998ASOF JOIN
for batch queries to match the nearest record with possible variations in case of ties. #19790resource_group
forCREATE DATABASE
command. #20751CREATE TABLE
command supports partially specifying the schema instead of using*
to ingest all columns. #20203DROP SCHEMA
command supports theCASCADE
option to drop the specified schema and all its dependencies. #19702SET DATABASE TO
orUSE
. #19786SET PARALLELISM
clause forALTER SOURCE
command. #20606IF NOT EXISTS
option forCREATE FUNCTION
/CREATE AGGREGATE
. #20079GRANT
orREVOKE
privileges on view. #20670IGNORE NULLS
forfirst_value
andlast_value
window functions. #19847rw_resource_groups
. #20920rw_streaming_jobs
. #20207Connectors
partition_by
to enable partitioning using column names or transformations for Iceberg sinks. #20495jdbc.auto.commit
for JDBC sinks to automatically commit transactions. #20597snowflake
catalog for Iceberg source. #20421aws.msk.signer_timeout_sec
to set timeout limit for loading AWS credentials of AWS MSK. #20610jdbc.query.timeout
for JDBC sinks is reduced from 600s to 60s. #20641Installation and deployment
Paid
tier and CPU limit of 4 is set by default to allow the free trial of paid features on a small scale. #20296rw_license()
to retrieve the license information. #20629Cluster configuration changes
sink_rate_limit
. #19660Assets
docker run -it --pull=always -p 4566:4566 -p 5691:5691 risingwavelabs/risingwave:v2.3.0 single_node
v2.2.6
Compare Source
release v2.2.6
v2.2.5
Compare Source
release v2.2.5
v2.2.4
Compare Source
release v2.2.4
v2.2.3
Compare Source
release v2.2.3
v2.2.2
Compare Source
release v2.2.2
v2.2.1
Compare Source
release v2.2.1
v2.2.0
Compare Source
release v2.2.0
Main changes
SQL features
EXPLAIN FORMAT JSON
. #19041EXPLAIN FORMAT (XML | YAML)
. #19400ALTER...SWAP WITH...
syntax for tables, materialized views, views, sources, sinks, and subscriptions. #19172ALTER SECRET
. #19495SQL functions & operators:
rw_internal_table_info
. #19642rw_rate_limit
. #19466Connectors
postgres_sink
in Rust. #19328mysql_query
TVF. #19071stream_switch_jdbc_pg_to_native
to switch fromconnector='jdbc'
toconnector='postgres'
for JDBC Postgres sinks. #19703Ref
insideRef
, except circular dependency, for Avro encoding. [#19601](#19601) [#19701](#19701) [#19746](#19746)messages_as_jsonb
for source’s Protobuf encoding when creating a source or table. #19935_rw_timestamp
system column for tables. #19232catalog.credential
,catalog.scope
,catalog.oauth2-server-uri
, orcatalog.token
. #19406commit_checkpoint_interval
when creating Iceberg engine tables. The default value is60
. #19738INCLUDE parititon
when creating MQTT sources to include which topic each message is from. #19017INCLUDE subject
when creating NATS sources. #19708biggquery.credentials
. #19798Installation and deployment
Cluster configuration changes
batch_expr_strict_mode
to control if the query fails or fills the table withNULL
values during expression evaluation failures. #19562backfill_rate_limit
to configure source backfill. #19445dml_rate_limit
. #19679Assets
docker run -it --pull=always -p 4566:4566 -p 5691:5691 risingwavelabs/risingwave:v2.2.0 single_node
v2.1.5
Compare Source
release v2.1.5
v2.1.4
Compare Source
release v2.1.4
Configuration
📅 Schedule: Branch creation - "after 10pm every weekday,every weekend,before 5am every weekday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.