Is it possible to use a JSON file sink in the Table API and/or DataStream API the same way as for CSV ?
Thanks !
Code
my_sink_ddl = f"""
create table mySink (
id STRING,
dummy_item STRING
) with (
'connector.type' = 'filesystem',
'format.type' = 'json',
'connector.path' = 'output.json'
)
"""
Error
TableException: findAndCreateTableSink failed.