官方Elasticsearch PHP模块启用TTL

时间:2014-03-05 08:49:17

标签: php elasticsearch ttl

我知道如何用php中的curl激活ttl功能,但我想知道官方Elasticsearch PHP库(https://github.com/elasticsearch/elasticsearch-php)是否也支持此功能。我已经挖掘了Lib的代码但是无法弄明白。

感谢您的帮助!

2 个答案:

答案 0 :(得分:0)

我已经创建了自己的方法来为索引类型启用ttl功能。我还在官方Github Repo上提出了一个问题:https://github.com/elasticsearch/elasticsearch-php/issues/62

class ElasticSearchClient extends \Elasticsearch\Client {
  public function enableTtl($params) {
    $index = $this->extractArgument($params, 'index');
    $type = $this->extractArgument($params, 'type');
    $body = json_encode(array($type => array('_ttl' => array('enabled' => true))));
    /** @var callback $endpointBuilder */
    $endpointBuilder = $this->dicEndpoints;

    /** @var \Elasticsearch\Endpoints\Update $endpoint */
    $endpoint = $endpointBuilder('Indices\Mapping\Put');
    $endpoint->setIndex($index)
        ->setType($type)
        ->setBody($body);
    $endpoint->setParams($params);
    $response = $endpoint->performRequest();
    return $response['data'];
  }
} 

答案 1 :(得分:0)

嗯,恕我直言,您需要使用putMapping()方法更新elasticsearch映射。无需特殊的方法调用。

以下是我们系统中的一个示例。

    $params['index'] = 'yourindexname';
    $params['type'] = 'yourtypename';

    $mapping = [
        '_ttl' => [
            'enabled' => 'true',
            'default' => '14d',
        ],
        'properties' => [
            [... add your properties here ...]
        ]
    ];

    $params['body']['yourtypename'] = $mapping;
    $this->getClient()->indices()->putMapping($params);