如何在Elasticsearch php client api中找到Alias索引

时间:2016-08-23 11:31:24

标签: php search elasticsearch

我正在创建搜索应用程序。当我将数据重新索引到elasticsearch时,重建索引时不应该有停机时间。我想在没有停机时间的情况下重建索引过程。我正在尝试这样做:

使用别名查找旧索引。 创建新索引并填充新数据 删除别名并删除旧索引 提供新的索引别名

我们如何使用php客户端库执行此操作。

1 个答案:

答案 0 :(得分:2)

我不明白为什么人们会给他下选票,问题很简单,弹性搜索的文档也不容易理解!

无论如何,这是解决方案:

class SomeClass
{
    /** @var \Elasticsearch\Client */
    private $client;

    /**
     * @param \Elasticsearch\Client $client
     */
    public function __construct(\Elasticsearch\Client $client)
    {
        $this->client = $client;
    }

    /**
     * @param string $aliasName
     *
     * @return null|string
     */
    public function findIndexNameByAlias($aliasName)
    {
        $aliases = $this->client->indices()->getAliases();
        foreach ($aliases as $index => $aliasMapping) {
            if (array_key_exists($aliasName, $aliasMapping['aliases'])) {
                return $index;
            }
        }

        return null;
    }
}

$someClass = new SomeClass(new \Elasticsearch\Client());
echo "Index associated with 'MyAlias': " . $someClass->findIndexNameByAlias('MyAlias');