Packages

c

io.xskipper.status

QueryIndexStatsResult

case class QueryIndexStatsResult(status: String, isSkippable: Boolean, skipped_Bytes: Long, skipped_Objs: Long, total_Bytes: Long, total_Objs: Long) extends Product with Serializable

Case class to represent query data skipping stats

status

a generic status

isSkippable

true if the query is skippable. a query is considered skippable if it has indexed files and a metadata query can be generated.

skipped_Bytes

the total number of bytes skipped

skipped_Objs

the total number of skipped objects

total_Bytes

the total number of bytes in order to process the query

total_Objs

the total number of objects in order to process the query

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueryIndexStatsResult
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new QueryIndexStatsResult(status: String, isSkippable: Boolean, skipped_Bytes: Long, skipped_Objs: Long, total_Bytes: Long, total_Objs: Long)

    status

    a generic status

    isSkippable

    true if the query is skippable. a query is considered skippable if it has indexed files and a metadata query can be generated.

    skipped_Bytes

    the total number of bytes skipped

    skipped_Objs

    the total number of skipped objects

    total_Bytes

    the total number of bytes in order to process the query

    total_Objs

    the total number of objects in order to process the query

Value Members

  1. var isSkippable: Boolean
  2. var skipped_Bytes: Long
  3. var skipped_Objs: Long
  4. var status: String
  5. var total_Bytes: Long
  6. var total_Objs: Long
  7. def update(other: QueryIndexStatsResult): Unit