엘라스틱 서치 인덱스 삭제

donghwikim00·2025년 1월 24일

19_elastic_search

목록 보기
4/11
  • delete 메서드를 사용해서 인덱스 자체를 삭제 할 수도 있다.

예제 코드

// 주소/고유인덱스 삭제하기

const axios = require('axios');

const url = 'http://localhost:9200/test_index2';

axios.delete(url)
    .then(res => {
        console.log(res.data);
    })
    .catch(err =>{
        console.error(err);
    });
  • test_index2라는 이름의 인덱스가 삭제

  • GET 메서드를 사용해도 조회가 되지 않는것을 확인할 수 있다.

profile
기술 블로그입니다. 여러 언어에 대한 정리, 프로젝트 설명 등을 기록합니다.

0개의 댓글