Hello. Does Metaflow support for multiple develope...
# ask-metaflow
f
Hello. Does Metaflow support for multiple developers to use a common local metaflow store? Our usual development happens on a shared virtual server (where we would want to do that) and we dont always want to go to cloud. I know I can change the path to the datastore dir, I'm more asking for someone's experience or whether it has some known problems with race conditions.
1
e
you probably can use
METAFLOW_DATASTORE_SYSROOT_LOCAL
Copy code
METAFLOW_DATASTORE_SYSROOT_LOCAL=/mydir python3 helloworld.py run
https://github.com/Netflix/metaflow/issues/219#issuecomment-645740573
f
@echoing-summer-46573 Thanks, I know about that environment variable. I was just curious if it is prepared for 10 users accessing it at the same time (race-conditions etc). I need to know if multiple users can use it simultaneously.
When you say local metaflow store, are you thinking of using neither the metadata service nor the s3 bucket as the datastore?
f
@square-wire-39606 Yes, I meant everything locally. Thanks, this answers my question.
👍🏼 1