Skip to content

[Improvement][configuration] Add s3 related configuration prompt #4321

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

Open
wants to merge 5 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions script/sql/dinky-mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1142,6 +1142,15 @@ insert into dinky_flink_document (id, category, type, subtype, name, description
', '-- ADD FILE 为 Dinky 扩展语法 可以向环境中添加依赖jar(与add customjar 一致) 还可以添加其他类型的文件
ADD FILE ''${1:}''; -- str path ', 'All Versions', 0, 1, '2024-03-01 17:13:05', '2024-03-01 17:15:55', 1, 1);

INSERT INTO dinky_flink_document (id, category, type, subtype, name, description, fill_value, version, like_num, enabled, create_time, update_time, creator, updater)
VALUES (250,'Variable','FLINK_OPTIONS','','s3.endpoint',NULL,'\'s3.endpoint\' = \'http://localhost:9000\'','All Versions',0,1,'2025-03-24 18:04:05','2025-03-26 09:01:39',1,1);
INSERT INTO dinky_flink_document (id, category, type, subtype, name, description, fill_value, version, like_num, enabled, create_time, update_time, creator, updater)
VALUES (251,'Variable','FLINK_OPTIONS','','s3.access-key',NULL,'\'s3.access-key\' = \'minio\'','All Versions',0,1,'2025-03-24 18:08:07','2025-03-26 09:02:50',1,1);
INSERT INTO dinky_flink_document (id, category, type, subtype, name, description, fill_value, version, like_num, enabled, create_time, update_time, creator, updater)
VALUES (252,'Variable','FLINK_OPTIONS','','s3.secret-key',NULL,'\'s3.secret-key\' = \'your_s3_secret_key\'','All Versions',0,1,'2025-03-24 18:08:32','2025-03-26 09:04:32',1,1);
INSERT INTO dinky_flink_document (id, category, type, subtype, name, description, fill_value, version, like_num, enabled, create_time, update_time, creator, updater)
VALUES (253,'Variable','FLINK_OPTIONS','','s3.path.style.access',NULL,'\'s3.path.style.access\' = \'true\'','All Versions',0,1,'2025-03-24 18:09:00','2025-03-26 09:04:58',1,1);

commit ;
-- ----------------------------
-- Table structure for dinky_fragment
Expand Down
16 changes: 16 additions & 0 deletions script/sql/dinky-pg.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2297,6 +2297,22 @@ INSERT INTO public.dinky_flink_document (id, category, type, subtype, name, desc
VALUES (249, 'Property', 'FLINK_OPTIONS', 'FlinkSql', 'restart-strategy', '重启策略', 'fixed-delay', '1.15', 0, true,
'2024-03-01 15:10:31', '2024-03-01 15:10:31', 1, 1);

INSERT INTO public.dinky_flink_document (id, category, type, subtype, name, description, fill_value, version, like_num,
enabled, create_time, update_time, creator, updater)
VALUES (250,'Variable','FLINK_OPTIONS','','s3.endpoint',NULL,'''s3.endpoint'' = ''http://localhost:9000''',
'All Versions',0,true,'2025-03-24 18:04:05','2025-03-26 09:01:39',1,1);
INSERT INTO public.dinky_flink_document (id, category, type, subtype, name, description, fill_value, version, like_num,
enabled, create_time, update_time, creator, updater)
VALUES (251,'Variable','FLINK_OPTIONS','','s3.access-key',NULL,'''s3.access-key'' = ''minio''','All Versions',0,true,
'2025-03-24 18:08:07','2025-03-26 09:02:50',1,1);
INSERT INTO public.dinky_flink_document (id, category, type, subtype, name, description, fill_value, version, like_num,
enabled, create_time, update_time, creator, updater)
VALUES (252,'Variable','FLINK_OPTIONS','','s3.secret-key',NULL,'''s3.secret-key'' = ''your_s3_secret_key''',
'All Versions',0,true,'2025-03-24 18:08:32','2025-03-26 09:04:32',1,1);
INSERT INTO public.dinky_flink_document (id, category, type, subtype, name, description, fill_value, version, like_num,
enabled, create_time, update_time, creator, updater)
VALUES (253,'Variable','FLINK_OPTIONS','','s3.path.style.access',NULL,'''s3.path.style.access'' = ''true''',
'All Versions',0,true,'2025-03-24 18:09:00','2025-03-26 09:04:58',1,1);


-- ----------------------------
Expand Down