Open oy-halinlee opened 2 months ago
확인 결과 하기와 같이 avro schema & elasticsearch template 전달드립니다.
avro schema
{
"namespace": "co.kr.oliveyoung",
"type": "record",
"name": "UserV2",
"fields": [
{"name": "name", "type": "string"},
{"name": "age", "type": ["int", "null"]},
{"name": "favorite_color", "type": ["string", "null"]}
]
}
elasticsearch mapping
{
"mappings": {
"properties": {
"name": {
"type": "text"
},
"age": {
"type": "integer",
"null_value": null
},
"favorite_color": {
"type": "keyword",
"null_value": null
}
}
}
}
indexname: alias-user-v2
안녕하세요~ OY 팀 이하린입니다.
schema 변경을 요청드립니다.
예시데이터 before
after
검토 부탁드립니다.