Last active
August 29, 2015 14:06
-
-
Save yoshi0309/5169a413a80a201faad0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.yoslab.process.writer; | |
import java.util.List; | |
import org.elasticsearch.action.bulk.BulkRequestBuilder; | |
import org.elasticsearch.action.bulk.BulkResponse; | |
import org.elasticsearch.client.Client; | |
import org.elasticsearch.client.transport.TransportClient; | |
import org.elasticsearch.common.transport.InetSocketTransportAddress; | |
import com.fasterxml.jackson.core.JsonProcessingException; | |
import com.fasterxml.jackson.databind.ObjectMapper; | |
import com.yoslab.exception.CommonException; | |
import com.yoslab.model.ItemRecord; | |
import com.yoslab.model.MapItemRecord; | |
import com.yoslab.process.ItemWriter; | |
public class ElasticsearchRecordWriter implements ItemWriter<ItemRecord> { | |
Client client = null; | |
@Override | |
public void write(List<ItemRecord> items) throws CommonException { | |
if(items.size() == 0) return; | |
BulkRequestBuilder bulkRequest = client.prepareBulk(); | |
for(ItemRecord item : items){ | |
MapItemRecord m = (MapItemRecord)item; | |
ObjectMapper mapper = new ObjectMapper(); | |
String json = null; | |
try { | |
json = mapper.writeValueAsString(m); | |
} catch (JsonProcessingException e) { | |
throw new CommonException(null,"json変換時にエラーが発生しました。",e); | |
} | |
//TODO need to get field name for id. | |
String id = (String)m.getValue("id"); | |
//TODO set index name & type name | |
// IndexResponse response = client | |
// .prepareIndex("posts", "article", id).setSource(json) | |
// .execute().actionGet(); | |
//using bulk request. | |
bulkRequest.add(client.prepareIndex("posts", "article", id).setSource(json)); | |
} | |
BulkResponse bulkResponse = bulkRequest.execute().actionGet(); | |
if (bulkResponse.hasFailures()) { | |
throw new CommonException(null,bulkResponse.buildFailureMessage()); | |
} | |
} | |
@Override | |
public void postProcess() throws CommonException { | |
//NOOP | |
} | |
@Override | |
public void commit() throws CommonException { | |
//NOOP | |
} | |
@Override | |
public void close() { | |
client.close(); | |
} | |
@Override | |
public void init() throws CommonException { | |
client = new TransportClient() | |
.addTransportAddress(new InetSocketTransportAddress( | |
"localhost", 9300)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You cannot connect ES over HTTP Proxy. Because Elaticsearch and Client API is talking with TCP.