Packages

class UnoptimizedRunnableStats extends RunnableStats

Allows for running of stats against data stores that don't support stat queries

Linear Supertypes
RunnableStats, LazyLogging, GeoMesaStats, Closeable, AutoCloseable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UnoptimizedRunnableStats
  2. RunnableStats
  3. LazyLogging
  4. GeoMesaStats
  5. Closeable
  6. AutoCloseable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new UnoptimizedRunnableStats(ds: DataStore)

    ds

    datastore

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. def close(): Unit
    Definition Classes
    RunnableStats → Closeable → AutoCloseable
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def getBounds(sft: SimpleFeatureType, filter: Filter = Filter.INCLUDE, exact: Boolean = false): ReferencedEnvelope

    Get the bounds for data that will be returned for a query

    Get the bounds for data that will be returned for a query

    sft

    simple feature type

    filter

    cql filter

    exact

    rough estimate, or precise bounds. note: precise bounds will likely be expensive.

    returns

    bounds

    Definition Classes
    GeoMesaStats
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def getCount(sft: SimpleFeatureType, filter: Filter, exact: Boolean, queryHints: Hints): Option[Long]

    Gets the number of features that will be returned for a query.

    Gets the number of features that will be returned for a query. May return -1 if exact is false and estimate is unavailable.

    sft

    simple feature type

    filter

    cql filter

    exact

    rough estimate, or precise count. note: precise count will likely be expensive.

    queryHints

    query hints that should be used for query execution

    returns

    count of features, if available - will always be Some if exact == true

    Definition Classes
    RunnableStatsGeoMesaStats
  12. def getEnumeration[T](sft: SimpleFeatureType, attribute: String, filter: Filter, exact: Boolean): Option[EnumerationStat[T]]

    Get an enumeration stat

    Get an enumeration stat

    T

    attribute type - must correspond to attribute binding

    sft

    simple feature type

    attribute

    attribute name to query

    filter

    cql filter

    exact

    rough estimates, or precise values. note: precise values will likely be expensive.

    Definition Classes
    RunnableStatsGeoMesaStats
  13. def getFrequency[T](sft: SimpleFeatureType, attribute: String, precision: Int, filter: Filter, exact: Boolean): Option[Frequency[T]]

    Get a frequency stat

    Get a frequency stat

    T

    attribute type - must correspond to attribute binding

    sft

    simple feature type

    attribute

    attribute name to query

    precision

    precision of the estimate - @see org.locationtech.geomesa.utils.stats.Frequency

    filter

    cql filter

    exact

    rough estimates, or precise values. note: precise values will likely be expensive.

    Definition Classes
    RunnableStatsGeoMesaStats
  14. def getHistogram[T](sft: SimpleFeatureType, attribute: String, bins: Int, min: T, max: T, filter: Filter, exact: Boolean): Option[Histogram[T]]

    Get a histogram stat

    Get a histogram stat

    T

    attribute type - must correspond to attribute binding

    sft

    simple feature type

    attribute

    attribute name to query

    bins

    number of buckets used to group values

    min

    minimum value used to create the initial histogram buckets

    max

    maximum value used to create the initial histogram buckets

    filter

    cql filter

    exact

    rough estimates, or precise values. note: precise values will likely be expensive.

    Definition Classes
    RunnableStatsGeoMesaStats
  15. def getMinMax[T](sft: SimpleFeatureType, attribute: String, filter: Filter, exact: Boolean): Option[MinMax[T]]

    Get the minimum and maximum values for the given attribute

    Get the minimum and maximum values for the given attribute

    T

    attribute type - must correspond to attribute binding

    sft

    simple feature type

    attribute

    attribute name to examine

    filter

    cql filter

    exact

    rough estimate, or precise values. note: precise values will likely be expensive.

    returns

    mix/max values and overall cardinality. types will be consistent with the binding of the attribute

    Definition Classes
    RunnableStatsGeoMesaStats
  16. def getSeqStat[T <: Stat](sft: SimpleFeatureType, queries: Seq[String], filter: Filter = Filter.INCLUDE, exact: Boolean = false): Seq[T]

    Gets arbitrary stats for multiple queries

    Gets arbitrary stats for multiple queries

    T

    type bounds, must match stat query strings

    sft

    simple feature type

    queries

    stats strings

    filter

    cql filter

    exact

    rough estimate, or precise values. note: precise values will likely be expensive.

    Definition Classes
    GeoMesaStats
  17. def getStat[T <: Stat](sft: SimpleFeatureType, query: String, filter: Filter, exact: Boolean): Option[T]

    Get arbitrary stats

    Get arbitrary stats

    T

    type bounds, must match stat query strings

    sft

    simple feature type

    query

    stats string

    filter

    cql filter

    exact

    rough estimate, or precise values. note: precise values will likely be expensive.

    returns

    stats, if any

    Definition Classes
    RunnableStatsGeoMesaStats
  18. def getTopK[T](sft: SimpleFeatureType, attribute: String, filter: Filter, exact: Boolean): Option[TopK[T]]

    Get a top k stat

    Get a top k stat

    T

    attribute type - must correspond to attribute binding

    sft

    simple feature type

    attribute

    attribute name to query

    filter

    cql filter

    exact

    rough estimates, or precise values. note: precise values will likely be expensive.

    Definition Classes
    RunnableStatsGeoMesaStats
  19. def getZ3Histogram(sft: SimpleFeatureType, geom: String, dtg: String, period: TimePeriod, bins: Int, filter: Filter, exact: Boolean): Option[Z3Histogram]

    Get a Z3 histogram stat, where values are grouped based on combined geometry + date

    Get a Z3 histogram stat, where values are grouped based on combined geometry + date

    sft

    simple feature type

    geom

    geometry attribute to query

    dtg

    date attribute to query

    period

    time period used to calculate bins for each value

    bins

    number of buckets used to group values

    filter

    cql filter

    exact

    rough estimates, or precise values. note: precise values will likely be expensive.

    Definition Classes
    RunnableStatsGeoMesaStats
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. lazy val logger: Logger
    Attributes
    protected
    Definition Classes
    LazyLogging
    Annotations
    @transient()
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. def query[T <: Stat](sft: SimpleFeatureType, filter: Filter, query: String, queryHints: Hints): Option[T]

    Run an exact query against the data store

    Run an exact query against the data store

    T

    stat type

    sft

    simple feature type

    filter

    filter

    query

    stat string

    Attributes
    protected
    Definition Classes
    UnoptimizedRunnableStatsRunnableStats
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. val writer: GeoMesaStatWriter

    Gets a writer for updating stats

    Gets a writer for updating stats

    Definition Classes
    RunnableStatsGeoMesaStats

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from RunnableStats

Inherited from LazyLogging

Inherited from GeoMesaStats

Inherited from Closeable

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped