I'm a beginner for apache platforms as well as flink. Im trying to query below Flink-SQL code. I have 2 questions
- I need to find the connector "filesystem" (in maven repo or elsewhere)
- Is it possible to run these Flink-SQL scripts as scheduled flink-jobs
-- Create the input table
CREATE TABLE taxi_rides (
ride_id BIGINT,
passenger_count INT,
start_time TIMESTAMP(3),
end_time TIMESTAMP(3),
start_location STRING,
end_location STRING,
revenue DOUBLE
) WITH (
'connector' = 'filesystem',
'path' = 'file:///home/app/taxi_data.parquet',
'format' = 'parquet'
);
I need to find the dependency connector and host in Flink