diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-06-03 20:23:32 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-06-03 20:23:32 -0700 |
commit | 22df32157f4846a4069d76c47f0adb3ad073a7bc (patch) | |
tree | ff5fddbcbcf7707f5ab1b6af9bf78164366d0d12 /rust/README.export.md | |
parent | f0be35e8031032cda3a98a3b4a79d4e4d6866817 (diff) | |
download | fatcat-22df32157f4846a4069d76c47f0adb3ad073a7bc.tar.gz fatcat-22df32157f4846a4069d76c47f0adb3ad073a7bc.zip |
move export README info to sql_dumps doc
Diffstat (limited to 'rust/README.export.md')
-rw-r--r-- | rust/README.export.md | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/rust/README.export.md b/rust/README.export.md deleted file mode 100644 index 44ca8afd..00000000 --- a/rust/README.export.md +++ /dev/null @@ -1,17 +0,0 @@ - -First create ident files, following `../extra/sql_dumps/README.md`. - -Then, to dump locally to stdout: - - cat /tmp/fatcat_ident_releases.tsv | ./target/debug/fatcat-export releases - -Or, in production, as the fatcat user: - - cat /tmp/fatcat_ident_releases.tsv | ./target/release/fatcat-export release --expand files,filesets,webcaptures,container -j8 | pigz > /srv/fatcat/snapshots/release_export_expanded.json.gz - cat /tmp/fatcat_ident_releases.tsv | ./target/release/fatcat-export release -j8 | pigz > /srv/fatcat/snapshots/release_export.json.gz - cat /tmp/fatcat_ident_creators.tsv | ./target/release/fatcat-export creator -j8 | pigz > /srv/fatcat/snapshots/creator_export.json.gz - cat /tmp/fatcat_ident_containers.tsv | ./target/release/fatcat-export container -j8 | pigz > /srv/fatcat/snapshots/container_export.json.gz - cat /tmp/fatcat_ident_files.tsv | ./target/release/fatcat-export file -j8 | pigz > /srv/fatcat/snapshots/file_export.json.gz - cat /tmp/fatcat_ident_filesets.tsv | ./target/release/fatcat-export fileset -j8 | pigz > /srv/fatcat/snapshots/fileset_export.json.gz - cat /tmp/fatcat_ident_webcaptures.tsv | ./target/release/fatcat-export webcapture -j8 | pigz > /srv/fatcat/snapshots/webcapture_export.json.gz - |