How to re-insert json data retrieved in Elasticsearch

I want to put the searched Json Data as below in Elasticsearch of another cluster. Will it be possible?

Json file

    "_type" : "_doc",
    "_id" : "1",
    "_score" : 1.0,
    "_source" : {
      "helpMe" : "hi hi hi hi hi",
    },
    "_type" : "_doc",
    "_id" : "2",
    "_score" : 1.0,
    "_source" : {
      "helpMe" : "hi hi hi hi hi",
    },
    "_type" : "_doc",
    "_id" : "3",
    "_score" : 1.0,
    "_source" : {
      "helpMe" : "hi hi hi hi hi",
    }...

or

"hits" : {
    "_type" : "_doc",
    "_id" : "1",
    "_score" : 1.0,
    "_source" : {
      "helpMe" : "hi hi hi hi hi",
    },
    "_type" : "_doc",
    "_id" : "2",
    "_score" : 1.0,
    "_source" : {
      "helpMe" : "hi hi hi hi hi",
    },
    "_type" : "_doc",
    "_id" : "3",
    "_score" : 1.0,
    "_source" : {
      "helpMe" : "hi hi hi hi hi",
    }...
}

I want to move the json I searched in cluster A to another cluster. (Don't use snap-shot)
like "elasticdump"

Reindex from reroute

I want to delete the posts. i'm solved.
Should be implemented directly.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.