mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-01 19:25:56 +00:00
fix(elasticsearch): Fix inconsistencies between documents and elasticsearch mappings (#2356)
This commit is contained in:
parent
518de354d9
commit
1c6f1d7a86
@ -48,6 +48,10 @@
|
||||
"urn": {
|
||||
"type": "keyword",
|
||||
"normalizer": "custom_normalizer"
|
||||
},
|
||||
"emails": {
|
||||
"type": "keyword",
|
||||
"normalizer": "custom_normalizer"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -27,10 +27,10 @@
|
||||
"name": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"num_inputs": {
|
||||
"numInputDatasets": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_outputs": {
|
||||
"numOutputDatasets": {
|
||||
"type": "long"
|
||||
},
|
||||
"owners": {
|
||||
|
||||
@ -49,6 +49,14 @@
|
||||
},
|
||||
"normalizer": "my_normalizer"
|
||||
},
|
||||
"description": {
|
||||
"type": "text",
|
||||
"fields": {
|
||||
"keyword": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"owners": {
|
||||
"type": "keyword",
|
||||
"normalizer": "my_normalizer"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user