Документация по API переиндексации: https://www.elastic.co/guide/en/elasticsearch/client/php-api/6.0/ElasticsearchPHP_Endpoints.html#Elasticsearch_Clientreindex_reindex
/*
$params['refresh'] = (boolean) Should the effected indexes be refreshed?
['timeout'] = (time) Time each individual bulk request should wait for shards that are unavailable
['consistency'] = (enum) Explicit write consistency setting for the operation
['wait_for_completion'] = (boolean) Should the request should block until the reindex is complete
['requests_per_second'] = (float) The throttle for this request in sub-requests per second. 0 means set no throttle
['body'] = (array) The search definition using the Query DSL and the prototype for the index request (Required)
['body'] = (array) Request body
*/
$params = [
// ...
];
$client = ClientBuilder::create()->build();
$response = $client->reindex($params);
Версия Elasticsearch — 5.6.13.
Я пытался переиндексировать исходный индекс в целевой индекс с помощью API переиндексации PHP-клиента выше. SourceIndex имеет только 1 документ.
Запрос:
$params = [
'body' => [
'source' => [
'index' => 'sourceIndex',
],
'dest' => [
'index' => 'destIndex'
]
]
];
$response = $client->reindex($params);
Отклик:
(
[took] => 2
[timed_out] =>
[total] => 0
[updated] => 0
[created] => 0
[deleted] => 0
[batches] => 0
[version_conflicts] => 0
[noops] => 0
[retries] => Array
(
[bulk] => 0
[search] => 0
)
[throttled_millis] => 0
[requests_per_second] => -1
[throttled_until_millis] => 0
[failures] => Array
(
)
)
Как видите, переиндексированный документ равен 0 ([total] => 0).
Это работает просто отлично, когда это делается с помощью DevTool Kibana, но не Elassearch-PHP-клиент.
POST _reindex
{
"source": {
"index": "sourceIndex"},
"dest": {
"index": "destIndex"}
}
Любая помощь приветствуется. Если вам нужно больше информации, чтобы помочь ответить на этот вопрос, дайте мне знать.
К вашему сведению — на случай, если кто-то столкнется с той же проблемой. Проблема заключалась в том, что для исходного индекса было установлено значение refresh_interval, равное -1. Чтобы операция переиндексации работала, просто обновите исходный индекс перед вызовом API _reindex.
Других решений пока нет …