object ScanType
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ScanType
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class PrefixScan(prefix: String) extends ScanType with Product with Serializable
- case class RangeScan(from: Option[ScanTerm], to: Option[ScanTerm]) extends ScanType with Product with Serializable
Scans documents, from document
from
to documentto
.Scans documents, from document
from
to documentto
.If
None
is specified forfrom
, it indicates to scan from the start of the collection. IfNone
is specified forto
, it indicates to scan to the start of the collection. - case class SamplingScan(limit: Long, seed: Long = Random.nextLong()) extends ScanType with Product with Serializable
Samples documents randomly from the collection until reaching
limit
documents.Samples documents randomly from the collection until reaching
limit
documents.- seed
seed for the random number generator that selects the documents. If not specified, defaults to a random number. CAVEAT: Specifying the same seed does not guarantee the same documents are selected.