I'm able to save a Great_Expectations suite to the tmp folder on my Databricks Community Edition as follows:
ge_partdf.save_expectation_suite('/tmp/myexpectation_suite.json',discard_failed_expectations=False)
But the problem is, when I restart the cluster the json file in longer in the tmp folder. The reason for this I guess is because files that reside in the tmp folder are temporary. However if I try and save it a folder that I know exists on Databricks e.g /FileStore/tables I get the error message:
FileNotFoundError: [Errno 2] No such file or directory: '/FileStore/tables/myexpectation_suite.json'
Can someone let me know how to save locally on Databricks please.