Packages

class Z3Index extends GeoMesaFeatureIndex[Z3IndexValues, Z3IndexKey] with SpatioTemporalFilterStrategy[Z3IndexValues, Z3IndexKey] with SpatioTemporalIndex[Z3IndexValues, Z3IndexKey]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Z3Index
  2. SpatioTemporalIndex
  3. TemporalIndex
  4. SpatialIndex
  5. SpatioTemporalFilterStrategy
  6. GeoMesaFeatureIndex
  7. LazyLogging
  8. NamedIndex
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Z3Index(ds: GeoMesaDataStore[_], sft: SimpleFeatureType, geomField: String, dtgField: String, mode: IndexMode)
  2. new Z3Index(ds: GeoMesaDataStore[_], sft: SimpleFeatureType, version: Int, geom: String, dtg: String, mode: IndexMode)
    Attributes
    protected

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. val attributes: Seq[String]
    Definition Classes
    GeoMesaFeatureIndex
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  7. def configureTableName(partition: Option[String] = None, limit: Option[Int] = None): String

    Create the metadata entry for the initial index table or a new partition

    Create the metadata entry for the initial index table or a new partition

    partition

    partition

    returns

    table name

    Definition Classes
    GeoMesaFeatureIndex
  8. def createConverter(): WriteConverter[Z3IndexKey]

    Creates a function to generate row keys from features

    Creates a function to generate row keys from features

    Definition Classes
    GeoMesaFeatureIndex
  9. def deleteTableNames(partition: Option[String] = None): Seq[String]

    Deletes the entire index

    Deletes the entire index

    partition

    only delete a single partition, instead of the whole index

    Definition Classes
    GeoMesaFeatureIndex
  10. val ds: GeoMesaDataStore[_]
    Definition Classes
    GeoMesaFeatureIndex
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(other: Any): Boolean
    Definition Classes
    GeoMesaFeatureIndex → AnyRef → Any
  13. def generateTableName(partition: Option[String] = None, limit: Option[Int] = None): String

    Creates a valid, unique string for the underlying table

    Creates a valid, unique string for the underlying table

    partition

    partition

    limit

    limit on the length of a table name in the underlying database

    Attributes
    protected
    Definition Classes
    GeoMesaFeatureIndex
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def getFilterStrategy(filter: Filter, transform: Option[SimpleFeatureType]): Option[FilterStrategy]

    Gets options for a 'simple' filter, where each OR is on a single attribute, e.g.

    Gets options for a 'simple' filter, where each OR is on a single attribute, e.g. (bbox1 OR bbox2) AND dtg bbox AND dtg AND (attr = foo OR attr = bar) not: bbox OR dtg

    Because the input is simple, it can be satisfied with a single query filter.

    filter

    input filter

    transform

    attribute transforms

    returns

    a filter strategy which can satisfy the query, if available

    Definition Classes
    SpatioTemporalFilterStrategyGeoMesaFeatureIndex
  16. def getIdFromRow(row: Array[Byte], offset: Int, length: Int, feature: SimpleFeature): String

    Retrieve an ID from a row.

    Retrieve an ID from a row. All indices are assumed to encode the feature ID into the row key.

    The simple feature in the returned function signature is optional (null ok) - if provided the parsed UUID will be cached in the feature user data, if the sft is marked as using UUIDs

    row

    row bytes

    offset

    offset into the row bytes to the first valid byte for this row

    length

    number of valid bytes for this row

    feature

    simple feature (optional)

    Definition Classes
    GeoMesaFeatureIndex
  17. def getIdOffset(row: Array[Byte], offset: Int, length: Int): Int

    Gets the offset (start) of the feature id from a row.

    Gets the offset (start) of the feature id from a row. All indices are assumed to encode the feature ID into the row key.

    row

    row bytes

    offset

    offset into the row bytes to the first valid byte for this row

    length

    number of valid bytes for this row

    Definition Classes
    GeoMesaFeatureIndex
  18. def getPartitions: Seq[String]

    Gets the partitions for this index, assuming that the schema is partitioned

    Gets the partitions for this index, assuming that the schema is partitioned

    Definition Classes
    GeoMesaFeatureIndex
  19. def getQueryStrategy(filter: FilterStrategy, hints: Hints, explain: Explainer = ExplainNull): QueryStrategy

    Plans the query

    Plans the query

    filter

    filter strategy

    hints

    query hints

    explain

    explainer

    Definition Classes
    GeoMesaFeatureIndex
  20. def getSplits(partition: Option[String] = None): Seq[Array[Byte]]

    Gets the initial splits for a table

    Gets the initial splits for a table

    partition

    partition, if any

    Definition Classes
    GeoMesaFeatureIndex
  21. def getTableNames(partition: Option[String] = None): Seq[String]

    Gets the table name for this index

    Gets the table name for this index

    partition

    get the name for a particular partition, or all partitions

    Definition Classes
    GeoMesaFeatureIndex
  22. def getTablesForQuery(filter: Option[Filter]): Seq[String]

    Gets the tables that should be scanned to satisfy a query

    Gets the tables that should be scanned to satisfy a query

    filter

    filter

    Definition Classes
    GeoMesaFeatureIndex
  23. def hashCode(): Int
    Definition Classes
    GeoMesaFeatureIndex → AnyRef → Any
  24. lazy val idFromRow: IdFromRow
    Attributes
    protected
    Definition Classes
    GeoMesaFeatureIndex
  25. val identifier: String

    Unique (for the given sft) identifier string for this index.

    Unique (for the given sft) identifier string for this index.

    Can be parsed with IndexId.parse, although note that it does not include the read/write mode

    Definition Classes
    GeoMesaFeatureIndex
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. val keySpace: Z3IndexKeySpace

    Primary key space used by this index

    Primary key space used by this index

    Definition Classes
    Z3IndexGeoMesaFeatureIndex
  28. lazy val logger: Logger
    Attributes
    protected
    Definition Classes
    LazyLogging
    Annotations
    @transient()
  29. val mode: IndexMode
    Definition Classes
    GeoMesaFeatureIndex
  30. val name: String

    The name used to identify the index

    The name used to identify the index

    Definition Classes
    GeoMesaFeatureIndexNamedIndex
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. val serializedWithId: Boolean

    Is the feature id serialized with the feature? Needed for back-compatibility with old data formats

    Is the feature id serialized with the feature? Needed for back-compatibility with old data formats

    Definition Classes
    GeoMesaFeatureIndex
  35. val sft: SimpleFeatureType
    Definition Classes
    GeoMesaFeatureIndex
  36. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  37. def tableNameKey(partition: Option[String] = None): String

    The metadata key used to store the table name for this index

    The metadata key used to store the table name for this index

    partition

    partition

    Definition Classes
    GeoMesaFeatureIndex
  38. val tableNameKey: String
    Attributes
    protected
    Definition Classes
    GeoMesaFeatureIndex
  39. val tieredKeySpace: Option[IndexKeySpace[_, _]]

    Tiered key space beyond the primary one, if any

    Tiered key space beyond the primary one, if any

    Definition Classes
    Z3IndexGeoMesaFeatureIndex
  40. def toString(): String
    Definition Classes
    GeoMesaFeatureIndex → AnyRef → Any
  41. val version: Int

    Current version of the index

    Current version of the index

    Definition Classes
    GeoMesaFeatureIndexNamedIndex
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  44. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

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

Inherited from LazyLogging

Inherited from NamedIndex

Inherited from AnyRef

Inherited from Any

Ungrouped