-
Notifications
You must be signed in to change notification settings - Fork 590
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
source_rate_limit doesn't work for file source #19296
Comments
What's the corresponding streaming source executor for it? Is it the Edit: Yes it is. |
Is someone working on this? cc @kwannoel @tabVersion |
I'll check with @tabVersion, no bandwidth to work on this recently. Edit: He will manage this issue. Many thanks 🙏. |
Add link for original customer message. Please notify them after the fix. |
I am doing a quick check on code. Will fix this ASAP. |
#16472 seems to forget apply the same change as After the simple fix, Let me explain further on the behavior and why we meet this bug. take this sql as example dev=> CREATE TABLE diamonds (
carat FLOAT,
cut TEXT,
color TEXT,
depth FLOAT,
) WITH (
connector = 'posix_fs',
match_pattern = 'data*.csv',
posix_fs.root = 'e2e_test/source_inline/fs/data',
source_rate_limit = 0
) FORMAT PLAIN ENCODE CSV ( without_header = 'false', delimiter = ',');
CREATE_TABLE
dev=>
dev=> alter table diamonds set source_rate_limit to default ;
ALTER_SOURCE obvervations:
reason:
|
Describe the bug
FsFetch is not handled in
update_source_rate_limit_by_source_id
Error message/log
No response
To Reproduce
Add
source_rate_limit = 0
ine2e_test/source_inline/fs/posix_fs.slt
, you can see data still producedExpected behavior
No response
How did you deploy RisingWave?
No response
The version of RisingWave
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: