POST _reindex { "source": { "index": "bank", "type": "account" }, "dest": { "index": "newbank" } } GET /bank/_search GET /newbank
POST _reindex
{
"source": {
"index": "bank",
"type": "account"
},
"dest": {
"index": "newbank"
}
}GET /bank/_search
GET /newbank
#! Deprecation: [types removal] Specifying types in reindex requests is deprecated. { "took" : 2078, "timed_out" : false, "total" : 1000, "updated" : 0, "created" : 1000, "deleted" : 0, "batches" : 1, "version_conflicts" : 0, "noops" : 0, "retries" : { "bulk" : 0, "search" : 0 }, "throttled_millis" : 0, "requests_per_second" : -1.0, "throttled_until_millis" : 0, "failures" : [ ] }
#! Deprecation: [types removal] Specifying types in reindex requests is deprecated.
{
"took" : 2078,
"timed_out" : false,
"total" : 1000,
"updated" : 0,
"created" : 1000,
"deleted" : 0,
"batches" : 1,
"version_conflicts" : 0,
"noops" : 0,
"retries" : {
"bulk" : 0,
"search" : 0
},
"throttled_millis" : 0,
"requests_per_second" : -1.0,
"throttled_until_millis" : 0,
"failures" : [ ]
}
POST _reindex { "source": { "index": "bank", "type": "account" }, "dest": { "index": "newbank" } } GET /bank/_search GET /newbank/_search ## 不用type,老的数据可以通过_reindex迁移
POST _reindex
{
"source": {
"index": "bank",
"type": "account"
},
"dest": {
"index": "newbank"
}
}GET /bank/_search
GET /newbank/_search
## 不用type,老的数据可以通过_reindex迁移
{ "took" : 10, "timed_out" : false, "_shards" : { "total" : 1, "successful" : 1, "skipped" : 0, "failed" : 0 }, "hits" : { "total" : { "value" : 1000, "relation" : "eq" }, "max_score" : 1.0, "hits" : [ { "_index" : "newbank", "_type" : "_doc", "_id" : "1", "_score" : 1.0, "_source" : { "account_number" : 1, "balance" : 39225, "firstname" : "Amber", "lastname" : "Duke", "age" : 32, "gender" : "M", "address" : "880 Holmes Lane", "employer" : "Pyrami", "email" : "[email protected]", "city" : "Brogan", "state" : "IL" } }, { "_index" : "newbank", "_type" : "_doc", "_id" : "6", "_score" : 1.0, "_source" : { "account_number" : 6, "balance" : 5686, "firstname" : "Hattie", "lastname" : "Bond", "age" : 36, "gender" : "M", "address" : "671 Bristol Street", "employer" : "Netagy", "email" : "[email protected]", "city" : "Dante", "state" : "TN" } }, { "_index" : "newbank", "_type" : "_doc", "_id" : "13", "_score" : 1.0, "_source" : { "account_number" : 13, "balance" : 32838, "firstname" : "Nanette", "lastname" : "Bates", "age" : 28, "gender" : "F", "address" : "789 Madison Street", "employer" : "Quility", "email" : "[email protected]", "city" : "Nogal", "state" : "VA" } }, { "_index" : "newbank", "_type" : "_doc", "_id" : "18", "_score" : 1.0, "_source" : { "account_number" : 18, "balance" : 4180, "firstname" : "Dale", "lastname" : "Adams", "age" : 33, "gender" : "M", "address" : "467 Hutchinson Court", "employer" : "Boink", "email" : "[email protected]", "city" : "Orick", "state" : "MD" } }, { "_index" : "newbank", "_type" : "_doc", "_id" : "20", "_score" : 1.0, "_source" : { "account_number" : 20, "balance" : 16418, "firstname" : "Elinor", "lastname" : "Ratliff", "age" : 36, "gender" : "M", "address" : "282 Kings Place", "employer" : "Scentric", "email" : "[email protected]", "city" : "Ribera", "state" : "WA" } }, { "_index" : "newbank", "_type" : "_doc", "_id" : "25", "_score" : 1.0, "_source" : { "account_number" : 25, "balance" : 40540, "firstname" : "Virginia", "lastname" : "Ayala", "age" : 39, "gender" : "F", "address" : "171 Putnam Avenue", "employer" : "Filodyne", "email" : "[email protected]", "city" : "Nicholson", "state" : "PA" } }, { "_index" : "newbank", "_type" : "_doc", "_id" : "32", "_score" : 1.0, "_source" : { "account_number" : 32, "balance" : 48086, "firstname" : "Dillard", "lastname" : "Mcpherson", "age" : 34, "gender" : "F", "address" : "702 Quentin Street", "employer" : "Quailcom", "email" : "[email protected]", "city" : "Veguita", "state" : "IN" } }, { "_index" : "newbank", "_type" : "_doc", "_id" : "37", "_score" : 1.0, "_source" : { "account_number" : 37, "balance" : 18612, "firstname" : "Mcgee", "lastname" : "Mooney", "age" : 39, "gender" : "M", "address" : "826 Fillmore Place", "employer" : "Reversus", "email" : "[email protected]", "city" : "Tooleville", "state" : "OK" } }, { "_index" : "newbank", "_type" : "_doc", "_id" : "44", "_score" : 1.0, "_source" : { "account_number" : 44, "balance" : 34487, "firstname" : "Aurelia", "lastname" : "Harding", "age" : 37, "gender" : "M", "address" : "502 Baycliff Terrace", "employer" : "Orbalix", "email" : "[email protected]", "city" : "Yardville", "state" : "DE" } }, { "_index" : "newbank", "_type" : "_doc", "_id" : "49", "_score" : 1.0, "_source" : { "account_number" : 49, "balance" : 29104, "firstname" : "Fulton", "lastname" : "Holt", "age" : 23, "gender" : "F", "address" : "451 Humboldt Street", "employer" : "Anocha", "email" : "[email protected]", "city" : "Sunriver", "state" : "RI" } } ] } }
{
"took" : 10,
"timed_out" : false,
"_shards" : {
"total" : 1,
"successful" : 1,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1000,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "newbank",
"_type" : "_doc",
"_id" : "1",
"_score" : 1.0,
"_source" : {
"account_number" : 1,
"balance" : 39225,
"firstname" : "Amber",
"lastname" : "Duke",
"age" : 32,
"gender" : "M",
"address" : "880 Holmes Lane",
"employer" : "Pyrami",
"email" : "[email protected]",
"city" : "Brogan",
"state" : "IL"
}
},
{
"_index" : "newbank",
"_type" : "_doc",
"_id" : "6",
"_score" : 1.0,
"_source" : {
"account_number" : 6,
"balance" : 5686,
"firstname" : "Hattie",
"lastname" : "Bond",
"age" : 36,
"gender" : "M",
"address" : "671 Bristol Street",
"employer" : "Netagy",
"email" : "[email protected]",
"city" : "Dante",
"state" : "TN"
}
},
{
"_index" : "newbank",
"_type" : "_doc",
"_id" : "13",
"_score" : 1.0,
"_source" : {
"account_number" : 13,
"balance" : 32838,
"firstname" : "Nanette",
"lastname" : "Bates",
"age" : 28,
"gender" : "F",
"address" : "789 Madison Street",
"employer" : "Quility",
"email" : "[email protected]",
"city" : "Nogal",
"state" : "VA"
}
},
{
"_index" : "newbank",
"_type" : "_doc",
"_id" : "18",
"_score" : 1.0,
"_source" : {
"account_number" : 18,
"balance" : 4180,
"firstname" : "Dale",
"lastname" : "Adams",
"age" : 33,
"gender" : "M",
"address" : "467 Hutchinson Court",
"employer" : "Boink",
"email" : "[email protected]",
"city" : "Orick",
"state" : "MD"
}
},
{
"_index" : "newbank",
"_type" : "_doc",
"_id" : "20",
"_score" : 1.0,
"_source" : {
"account_number" : 20,
"balance" : 16418,
"firstname" : "Elinor",
"lastname" : "Ratliff",
"age" : 36,
"gender" : "M",
"address" : "282 Kings Place",
"employer" : "Scentric",
"email" : "[email protected]",
"city" : "Ribera",
"state" : "WA"
}
},
{
"_index" : "newbank",
"_type" : "_doc",
"_id" : "25",
"_score" : 1.0,
"_source" : {
"account_number" : 25,
"balance" : 40540,
"firstname" : "Virginia",
"lastname" : "Ayala",
"age" : 39,
"gender" : "F",
"address" : "171 Putnam Avenue",
"employer" : "Filodyne",
"email" : "[email protected]",
"city" : "Nicholson",
"state" : "PA"
}
},
{
"_index" : "newbank",
"_type" : "_doc",
"_id" : "32",
"_score" : 1.0,
"_source" : {
"account_number" : 32,
"balance" : 48086,
"firstname" : "Dillard",
"lastname" : "Mcpherson",
"age" : 34,
"gender" : "F",
"address" : "702 Quentin Street",
"employer" : "Quailcom",
"email" : "[email protected]",
"city" : "Veguita",
"state" : "IN"
}
},
{
"_index" : "newbank",
"_type" : "_doc",
"_id" : "37",
"_score" : 1.0,
"_source" : {
"account_number" : 37,
"balance" : 18612,
"firstname" : "Mcgee",
"lastname" : "Mooney",
"age" : 39,
"gender" : "M",
"address" : "826 Fillmore Place",
"employer" : "Reversus",
"email" : "[email protected]",
"city" : "Tooleville",
"state" : "OK"
}
},
{
"_index" : "newbank",
"_type" : "_doc",
"_id" : "44",
"_score" : 1.0,
"_source" : {
"account_number" : 44,
"balance" : 34487,
"firstname" : "Aurelia",
"lastname" : "Harding",
"age" : 37,
"gender" : "M",
"address" : "502 Baycliff Terrace",
"employer" : "Orbalix",
"email" : "[email protected]",
"city" : "Yardville",
"state" : "DE"
}
},
{
"_index" : "newbank",
"_type" : "_doc",
"_id" : "49",
"_score" : 1.0,
"_source" : {
"account_number" : 49,
"balance" : 29104,
"firstname" : "Fulton",
"lastname" : "Holt",
"age" : 23,
"gender" : "F",
"address" : "451 Humboldt Street",
"employer" : "Anocha",
"email" : "[email protected]",
"city" : "Sunriver",
"state" : "RI"
}
}
]
}
}