[Sample Dataset]

, 이제 우리는 기본에 대해서 잠깐 들여다 보았다. 이제 실제적인 dataset으로 작업을 수행해 보자. 여기 가상의 고객 은행 계좌 정보를 담고 있는 JSON document 준비했다. Document Schema 다음과 같다.


{
  
"account_number": 0,
  
"balance": 16623,
  
"firstname": "Bradshaw",
  
"lastname": "Mckenzie",
  
"age": 29,
  
"gender": "F",
  
"address": "244 Columbus Place",
  
"employer": "Euron",
  
"email": "bradshawmckenzie@euron.com",
  
"city": "Hobucken",
  
"state": "CO"
}


데이터는 www.json-generator.com 에서 생성되었다. 따라서 실제 값과 데이터의 semantics 랜덤으로 생성된 것이므로 무시하기 바란다.

받은 트랙백이 없고, 댓글이 없습니다.

댓글+트랙백 RSS :: http://www.yongbi.net/rss/response/698

[Batch Processing]

개별 document index, update, delete하기 위하여 elasticsearch _bulk API 통해서 batch 위의 작업을 수행할 있는 기능을 제공한다. 기능은 가능한 적은 network roundtrip (왕복)으로 가능한 빠르게 여러 작업을 효율적으로 수행하기 위한 메커니즘을 제공하는데 중요하다.


빠른 예제로, 다음 예제는 2개의 document 하나의 bulk 작업으로 index한다. (ID 1 : John Doe, ID 2 : Jane Doe)


curl -XPOST 'localhost:9200/customer/external/_bulk?pretty' -d '
{"index":{"_id":"1"}}
{"name": "John Doe" }
{"index":{"_id":"2"}}
{"name": "Jane Doe" }
'


다음 예제는 ID 1 첫번째 document 업데이트하고, ID 2 두번째 document 삭제하는 하나의 bulk operation이다.


curl -XPOST 'localhost:9200/customer/external/_bulk?pretty' -d '
{"update":{"_id":"1"}}
{"doc": { "name": "John Doe becomes Jane Doe" } }
{"delete":{"_id":"2"}}
'


위의 delete action 대하여 삭제할 document ID 필요하고, source document 대한 다른 내용이 없음을 주목하라.


Bulk API 순차적으로 모든 action 실행한다. 어떤 이유에서건 하나의 action 실패하면 다음에 남아 있는 operation 계속해서 진행한다. Bulk API 작업이 완료되면, action 대한 status 제공한다. 따라서, 어느 action 성공하고 실패했는지 있다.

받은 트랙백이 없고, 댓글이 없습니다.

댓글+트랙백 RSS :: http://www.yongbi.net/rss/response/697

[Deleting Documents]

Document 삭제하는 것은 정말 간단하다. 다음 예제는 ID 2 이전 customer document 어떻게 삭제하는지를 보여준다.


curl -XDELETE 'localhost:9200/customer/external/2?pretty'


Query 조건을 입력하여 매칭되는 여러 document 한번에 삭제할 수도 있다. 다음 예제는 "John"이라는 이름을 가진 모든 customer 어떻게 삭제하는지를 보여준다.


curl -XDELETE 'localhost:9200/customer/external/_query?pretty' -d '
{
  "query": { "match": { "name": "John" } }
}'


위의 URI query 의해 삭제됨을 의미하는 _query 변경되었음에 유의하라. 삭제할 query body 있다. 그러나 여전히 DELETE를 사용한다. Query 문법에 대해서는 걱정하지 않아도 된다. tutorial 뒤에서 다룰 것이다.


받은 트랙백이 없고, 댓글이 없습니다.

댓글+트랙백 RSS :: http://www.yongbi.net/rss/response/696