- Python 3.9
- Python Google Appengine
-
Clone the repository.
$ git clone [email protected]:labbots/firestore-export-json.git $ cd firestore-export-json
-
Create a new virtual environment within the project directory.
$ python -m venv venv
-
Activate the virtual environment in the project.
$ source ./venv/bin/activate
-
Install framework dependencies.
$ pip install -e .
-
Clone the repository.
$ git clone [email protected]:labbots/firestore-export-json.git $ cd firestore-export-json
-
Run the make command
$ make install
- Export firestore collections using firestore admin tools. Follow the instructions here to backup firestore.
- The exports are stored in google cloud storage. Download the exported data directory from cloud storage.
- Use the below command to convert the exported data to JSON.
- By default, running the command will use (num_cpus - 1) processes to process the data. This can greatly speed up processing.
To set this to something different use the
-P
/--processes
flags e.g../fs_to_json.py source/ dest/ -P 1
- By default, this will not clear out any files from the destination directory.
To force a clean before running use the
-C
/--clean-dest
flag e.g../fs_to_json.py source/ dest/ -C
- By default, this will attempt to use a hardware-accelerated crc32c check to verify the integrity of the blocks of data. Without
hardware acceleration, this can be a costly process. If you don't have hardware acceleration, you can disable the checks with the
-c
/--no-check-crc
flag. The penalty for not running any crc32c checks is that you might have corrupt or missing data in the json output.
fs_to_json.py
can be used to convert the firestore/datastore export files to JSON data.
$ python fs_to_json.py path_to_source_dir path_to_destination
- Provide the path to the directory where files such as
output-0
exists as source directory usually this would bekinds_*
directory. - Destination directory must be specified where the json files will be created. If not provided then the json files will be created using
json
folder in source directory.
e.g.
# this will look for all files in exports/all_namespaces/kind_collection-id that start with `output-` and put the resulting json files in out/collection-id
python fs_to_json.py exports/all_namespaces/kind_collection-id out/collection-id
The project exposes console script using setuptools to provide fs_to_json
CLI command which can be used to convert exports to JSON.
$ fs_to_json path_to_source_dir path_to_destination
- Venryx/firestore-leveldb-tools - LevelDB files to JSON converter written in python 2.7.