CREATE CATALOG IF NOT EXISTS paimon_catalog PROPERTIES (
'type' = 'paimon',
'paimon.catalog.type' = 'filesystem',
'warehouse' = 's3://datacenter/warehouse/paimon',
's3.endpoint' = 'http://192.168.0.3:9000',
's3.access_key' = 'minioadmin',
's3.secret_key' = 'minioadmin',
's3.region' = 'us-east-1',
's3.path.style.access' = 'true',
'schema.cache.ttl-second' = '0'
);
这样创建catalog后,写入了数据 执行sql还是只能查询到老数据,必须要refresh catalog才能看到新数据。 如何配置才能让那边写了这边不刷新就能看到新数据呢?