I'm doing some research in neuroscience and I'm using python's tinydb library for keeping track of all my model training runs and the data they generate.
One of the issues I realized might come up is when I try to train multiple models on a cluster. What could happen is that two threads might try to write to the tinydb json file at the same time.
Can someone please let me know if this will be an issue?