Re: Monitoring folder in flink
Posted by
Fabian Hueske-2 on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/Monitoring-folder-in-flink-tp16327p16385.html
Hi,
with PROCESS_CONTINUOUSLY the application monitors the directory and processes new arriving files or files that have been modified. In this case the application never terminates because it is waiting for new files to appear.
With PROCESS_ONCE, the content of a directory is processed as it was when the application was started. Once all files are processed the application terminates.
What kind of behavior are you looking for?
Best, Fabian