-
Notifications
You must be signed in to change notification settings - Fork 594
New issue
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
Slow response with jdbc postgresql sink #11445
Comments
I reproduced the issue on my local env (a7b15d8). By default, the playground will utilize all cores of the machine (10 in my local env), thus the parallelism of
|
The panic of sink decouple is a known issue and should be fixed merge #11017 is merged. |
I did some investigation. I noticed that the checkpoint interval is 1 second, and a commit round trip between CN and connector node sometimes takes more than 1 second, which makes our barrier piles up. This might be the reason for slow response. The newly issued |
Fixed with #11589 |
Reproduce:
create table sk1 (v int primary key);
./risedev configure
to enable building connector noderisedev.yml
to uncomment- use: connector-node
./risedev p
to start RisingWave in playground modeNote that both
rw_implicit_flush
andsink_decouple
default tofalse
.flush;
command is issued orrw_implicit_flush
is true, the current session will stuck and cannot be canceled with Ctrl-C.sink_decouple
is true,risingwave-streaming-actor
would panic, with the connector java process still running and listening on port 50051.The text was updated successfully, but these errors were encountered: