mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-15 19:03:43 +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": {
|
"urn": {
|
||||||
"type": "keyword",
|
"type": "keyword",
|
||||||
"normalizer": "custom_normalizer"
|
"normalizer": "custom_normalizer"
|
||||||
|
},
|
||||||
|
"emails": {
|
||||||
|
"type": "keyword",
|
||||||
|
"normalizer": "custom_normalizer"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -27,10 +27,10 @@
|
|||||||
"name": {
|
"name": {
|
||||||
"type": "keyword"
|
"type": "keyword"
|
||||||
},
|
},
|
||||||
"num_inputs": {
|
"numInputDatasets": {
|
||||||
"type": "long"
|
"type": "long"
|
||||||
},
|
},
|
||||||
"num_outputs": {
|
"numOutputDatasets": {
|
||||||
"type": "long"
|
"type": "long"
|
||||||
},
|
},
|
||||||
"owners": {
|
"owners": {
|
||||||
|
|||||||
@ -49,6 +49,14 @@
|
|||||||
},
|
},
|
||||||
"normalizer": "my_normalizer"
|
"normalizer": "my_normalizer"
|
||||||
},
|
},
|
||||||
|
"description": {
|
||||||
|
"type": "text",
|
||||||
|
"fields": {
|
||||||
|
"keyword": {
|
||||||
|
"type": "keyword"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"owners": {
|
"owners": {
|
||||||
"type": "keyword",
|
"type": "keyword",
|
||||||
"normalizer": "my_normalizer"
|
"normalizer": "my_normalizer"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user