Class InternalTDigestPercentiles

All Implemented Interfaces:
java.lang.Iterable<Percentile>, NamedWriteable, Writeable, org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.xcontent.ToXContentFragment, Aggregation, NumericMetricsAggregation, NumericMetricsAggregation.MultiValue, Percentiles

public class InternalTDigestPercentiles
extends InternalNumericMetricsAggregation.MultiValue
implements Percentiles
  • Field Details

  • Constructor Details

    • InternalTDigestPercentiles

      public InternalTDigestPercentiles​(java.lang.String name, double[] percents, TDigestState state, boolean keyed, DocValueFormat formatter, java.util.Map<java.lang.String,​java.lang.Object> metadata)
    • InternalTDigestPercentiles

      public InternalTDigestPercentiles​(StreamInput in) throws java.io.IOException
      Read from a stream.
      Throws:
      java.io.IOException
  • Method Details

    • getWriteableName

      public java.lang.String getWriteableName()
      Description copied from interface: NamedWriteable
      Returns the name of the writeable object
      Specified by:
      getWriteableName in interface NamedWriteable
    • iterator

      public java.util.Iterator<Percentile> iterator()
      Specified by:
      iterator in interface java.lang.Iterable<Percentile>
    • percentile

      public double percentile​(double percent)
      Description copied from interface: Percentiles
      Return the value associated with the provided percentile.
      Specified by:
      percentile in interface Percentiles
    • percentileAsString

      public java.lang.String percentileAsString​(double percent)
      Description copied from interface: Percentiles
      Return the value associated with the provided percentile as a String.
      Specified by:
      percentileAsString in interface Percentiles
    • value

      public double value​(double key)
    • createReduced

      protected org.elasticsearch.search.aggregations.metrics.AbstractInternalTDigestPercentiles createReduced​(java.lang.String name, double[] keys, TDigestState merged, boolean keyed, java.util.Map<java.lang.String,​java.lang.Object> metadata)
    • doWriteTo

      protected void doWriteTo​(StreamOutput out) throws java.io.IOException
      Specified by:
      doWriteTo in class InternalAggregation
      Throws:
      java.io.IOException
    • value

      public double value​(java.lang.String name)
      Description copied from interface: NumericMetricsAggregation.MultiValue
      Return the result of 1 value by name
      Specified by:
      value in interface NumericMetricsAggregation.MultiValue
      Specified by:
      value in class InternalNumericMetricsAggregation.MultiValue
      Parameters:
      name - of the value
      Returns:
      the value
    • valueNames

      public java.lang.Iterable<java.lang.String> valueNames()
      Description copied from interface: NumericMetricsAggregation.MultiValue
      Return an iterable over all value names this multi value aggregation provides. The iterable might be created on the fly, if you need to call this multiple times, please cache the result in a variable on caller side..
      Returns:
      iterable over all value names
    • formatter

      public DocValueFormat formatter()
    • getEstimatedMemoryFootprint

      public long getEstimatedMemoryFootprint()
    • getState

      public TDigestState getState()
      Return the internal TDigestState sketch for this metric.
    • getKeys

      public double[] getKeys()
      Return the keys (percentiles) requested.
    • keyed

      public boolean keyed()
      Should the output be keyed.
    • reduce

      public org.elasticsearch.search.aggregations.metrics.AbstractInternalTDigestPercentiles reduce​(java.util.List<InternalAggregation> aggregations, InternalAggregation.ReduceContext reduceContext)
      Description copied from class: InternalAggregation
      Reduces the given aggregations to a single one and returns it. In most cases, the assumption will be the all given aggregations are of the same type (the same type as this aggregation). For best efficiency, when implementing, try reusing an existing instance (typically the first in the given list) to save on redundant object construction.
      Specified by:
      reduce in class InternalAggregation
      See Also:
      InternalAggregation.mustReduceOnSingleInternalAgg()
    • doXContentBody

      public org.elasticsearch.common.xcontent.XContentBuilder doXContentBody​(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException
      Specified by:
      doXContentBody in class InternalAggregation
      Throws:
      java.io.IOException
    • equals

      public boolean equals​(java.lang.Object obj)
      Overrides:
      equals in class InternalNumericMetricsAggregation
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class InternalNumericMetricsAggregation