From ffe392c017e25060ffdaaf15de842f4c6e93b54e Mon Sep 17 00:00:00 2001 From: Rashid Khan Date: Mon, 11 Mar 2013 07:23:48 -0700 Subject: [PATCH] remove pi script --- scripts/loadpi.sh | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100755 scripts/loadpi.sh diff --git a/scripts/loadpi.sh b/scripts/loadpi.sh deleted file mode 100755 index 780e8b53270..00000000000 --- a/scripts/loadpi.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env bash -echo "Generating bulk indexable shakespeare lines with timestamp 3 hours in the past and 10 hours into the future" -node reader.js > indexme.json -echo "Setting mapping for shakespeare index" -curl -XPUT http://10.1.1.18:9200/_template/shakespeare -d ' -{ - "template" : "shakespeare", - "mappings" : { - "_default_" : { - "properties" : { - "clientip" : { "type" : "ip" }, - "speaker" : {"type": "string", "index" : "not_analyzed" }, - "play_name" : {"type": "string", "index" : "not_analyzed" }, - "line_id" : { "type" : "integer", "index": "not_analyzed" }, - "speech_number" : { "type" : "integer", "index": "not_analyzed" }, - "geo" : { - "properties": { - "state" : {"type": "string", "index" : "not_analyzed" }, - "country" : {"type": "string", "index" : "not_analyzed" } - } - } - } - } - } -} -' -echo -echo "Performing bulk indexing into 10.1.1.18:9200" -curl -XPUT 10.1.1.18:9200/_bulk --data-binary @indexme.json;echo -echo -echo "If tons of JSON just scrolled above, I've probably successfully loaded over 100,000 lines of shakespeare into 10.1.1.18:9200/shakespeare"