We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
dev=> CREATE TABLE t (k INT); CREATE_TABLE dev=> CREATE SINK file_sink dev-> FROM dev-> t dev-> WITH dev-> ( dev(> connector = 's3', dev(> s3.region_name = 'us-east-1', dev(> s3.bucket_name = 'test', dev(> s3.path = '', dev(> s3.file_type = 'parquet', dev(> type = 'append-only', dev(> force_append_only='true' dev(> ) FORMAT PLAIN ENCODE PARQUET(force_append_only='true'); CREATE_SINK
Everything shows ok until
insert into t values (1);
then shows in the log that:
ERROR risingwave_connector::sink::file_sink::s3: secret access key of aws s3 is not set, bucket test
The text was updated successfully, but these errors were encountered:
#18159
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Everything shows ok until
then shows in the log that:
The text was updated successfully, but these errors were encountered: