diff --git a/docs/content/docs/connectors/table/filesystem.md b/docs/content/docs/connectors/table/filesystem.md index 68d5c785a3669..e261702a28417 100644 --- a/docs/content/docs/connectors/table/filesystem.md +++ b/docs/content/docs/connectors/table/filesystem.md @@ -33,6 +33,18 @@ The file system connector itself is included in Flink and does not require an ad The corresponding jar can be found in the Flink distribution inside the `/lib` directory. A corresponding format needs to be specified for reading and writing rows from and to a file system. +NOTE: If you use the filesystem connector for [local execution]({{< ref "docs/dev/dataset/local_execution" >}}), +for e.g. running Flink job in your IDE, you will need to add dependency. + +```xml + + org.apache.flink + flink-connector-files + {{< version >}} + provided + +``` + The file system connector allows for reading and writing from a local or distributed filesystem. A filesystem table can be defined as: ```sql