blob: 3e51f056a3569869def7cdab3cdaefc996cfbc4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
<?php
namespace Elastica\Aggregation;
/**
* Class ScriptedMetric.
*
* @link http://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-metrics-scripted-metric-aggregation.html
*/
class ScriptedMetric extends AbstractAggregation
{
/**
* @param string $name the name if this aggregation
* @param string|null $initScript Executed prior to any collection of documents
* @param string|null $mapScript Executed once per document collected
* @param string|null $combineScript Executed once on each shard after document collection is complete
* @param string|null $reduceScript Executed once on the coordinating node after all shards have returned their results
*/
public function __construct($name, $initScript = null, $mapScript = null, $combineScript = null, $reduceScript = null)
{
parent::__construct($name);
if ($initScript) {
$this->setInitScript($initScript);
}
if ($mapScript) {
$this->setMapScript($mapScript);
}
if ($combineScript) {
$this->setCombineScript($combineScript);
}
if ($reduceScript) {
$this->setReduceScript($reduceScript);
}
}
/**
* Set the field for this aggregation.
*
* @param string $script the name of the document field on which to perform this aggregation
*
* @return $this
*/
public function setCombineScript($script)
{
return $this->setParam('combine_script', $script);
}
/**
* Set the field for this aggregation.
*
* @param string $script the name of the document field on which to perform this aggregation
*
* @return $this
*/
public function setInitScript($script)
{
return $this->setParam('init_script', $script);
}
/**
* Set the field for this aggregation.
*
* @param string $script the name of the document field on which to perform this aggregation
*
* @return $this
*/
public function setMapScript($script)
{
return $this->setParam('map_script', $script);
}
/**
* Set the field for this aggregation.
*
* @param string $script the name of the document field on which to perform this aggregation
*
* @return $this
*/
public function setReduceScript($script)
{
return $this->setParam('reduce_script', $script);
}
}
|