inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

ELK 스택 (ElasticSearch, Logstash, Kibana) 으로 데이터 분석

엘라스틱서치 매핑 (Mapping)

classesRating_mapping.json 잘안될떄..(7.16이상버전)

212

tearshome
0

{

"class" : {

"properties" : {

"title" : {

"type" : "text"

},

"professor" : {

"type" : "text"

},

"major" : {

"type" : "text"

},

"semester" : {

"type" : "text"

},

"student_count" : {

"type" : "long"

},

"unit" : {

"type" : "long"

},

"rating" : {

"type" : "long"

},

"submit_date" : {

"type" : "date",

"format" : "strict_date_optional_time||epoch_millis"

},

"school_location" : {

"properties": {

"coordinates": {

"type": "geo_point"

}

}

}

}

}

}

 

답변 0