Hi everyone,
I'm trying to write 3 data streams to the same file and the issue I'm having is that these 3 try writing data at the same time. In the past, i have used block until done in order to write different fields to the same document but the started as one stream.
Is it possible to set an order for data streams to write to a file that are on different streams? E.g. Stream 1 writes to the file then stops running. Stream 2 then writes to the file, etc. Block until done sorts this quite nicely on it's own but I can't see a way around this other than unioning all these together (which I really don't want to do) and then sending the data out afterwards.
Thanks everyone,
Dane.