forked from SeaseLtd/rated-ranking-evaluator
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SeaseLtd#89: Implement persistence connector for ES7.
- Loading branch information
Matt Pearce
committed
Jul 30, 2019
1 parent
3bc70b7
commit 42b7962
Showing
6 changed files
with
327 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
...ersistence-plugin/rre-persistence-plugin-elasticsearch/src/main/resources/es7_config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"settings": {}, | ||
"mappings": { | ||
"dynamic_templates": [ | ||
{ | ||
"metric_values": { | ||
"path_match": "metricValues.*", | ||
"mapping": { | ||
"type": "float" | ||
} | ||
} | ||
} | ||
], | ||
"properties": { | ||
"id": { | ||
"type": "keyword" | ||
}, | ||
"corpora": { | ||
"type": "keyword" | ||
}, | ||
"version": { | ||
"type": "keyword" | ||
}, | ||
"metrics": { | ||
"properties": { | ||
"name": { | ||
"type": "keyword" | ||
}, | ||
"sanitisedName": { | ||
"type": "keyword" | ||
}, | ||
"value": { | ||
"type": "float" | ||
} | ||
} | ||
}, | ||
"results": { | ||
"enabled": false | ||
} | ||
} | ||
} | ||
} |
44 changes: 0 additions & 44 deletions
44
...persistence-plugin/rre-persistence-plugin-elasticsearch/src/main/resources/es_config.json
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.