use spring boot jdbc to query duckdb,
add the following code to create a iceberg catalog in the spring init method ,
after run about an hour, the iceberg catalog will be lose ,when use java jdbc, it wll be fine.
CREATE OR REPLACE SECRET (
TYPE ICEBERG,
ENDPOINT 'http://xxxx:xxxx',
TOKEN 'admin'
);
CREATE SECRET s3_secret (
TYPE S3,
KEY_ID 'xxxx',
SECRET 'xxxxx',
REGION 'xxx',
ENDPOINT 'xxxxx'
);
ATTACH '' AS iceberg (TYPE ICEBERG);