Apache Kafka Connectors Config参数 table.poll.interval.ms 是用于轮询新表或已删除表的频率(以毫秒为单位),这可能导致更新的任务配置开始对添加表中的数据进行轮询或停止轮询已删除表中的数据。 (我们不需要)。
我们不想执行这样的查询。有什么办法可以禁用此属性? 设置大的间隔值也是一种解决方案。但无需执行查询。
SELECT
NULL AS table_cat,
o.owner AS table_schem,
o.object_name AS table_name,
o.object_type AS table_type,
NULL AS remarks FROM
all_objects o WHERE
o.owner LIKE :1 ESCAPE '/'
AND o.object_name LIKE :2 ESCAPE '/'
AND o.object_type IN ('TABLE',
'SYNONYM',
'VIEW') ORDER BY
table_type,
table_schem,
table_name