Json Not writing full record counts to FTP

Hi @arronrobles, I am not sure I can follow here. Looking at your screenshot, it seems that the problem is not with the FTP node, but with the “Move Binary Data” node. Perhaps you can share the JSON data you’re passing to the node and the result you’re expecting?

In general, the node you have shared would produce binary items, rather than JSON items. So you’d need to switch to the “Binary” view of the output. A possible reason for seeing only a single file would be that you’re using a static file name for every single one of your items files. So you probably want to set a unique file name for each item and then use this filename in your FTP node, for example like so:

Example workflow:

This would produce one file per record like so:

image

If you’d rather have a single file with all the records you could do something like this instead:

This will write a single array in your file, with all the individual items:

1 Like