Hi @evalalos,
Several things to note for this to work:
- the file must exists with the headers when initializing (during the construction)
- the scenario1 must write quickier than the scenario2 reads.
- the scenario1 must write more (or at least as many as) the scenario2 reads.
- the feeder must be configured with
batch()
loading mode.
Question, notes:
- Is there a reason why not to write this data into the user session?
- You can think about creating your own feeder (as explained at the begining of the document) based on a queue
andThen
will ensure that all the scenario1 will have written their data before beginning the scenario2, but you will still have to create the file (with headers) first
Hope this helps,
Cheers!