bio.ferlab.datalake.commons.config.ReadOptions.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datalake-commons_2.12 Show documentation
Show all versions of datalake-commons_2.12 Show documentation
Library built on top of Apache Spark to speed-up data lakes development..
package bio.ferlab.datalake.commons.config
/**
* List of read options supported. More options are supported.
*/
object ReadOptions {
final val PARTITION_COLUMN = "partitionColumn"
final val LOWER_BOUND = "lowerBound"
final val UPPER_BOUND = "upperBound"
final val NUM_PARTITIONS = "numPartitions"
}