是否可以像使用 CSV 一样在 Table API 和/或 DataStream API 中使用 JSON 文件接收器?
谢谢 !
代码
my_sink_ddl = f"""
create table mySink (
id STRING,
dummy_item STRING
) with (
'connector.type' = 'filesystem',
'format.type' = 'json',
'connector.path' = 'output.json'
)
"""
错误
TableException: findAndCreateTableSink failed.