Object

org.locationtech.geomesa.index.conf.splitter.DefaultSplitter

Parser

Related Doc: package DefaultSplitter

Permalink

object Parser

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Parser
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

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. val Z3MaxDateOption: String

    Permalink
  5. val Z3MinDateOption: String

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def attributeSplits(name: String, binding: Class[_], options: Map[String, String]): Seq[String]

    Permalink

    Creates splits suitable for an attribute index.

    Creates splits suitable for an attribute index. Each indexed attribute can be split individually.

    Options are:

    * 'attr.<attribute>.pattern' - pattern used for a given attribute

    Additional patterns can be specified with 'attr.<attribute>.pattern2', etc

    name

    attribute name

    binding

    attribute type

    options

    user data containing split configuration

  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  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. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. def idSplits(options: Map[String, String]): Seq[String]

    Permalink

    Creates splits suitable for a feature ID index.

    Creates splits suitable for a feature ID index. If nothing is specified, will assume a hex distribution.

    * Options are:

    * 'id.pattern' - pattern used

    Additional patterns can be specified with 'id.pattern2', etc

    options

    user data containing split configuration

  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  20. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. def z2Splits(options: Map[String, String]): Seq[Long]

    Permalink

    Creates splits suitable for a z2 index.

    Creates splits suitable for a z2 index. Splits can be created by specifying the number of bits that will be used. The total number of splits is: 2^^(number of bits)

    Options are:

    * 'z2.bits' - number of bits used to create splits. e.g. 2 bits will create 4 splits.

    options

    user data containing split configuration

  25. def z3BitSplits(options: Map[String, String]): Seq[Long]

    Permalink

    Creates just the bit-splits for a z3 index.

    Creates just the bit-splits for a z3 index. Generally this would be applied per time interval. Use z3Splits to get bits per time interval.

    The total number of splits is: 2^^(number of bits)

    Options are:

    * 'z3.bits' - number of bits used to create splits. e.g. 2 bits will create 4 splits.

    options

    user data containing split configuration

  26. def z3Splits(interval: TimePeriod, options: Map[String, String]): Seq[(Short, Option[Long])]

    Permalink

    Creates splits suitable for a z3 index.

    Creates splits suitable for a z3 index. Generally, a split will be created per time interval (e.g. week). Further splits can be created by specifying the number of bits that will be used for splits, per week. The total number of splits is: (number of time intervals) * 2^^(number of bits)

    Options are:

    * 'z3.min' - min date for data * 'z3.max' - max date for data (must also include min date) - will default to current date if not specified * 'z3.bits' - number of bits used to create splits. e.g. 2 bits will create 4 splits.

    interval

    interval of the z3 index

    options

    user data containing split configuration

Inherited from AnyRef

Inherited from Any

Ungrouped