Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- mysql all table truncate
- mysql 사용자 생성
- mysql 자동복구
- mysql auto repair
- 서버 재시작시 mount
- mysql DB권한
- mysql 손상
- linux mount 방법
- mariadb galera cluster
- mysql table 손상
- mariadb 모든 데이터 삭제
- mysql database 검사
- mysql 모든 데이터 삭제
- 쿠키 하루 저장
- mysql database truncate
- galera cluster 재시작
- mysqlcheck
- mysql galera cluster
- elasticsearch mapping생성
- mysql yum install
- cookie 하루 저장
- mysql yum 설치
- docker 설치
- 쿠키 하루
- centos mount
- 쿠키 오늘
- mysql recovery
- cookie today
- mysql 검사
- mariadb all table truncate
Archives
- Today
- Total
목록elasticsearch mapping생성 (1)
IT
ElasticSearch Index 생성 및 Mapping 정보 동시 생성(mapping lowercase 오류)
elastic index생성 및 mapping 정보 같이 생성 mapping lowercase 오류 "archiveFileTf": { "type": "keyword", "normalizer": "keyword_lowercase" }, 위와 같이 인덱스 생성시 ketword_lowercase 를 인식하지 못하는 오류가 발생시 아래와 같이 setting안에 아래 json 데이터 추가 "analysis": { "normalizer": { "keyword_lowercase": { "type": "custom", "filter": ["lowercase"] } } # curl -XPUT localhost:9200/index명 -H 'Content-Type:application/json' -d @~~.json ~~...
ElasticSearch
2020. 9. 21. 10:12