stream create --name TailTest --definition "tail --name=/Users/name/Documents/SpringXD/PoC/input/Try.txt --outputType=text/plain --lines=1 |file --name=output --dir=/Users/name/Documents/SpringXD/PoC/output --mode=APPEND" --deploy
Here I see that whether I give --lines=1 or 2 or 0 as soon as there is an additional line entered in Try.txt and it is saved, it is reading entire Try.txt and dumping it into output file. Again when I add a line to Try.txt it does the same reads entire file content rather than just last line and appends it at the end of the previous content in output, any idea what could be going wrong here, why does tail does not read only last 1 (or specified n) lines I do put enter at the end of each line in input file?