Trait

org.locationtech.geomesa.kudu.index

KuduTieredFeatureIndex

Related Doc: package index

Permalink

trait KuduTieredFeatureIndex[T, U] extends KuduFeatureIndex[T, U]

Linear Supertypes
KuduFeatureIndex[T, U], GeoMesaFeatureIndex[KuduDataStore, KuduFeature, WriteOperation], LazyLogging, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. KuduTieredFeatureIndex
  2. KuduFeatureIndex
  3. GeoMesaFeatureIndex
  4. LazyLogging
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. type TypedFilterStrategy = FilterStrategy[KuduDataStore, KuduFeature, WriteOperation]

    Permalink
    Definition Classes
    GeoMesaFeatureIndex

Abstract Value Members

  1. abstract def configurePartitions(sft: SimpleFeatureType, schema: Schema, config: Map[String, String], options: CreateTableOptions): Unit

    Permalink

    Create initial partitions based on table splitting config

    Create initial partitions based on table splitting config

    sft

    simple feature type

    schema

    table schema

    config

    table splitting config

    options

    options to modify with partitions

    Attributes
    protected
    Definition Classes
    KuduFeatureIndex
  2. abstract def createKeyValues(toIndexKey: (SimpleFeature) ⇒ Seq[U], toTieredIndexKey: (SimpleFeature) ⇒ Seq[Array[Byte]])(kf: KuduFeature): Seq[Seq[KuduValue[_]]]

    Permalink
    Attributes
    protected
  3. abstract def createKeyValues(toIndexKey: (SimpleFeature) ⇒ Seq[U])(kf: KuduFeature): Seq[Seq[KuduValue[_]]]

    Permalink

    Creates key values for insert

    Creates key values for insert

    toIndexKey

    index key creation

    kf

    feature to insert

    Attributes
    protected
    Definition Classes
    KuduFeatureIndex
  4. abstract def getCost(sft: SimpleFeatureType, stats: Option[GeoMesaStats], filter: TypedFilterStrategy, transform: Option[SimpleFeatureType]): Long

    Permalink
    Definition Classes
    GeoMesaFeatureIndex
  5. abstract def getFilterStrategy(sft: SimpleFeatureType, filter: Filter, transform: Option[SimpleFeatureType]): Seq[TypedFilterStrategy]

    Permalink
    Definition Classes
    GeoMesaFeatureIndex
  6. abstract def keyColumns: Seq[KuduColumnAdapter[_]]

    Permalink

    Columns that are part of the primary key, used for range planning

    Columns that are part of the primary key, used for range planning

    Attributes
    protected
    Definition Classes
    KuduFeatureIndex
  7. abstract def keySpace: IndexKeySpace[T, U]

    Permalink

    Primary key space used by this index

    Primary key space used by this index

    Attributes
    protected
    Definition Classes
    KuduFeatureIndex
  8. abstract def name: String

    Permalink
    Definition Classes
    GeoMesaFeatureIndex
  9. abstract def tieredKeySpace(sft: SimpleFeatureType): Option[IndexKeySpace[_, _]]

    Permalink

    Tiered key space beyond the primary one, if any

    Tiered key space beyond the primary one, if any

    sft

    simple feature type

    Attributes
    protected
  10. abstract def toRowRanges(sft: SimpleFeatureType, schema: Schema, range: ScanRange[U]): (Option[PartialRow], Option[PartialRow])

    Permalink

    Turns a scan range into a kudu range

    Turns a scan range into a kudu range

    sft

    simple feature type

    schema

    table schema

    range

    scan range

    Attributes
    protected
    Definition Classes
    KuduFeatureIndex
  11. abstract def toTieredRowRanges(sft: SimpleFeatureType, schema: Schema, range: ScanRange[U], tiers: ⇒ Seq[ByteRange], minTier: ⇒ Array[Byte], maxTier: ⇒ Array[Byte]): Seq[(Option[PartialRow], Option[PartialRow])]

    Permalink
    Attributes
    protected
  12. abstract def version: Int

    Permalink
    Definition Classes
    GeoMesaFeatureIndex

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def configure(sft: SimpleFeatureType, ds: KuduDataStore, partition: Option[String]): String

    Permalink
    Definition Classes
    KuduFeatureIndex → GeoMesaFeatureIndex
  7. def createPartition(sft: SimpleFeatureType, table: KuduTable, splitters: Map[String, String], bin: Short): Option[Partitioning]

    Permalink

    Creates a new ranges partition that will cover the time period.

    Creates a new ranges partition that will cover the time period. Only implemented by indices with a leading time period, as otherwise we have to partition up front. Kudu only supports adding new range partitions that don't overlap any existing partitions - you can't modify or split existing partitions

    sft

    simple feature type

    table

    kudu table

    splitters

    table splitting config

    bin

    time period being covered (e.g. week)

    Attributes
    protected
    Definition Classes
    KuduFeatureIndex
  8. def delete(sft: SimpleFeatureType, ds: KuduDataStore, partition: Option[String]): Unit

    Permalink
    Definition Classes
    KuduFeatureIndex → GeoMesaFeatureIndex
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def generateTableName(sft: SimpleFeatureType, ds: KuduDataStore, partition: Option[String]): String

    Permalink
    Attributes
    protected
    Definition Classes
    GeoMesaFeatureIndex
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def getIdFromRow(sft: SimpleFeatureType): (Array[Byte], Int, Int, SimpleFeature) ⇒ String

    Permalink
    Definition Classes
    KuduFeatureIndex → GeoMesaFeatureIndex
  15. def getPartitions(sft: SimpleFeatureType, ds: KuduDataStore): Seq[String]

    Permalink
    Definition Classes
    GeoMesaFeatureIndex
  16. def getQueryPlan(sft: SimpleFeatureType, ds: KuduDataStore, filter: KuduFilterStrategyType, hints: Hints, explain: Explainer): KuduQueryPlanType

    Permalink
    Definition Classes
    KuduTieredFeatureIndexKuduFeatureIndex → GeoMesaFeatureIndex
  17. def getSplits(sft: SimpleFeatureType, partition: Option[String]): Seq[Array[Byte]]

    Permalink
    Definition Classes
    KuduFeatureIndex → GeoMesaFeatureIndex
  18. def getTableNames(sft: SimpleFeatureType, ds: KuduDataStore, partition: Option[String]): Seq[String]

    Permalink
    Definition Classes
    GeoMesaFeatureIndex
  19. def getTablesForQuery(sft: SimpleFeatureType, ds: KuduDataStore, filter: Option[Filter]): Seq[String]

    Permalink
    Definition Classes
    GeoMesaFeatureIndex
  20. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  21. lazy val identifier: String

    Permalink
    Definition Classes
    GeoMesaFeatureIndex
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. lazy val logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    LazyLogging
  24. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. def removeAll(sft: SimpleFeatureType, ds: KuduDataStore): Unit

    Permalink
    Definition Classes
    KuduFeatureIndex → GeoMesaFeatureIndex
  28. def remover(sft: SimpleFeatureType, ds: KuduDataStore): (KuduFeature) ⇒ Seq[WriteOperation]

    Permalink
    Definition Classes
    KuduTieredFeatureIndexKuduFeatureIndex → GeoMesaFeatureIndex
  29. def supports(sft: SimpleFeatureType): Boolean

    Permalink
    Definition Classes
    KuduFeatureIndex → GeoMesaFeatureIndex
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  31. def tableNameKey(partition: Option[String]): String

    Permalink
    Definition Classes
    GeoMesaFeatureIndex
  32. def tableSchema(sft: SimpleFeatureType): Schema

    Permalink

    Gets a cached table schema for the simple feature type, which includes all the primary key columns and the feature type columns

    Gets a cached table schema for the simple feature type, which includes all the primary key columns and the feature type columns

    sft

    simple feature type

    Attributes
    protected
    Definition Classes
    KuduFeatureIndex
  33. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def writer(sft: SimpleFeatureType, ds: KuduDataStore): (KuduFeature) ⇒ Seq[WriteOperation]

    Permalink
    Definition Classes
    KuduTieredFeatureIndexKuduFeatureIndex → GeoMesaFeatureIndex

Deprecated Value Members

  1. def serializedWithId: Boolean

    Permalink
    Definition Classes
    GeoMesaFeatureIndex
    Annotations
    @deprecated
    Deprecated

Inherited from KuduFeatureIndex[T, U]

Inherited from GeoMesaFeatureIndex[KuduDataStore, KuduFeature, WriteOperation]

Inherited from LazyLogging

Inherited from AnyRef

Inherited from Any

Ungrouped