diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-25 15:44:39 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-25 15:44:39 -0700 |
commit | 186c03c2b9e1b08e4298383fc6593d1b2c3a5dd8 (patch) | |
tree | b116678710d9a69df023f7dc90525d7563506891 /notes/old_imports.txt | |
parent | c1391060cc4575365f81fc674e35d8c182ccde83 (diff) | |
download | fatcat-186c03c2b9e1b08e4298383fc6593d1b2c3a5dd8.tar.gz fatcat-186c03c2b9e1b08e4298383fc6593d1b2c3a5dd8.zip |
start organizing notes into subdirectories
Diffstat (limited to 'notes/old_imports.txt')
-rw-r--r-- | notes/old_imports.txt | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/notes/old_imports.txt b/notes/old_imports.txt deleted file mode 100644 index 1233d4a8..00000000 --- a/notes/old_imports.txt +++ /dev/null @@ -1,20 +0,0 @@ - -## ORCID - -Directly from compressed tarball; takes about 2 hours in production: - - tar xf /srv/datasets/public_profiles_API-2.0_2017_10_json.tar.gz -O | jq -c . | grep '"person":' | time parallel -j12 --pipe --round-robin ./fatcat_import.py import-orcid - - -After tuning database, `jq` CPU seems to be bottleneck, so, from pre-extracted -tarball: - - tar xf /srv/datasets/public_profiles_API-2.0_2017_10_json.tar.gz -O | jq -c . | rg '"person":' > /srv/datasets/public_profiles_1_2_json.all.json - time parallel --bar --pipepart -j8 -a /srv/datasets/public_profiles_1_2_json.all.json ./fatcat_import.py import-orcid - - -Does not work: - - ./fatcat_import.py import-orcid /data/orcid/partial/public_profiles_API-2.0_2017_10_json/3/0000-0001-5115-8623.json - -Instead: - - cat /data/orcid/partial/public_profiles_API-2.0_2017_10_json/3/0000-0001-5115-8623.json | jq -c . | ./fatcat_import.py import-orcid - |