You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
recently, I discovered that some records from a table in starrocks have been deleted but still exist in risingwave. the corresponding mv only do a simple union operation, and there are no delete operations on either side of union operator.
Error message/log
No response
To Reproduce
createtablecategory_level1(
id bigintprimary key,
name varchar
);
createtablecategory_level2(
id bigintprimary key,
name varchar
);
insert into category_level1 values (1, '服装');
insert into category_level2 values (2, '女士');
create materialized view category_full asselect*, '1'as typ from category_level1
unionselect*, '2'as typ from category_level2;
create sink sink_category_full from category_full
with (
connector='kafka',
type='upsert',
topic='rw_test',
properties.bootstrap.server='10.100.0.35:9092',
primary_key='id'
);
-- the following statement will send two out-of-order upsert messagesupdate category_level1 set name ='酒类';
Describe the bug
recently, I discovered that some records from a table in starrocks have been deleted but still exist in risingwave. the corresponding mv only do a simple union operation, and there are no delete operations on either side of union operator.
Error message/log
No response
To Reproduce
Expected behavior
or
How did you deploy RisingWave?
docker compose
The version of RisingWave
PostgreSQL 9.5-RisingWave-1.2.0 (0f94fdf)
Additional context
switching from
union
tounion all
this problem disappeared, butunion all
does not have the deduplication capability according to the docThe text was updated successfully, but these errors were encountered: