mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-24 17:59:52 +00:00
Fix column name indexes (#8990)
This commit is contained in:
parent
285e7dc1e7
commit
95f0f4d9e1
@ -100,8 +100,13 @@ DASHBOARD_ELASTICSEARCH_INDEX_MAPPING = textwrap.dedent(
|
||||
"type": "text"
|
||||
},
|
||||
"name": {
|
||||
"type": "text",
|
||||
"analyzer": "om_analyzer"
|
||||
"type": "keyword",
|
||||
"fields": {
|
||||
"keyword": {
|
||||
"type": "keyword",
|
||||
"ignore_above": 256
|
||||
}
|
||||
}
|
||||
},
|
||||
"fullyQualifiedName": {
|
||||
"type": "text"
|
||||
|
@ -89,8 +89,13 @@ MLMODEL_ELASTICSEARCH_INDEX_MAPPING = textwrap.dedent(
|
||||
"mlFeatures": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "text",
|
||||
"analyzer": "om_analyzer"
|
||||
"type": "keyword",
|
||||
"fields": {
|
||||
"keyword": {
|
||||
"type": "keyword",
|
||||
"ignore_above": 256
|
||||
}
|
||||
}
|
||||
},
|
||||
"dataType": {
|
||||
"type": "text"
|
||||
@ -117,8 +122,13 @@ MLMODEL_ELASTICSEARCH_INDEX_MAPPING = textwrap.dedent(
|
||||
"mlHyperParameters": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "text",
|
||||
"analyzer": "simple"
|
||||
"type": "keyword",
|
||||
"fields": {
|
||||
"keyword": {
|
||||
"type": "keyword",
|
||||
"ignore_above": 256
|
||||
}
|
||||
}
|
||||
},
|
||||
"value": {
|
||||
"type": "text"
|
||||
|
@ -88,8 +88,13 @@ PIPELINE_ELASTICSEARCH_INDEX_MAPPING = textwrap.dedent(
|
||||
"tasks": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "text",
|
||||
"analyzer": "om_analyzer"
|
||||
"type": "keyword",
|
||||
"fields": {
|
||||
"keyword": {
|
||||
"type": "keyword",
|
||||
"ignore_above": 256
|
||||
}
|
||||
}
|
||||
},
|
||||
"displayName": {
|
||||
"type": "text",
|
||||
|
@ -88,8 +88,13 @@ TABLE_ELASTICSEARCH_INDEX_MAPPING = textwrap.dedent(
|
||||
"columns": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "text",
|
||||
"analyzer": "om_analyzer"
|
||||
"type": "keyword",
|
||||
"fields": {
|
||||
"keyword": {
|
||||
"type": "keyword",
|
||||
"ignore_above": 256
|
||||
}
|
||||
}
|
||||
},
|
||||
"dataType": {
|
||||
"type": "text"
|
||||
|
@ -84,8 +84,13 @@
|
||||
"type": "text"
|
||||
},
|
||||
"name": {
|
||||
"type": "text",
|
||||
"analyzer": "om_analyzer"
|
||||
"type": "keyword",
|
||||
"fields": {
|
||||
"keyword": {
|
||||
"type": "keyword",
|
||||
"ignore_above": 256
|
||||
}
|
||||
}
|
||||
},
|
||||
"fullyQualifiedName": {
|
||||
"type": "text"
|
||||
|
@ -72,8 +72,13 @@
|
||||
"mlFeatures": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "text",
|
||||
"analyzer": "om_analyzer"
|
||||
"type": "keyword",
|
||||
"fields": {
|
||||
"keyword": {
|
||||
"type": "keyword",
|
||||
"ignore_above": 256
|
||||
}
|
||||
}
|
||||
},
|
||||
"dataType": {
|
||||
"type": "text"
|
||||
|
@ -72,8 +72,13 @@
|
||||
"tasks": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "text",
|
||||
"analyzer": "om_analyzer"
|
||||
"type": "keyword",
|
||||
"fields": {
|
||||
"keyword": {
|
||||
"type": "keyword",
|
||||
"ignore_above": 256
|
||||
}
|
||||
}
|
||||
},
|
||||
"displayName": {
|
||||
"type": "text",
|
||||
|
@ -71,8 +71,13 @@
|
||||
"columns": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "text",
|
||||
"analyzer": "om_analyzer"
|
||||
"type": "keyword",
|
||||
"fields": {
|
||||
"keyword": {
|
||||
"type": "keyword",
|
||||
"ignore_above": 256
|
||||
}
|
||||
}
|
||||
},
|
||||
"dataType": {
|
||||
"type": "text"
|
||||
|
Loading…
x
Reference in New Issue
Block a user