Skip to content

Instantly share code, notes, and snippets.

@karthik20522
Created May 25, 2019 03:21
Show Gist options
  • Save karthik20522/ecd6aa3ddb88f9eab60af406e3e869ac to your computer and use it in GitHub Desktop.
Save karthik20522/ecd6aa3ddb88f9eab60af406e3e869ac to your computer and use it in GitHub Desktop.
esReindexActor
val esReindexActor = system.actorOf(Props(new ElasticsearchReIndexerActor(
"localhost:9200",
"localhost:9200",
"inputIndex",
"outputIndex",
"someType",
doNothing)), name = "esReIndexer")
esReindexActor ! "init"
def doNothing(data: JValue): JValue = data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment