Mercurial > hg > LGDataverses
view scripts/search/add @ 14:be7787c36e58 default tip
new: nofity LGSercies for deleted files
author | Zoe Hong <zhong@mpiwg-berlin.mpg.de> |
---|---|
date | Mon, 02 Nov 2015 16:41:23 +0100 |
parents | a50cf11e5178 |
children |
line wrap: on
line source
#!/bin/sh # need the following in solr/collection1/conf/schema.xml # <field name="entityid" type="long" indexed="true" stored="true" required="true" multiValued="false" /> # <field name="type" type="string" indexed="true" stored="true" required="true" multiValued="false" /> mkdir -p data #echo "adding to solr..." curl -s http://localhost:8080/api/dataverses > data/dataverses.json #curl http://localhost:8983/solr/update/json?commit=true -H 'Content-type:application/json' --data-binary @data/dataverses.json curl -s http://localhost:8080/api/datasets > data/datasets.json #curl http://localhost:8983/solr/update/json?commit=true -H 'Content-type:application/json' --data-binary @data/datasets.json echo "adding to elasticsearch..." #curl -XPOST http://localhost:9200/dataverse/datasets/1 --data-binary @data/datasets/1.dump for type in dataverses datasets; do mkdir -p data/$type for i in `./json2ids data/$type.json`; do #echo "adding $i from $type..." curl -s http://localhost:8080/api/$type/$i/dump > data/$type/$i.dump curl -XPOST "http://localhost:9200/dataverse/$type/$i" --data-binary @data/$type/$i.dump echo done; done