summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2014-11-27 23:55:41 +0100
committerChristian Pointner <equinox@spreadspace.org>2014-11-27 23:55:41 +0100
commit1829fc75dc4de3ffe03283942aa736c81f526ea1 (patch)
treebcfeb84cb05d6a99bdb2d4135c001bcff64ddba7 /src
parentconcatenation of source-id values work now (diff)
terms aggregation for nested data works now
Diffstat (limited to 'src')
-rw-r--r--src/es5/es-query.json2
-rw-r--r--src/es5/sfive-init.json17
2 files changed, 5 insertions, 14 deletions
diff --git a/src/es5/es-query.json b/src/es5/es-query.json
index 1be731d..5bec12f 100644
--- a/src/es5/es-query.json
+++ b/src/es5/es-query.json
@@ -3,7 +3,7 @@
{
"by_hostname":
{
- "terms": { "script": "doc['source-id'].values.join('/')" }
+ "terms": { "script": "[ doc['hostname'].value, doc['streamer-id.content-id'].value, doc['streamer-id.format'].value, doc['streamer-id.quality'].value ].join('/') " }
},
"the_total_time":
{
diff --git a/src/es5/sfive-init.json b/src/es5/sfive-init.json
index 4ebfd92..3dd33d7 100644
--- a/src/es5/sfive-init.json
+++ b/src/es5/sfive-init.json
@@ -4,11 +4,6 @@
"mappings" : {
"dataupdate" : {
"properties" : {
- "source-id": {
- "type": "string",
- "index" : "not_analyzed",
- "store": true
- },
"SourceHubDataUpdateId" : {
"type" : "long"
},
@@ -34,8 +29,7 @@
},
"hostname" : {
"type" : "string",
- "index" : "not_analyzed",
- "copy_to": "source-id"
+ "index" : "not_analyzed"
},
"start-time" : {
"type" : "date",
@@ -45,18 +39,15 @@
"properties" : {
"content-id" : {
"type" : "string",
- "index" : "not_analyzed",
- "copy_to": "source-id"
+ "index" : "not_analyzed"
},
"format" : {
"type" : "string",
- "index" : "not_analyzed",
- "copy_to": "source-id"
+ "index" : "not_analyzed"
},
"quality" : {
"type" : "string",
- "index" : "not_analyzed",
- "copy_to": "source-id"
+ "index" : "not_analyzed"
}
}
},