mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 18:35:25 +00:00
Remove _all
configuration
Since the `_all` field is now disabled by default and no longer allowed to be configured, these should be removed from the mapping templates. Relates to https://github.com/elastic/elasticsearch/pull/22144 Original commit: elastic/x-pack-elasticsearch@3b17c2b9c6
This commit is contained in:
parent
2c5aeba418
commit
41f4d1784d
@ -8,9 +8,6 @@
|
||||
},
|
||||
"mappings": {
|
||||
"_default_": {
|
||||
"_all": {
|
||||
"enabled": false
|
||||
},
|
||||
"date_detection": false,
|
||||
"properties": {
|
||||
"cluster_uuid": {
|
||||
|
@ -7,9 +7,6 @@
|
||||
},
|
||||
"mappings": {
|
||||
"_default_": {
|
||||
"_all": {
|
||||
"enabled": false
|
||||
},
|
||||
"properties": {
|
||||
"cluster_uuid": {
|
||||
"type": "keyword"
|
||||
|
@ -7,9 +7,6 @@
|
||||
},
|
||||
"mappings": {
|
||||
"_default_": {
|
||||
"_all": {
|
||||
"enabled": false
|
||||
},
|
||||
"properties": {
|
||||
"cluster_uuid": {
|
||||
"type": "keyword"
|
||||
|
@ -7,9 +7,6 @@
|
||||
"mappings": {
|
||||
"event": {
|
||||
"dynamic" : "strict",
|
||||
"_all" : {
|
||||
"enabled" : false
|
||||
},
|
||||
"properties": {
|
||||
"@timestamp": {
|
||||
"type": "date",
|
||||
|
@ -10,9 +10,6 @@
|
||||
"mappings": {
|
||||
"triggered_watch": {
|
||||
"dynamic" : "strict",
|
||||
"_all" : {
|
||||
"enabled" : false
|
||||
},
|
||||
"properties": {
|
||||
"trigger_event": {
|
||||
"type": "object",
|
||||
|
@ -40,9 +40,6 @@
|
||||
}
|
||||
],
|
||||
"dynamic": false,
|
||||
"_all": {
|
||||
"enabled": false
|
||||
},
|
||||
"properties": {
|
||||
"watch_id": {
|
||||
"type": "keyword"
|
||||
|
@ -9,9 +9,6 @@
|
||||
"mappings": {
|
||||
"watch": {
|
||||
"dynamic" : "strict",
|
||||
"_all" : {
|
||||
"enabled" : false
|
||||
},
|
||||
"properties": {
|
||||
"_status": {
|
||||
"type": "object",
|
||||
|
@ -185,9 +185,6 @@ public class LocalExporterTemplateTests extends MonitoringIntegTestCase {
|
||||
.endObject()
|
||||
.startObject("mappings")
|
||||
.startObject("_default_")
|
||||
.startObject("_all")
|
||||
.field("enabled", false)
|
||||
.endObject()
|
||||
.field("date_detection", false)
|
||||
.startObject("properties")
|
||||
.startObject("cluster_uuid")
|
||||
|
Loading…
x
Reference in New Issue
Block a user