Elastic 7
ElasticSearch 7.8.1 for indexer service
Merge request reports
Activity
added GC label
mentioned in issue home#67 (closed)
added Common Code label
- Resolved by Riabokon Stanislav(EPAM)[GCP]
@Stanislav_Riabokon please take a look at integration tests
added 142 commits
-
a98572ae...b34ffdce - 141 commits from branch
master
- 07086a80 - Merge remote-tracking branch 'origin/master' into elastic_7
-
a98572ae...b34ffdce - 141 commits from branch
@Stanislav_Riabokon, @rostislav.dublin please merge with latest changes in master
added 12 commits
-
07086a80...24f5206c - 11 commits from branch
master
- 4322e8a5 - Merge remote-tracking branch 'origin/master' into elastic_7
-
07086a80...24f5206c - 11 commits from branch
- Are there any corresponding/similar changes in core-common and search related to elastic 7? Is there any common issue tracking all elastic 7 dependent changes in all module/changes at one place.
- Are these changes backward compatible to 6.8.1 or 6.8.3 by any chance?
- Only Search has similar changes for elastic 7. If you are interested, you can take a look at search-service!70 (merged)
- Elastic 7.8.1 has another Java API in comparison with 6.8.1 or 6.8.3. There are some findings:
Record with location should be:
"data": { "Field": "OSDU OFFICE - 3", "Location": "29.749655,-95.473476",
OR
"Location": { "lat":18.5204, "lon":73.8567 }
OR
"location" : [-71.34, 41.12]
https://www.elastic.co/guide/en/elasticsearch/reference/1.7/mapping-geo-point-type.html
A new schema for indexes:
{ "dynamic":false, "properties": { "id": { "type": "keyword" }, "kind": { "type": "keyword" }, "namespace": { "type": "keyword" }, "type": { "type": "keyword" }, "version": { "type": "keyword" }, "x-acl": { "type": "keyword" }, "acl": { "properties": { "owners": { "type": "keyword" }, "viewers": { "type": "keyword" } } }, "legal": { "properties": { "legaltags": { "type": "keyword" }, "otherRelevantDataCountries": { "type": "keyword" }, "status": { "type": "keyword" } } }, "data": { "properties": { "Field": { "type": "text" }, "Location": { "type": "geo_point" }, "LocationGeoShape": { "type": "geo_shape" }, "Basin": { "type": "text" }, "County": { "type": "text" }, "State": { "type": "text" }, "Country": { "type": "text" }, "WellStatus": { "type": "text" }, "OriginalOperator": { "type": "text" }, "WellName": { "type": "text" }, "WellType": { "type": "text" }, "EmptyAttribute": { "type": "text" }, "Rank": { "type": "integer" }, "Score": { "type": "integer" }, "Established": { "type": "date" } } } } }
For information: https://www.elastic.co/guide/en/elasticsearch/reference/current/removal-of-types.html
Edited by Riabokon Stanislav(EPAM)[GCP]
added 10 commits
-
4322e8a5...af0d36ee - 8 commits from branch
master
- d6cba616 - Merge branch 'elastic_7' of...
- 08bdcaeb - upgrade test version to 0.0.3 and elastic version in test poms
-
4322e8a5...af0d36ee - 8 commits from branch
added M4 label
added no-detached-pipeline label
Please register or sign in to reply