another map/reduce question ... if you create a file in the map, then write to it in the reduce, would the multiple concurrent file append and save conflict?
s
Sandii
10/23/2020, 2:01 PM
You can;t really write a file down to the reduce, it passes JSON objects between stages
n
NElliott
10/23/2020, 2:04 PM
You can create the file in map and pass the internalid of the file if that helps.
b
battk
10/23/2020, 4:27 PM
i would have said conflict. but i just tested this and it really does look like it appends to the existing file contents
battk
10/23/2020, 4:27 PM
no conflicts, though you may not have a consistent order
d
Daryl K
10/24/2020, 8:39 AM
thanks 🙂 order is not an issue, it just has to be accurate