Packages

class QueryPlanner[DS <: GeoMesaDataStore[DS]] extends QueryRunner with MethodProfiling with LazyLogging

Plans and executes queries against geomesa

Linear Supertypes
LazyLogging, MethodProfiling, QueryRunner, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueryPlanner
  2. LazyLogging
  3. MethodProfiling
  4. QueryRunner
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new QueryPlanner(ds: DS)

Value Members

  1. def planQuery(sft: SimpleFeatureType, query: Query, index: Option[String] = None, output: Explainer = new ExplainLogging): Seq[QueryPlan[DS]]

    Plan the query, but don't execute it - used for m/r jobs and explain query

    Plan the query, but don't execute it - used for m/r jobs and explain query

    sft

    simple feature type

    query

    query to plan

    index

    override index to use for executing the query

    output

    planning explanation output

  2. def runQuery(sft: SimpleFeatureType, original: Query, explain: Explainer): QueryPlanResult[DS]

    Execute a query

    Execute a query

    sft

    simple feature type

    explain

    explain output

    Definition Classes
    QueryPlannerQueryRunner