8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is an example of the create sink into document. It seems that the data in topic_0 has not been correctly written to orders table.
CREATE TABLE orders ( id int primary key, price int, item_id int, customer_id int ); CREATE source orders_s0 ( id int, price int, item_id int, customer_id int ) WITH ( connector = 'kafka', topic = 'topic_0', properties.bootstrap.server='127.0.0.1:9092', scan.startup.mode='earliest' ) FORMAT PLAIN ENCODE JSON; CREATE SINK orders_sink0 INTO orders FROM orders_s0;
Write some data to topic_0
echo '{"id":1, "price": 20, "item_id":101, "customer_id":999}' | kcat -b 127.0.0.1:9092 -P -t topic_0
Then check the orders table
-- no results returned select * from orders;
But CREATE MATERIALIZED VIEW worked as expected.
CREATE MATERIALIZED VIEW
create materialized view orders_mv as select * from orders_s0;
dev=> select * from orders_mv; id | price | item_id | customer_id ----+-------+---------+------------- 1 | 20 | 101 | 999
No response
The data in topic_0 should be correctly sunk into the orders table.
PostgreSQL 9.5.0-RisingWave-1.7.2 (6ecc083)
The text was updated successfully, but these errors were encountered:
likely solved by #21665
Worth adding e2e tests:
Sorry, something went wrong.
Hmm.. I think it's more like #18356?
shanicky
No branches or pull requests
Describe the bug
Here is an example of the create sink into document. It seems that the data in topic_0 has not been correctly written to orders table.
Write some data to topic_0
Then check the orders table
But
CREATE MATERIALIZED VIEW
worked as expected.Error message/log
No response
To Reproduce
No response
Expected behavior
The data in topic_0 should be correctly sunk into the orders table.
How did you deploy RisingWave?
No response
The version of RisingWave
PostgreSQL 9.5.0-RisingWave-1.7.2 (6ecc083)
Additional context
No response
The text was updated successfully, but these errors were encountered: