Elasticsearch

[Elasticsearch] 엘라스틱서치 데이터 입력

Jack Moon 2015. 8. 20. 10:19

[root@cn test]# cat test.json
{index:{"_id":3}}
{"TITLE":"메르켈 獨총리, 배기가스 규제 반대한 이유는 ‘BMW 기부금‘?","LINK":"http:\/\/www.edaily.co.kr\/news\/newspath.asp?newsid=03037286602973576","MEDIA":"이데일리"}
{index:{"_id":4}}
{"TITLE":"독일 메르켈 총리, ‘BMW와 유착설‘에 곤혹","LINK":"http:\/\/news.naver.com\/main\/read.nhn?mode=LSD&mid=sec&sid1=101&oid=001&aid=0006538507","MEDIA":"연합뉴스"}

 

[root@cn test]# curl -XPOST localhost:9200/books/book/_bulk --data-binary @test.json
{"took":572,"errors":false,"items":[{"index":{"_index":"books","_type":"book","_id":"3","_version":1,"status":201}},{"index":{"_index":"books","_type":"book","_id":"4","_version":1,"status":201}}]}[root@cn test]# curl -XGET localhost:9200/books/book/3
{"_index":"books","_type":"book","_id":"3","_version":1,"found":true,"_source":{"TITLE":"메르켈 獨총리, 배기가스 규제 반대한 이유는 ‘BMW 기부금‘?","LINK":"http:\/\/www.edaily.co.kr\/news\/newspath.asp?newsid=03037286602973576","MEDIA":"이데일리"}}

 

[root@cn test]# curl -XGET localhost:9200/books/book/3?pretty
{
  "_index" : "books",
  "_type" : "book",
  "_id" : "3",
  "_version" : 1,
  "found" : true,
  "_source":{"TITLE":"메르켈 獨총리, 배기가스 규제 반대한 이유는 ‘BMW 기부금‘?","LINK":"http:\/\/www.edaily.co.kr\/news\/newspath.asp?newsid=03037286602973576","MEDIA":"이데일리"}
}

 

[root@cn test]# curl -XGET localhost:9200/books/book/4?pretty
{
  "_index" : "books",
  "_type" : "book",
  "_id" : "4",
  "_version" : 1,
  "found" : true,
  "_source":{"TITLE":"독일 메르켈 총리, ‘BMW와 유착설‘에 곤혹","LINK":"http:\/\/news.naver.com\/main\/read.nhn?mode=LSD&mid=sec&sid1=101&oid=001&aid=0006538507","MEDIA":"연합뉴스"}
}