Suppose I have some data in s3:
s3://my_bucket/my_path/to/my/data/myfile.txt
And suppose I use a ListS3 processor with the bucket and pass "my_path/to/my/data/" as the prefix
I will get TWO flow files:
"s3://my_bucket/my_path/to/my/data/myfile.txt"
and
"s3://my_bucket/my_path/to/my/data/"
even though the latter is just a partial key that doesn't represent an object.
How can I tune my settings to only get the entry for "myfile.txt"?
Thanks in advance!