package setl
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class BenchmarkResult(cls: String, read: Double, process: Double, write: Double, get: Double, total: Double) extends Product with Serializable
-
trait
Builder[+A] extends Logging
Builder could be used to build or initialize objects
Builder could be used to build or initialize objects
- A
the type of object that the builder is supposed to produce
- Annotations
- @Evolving()
-
trait
Converter extends AnyRef
A converter should be able to convert between two types T1 and T2.
A converter should be able to convert between two types T1 and T2.
- Annotations
- @Evolving()
-
abstract
class
Setl extends HasRegistry[Pipeline]
- Annotations
- @Evolving()
-
class
SparkSessionBuilder extends Builder[SparkSession]
Configure and build new sparkSession according to given usages
Configure and build new sparkSession according to given usages
Usage:// Auto-configure val spark: SparkSession = new SparkSessionBuilder("cassandra", "postgres").build().get() // Build with your own SparkConf val spark: SparkSession = new SparkSessionBuilder().configure(yourSparkConf).build().get()
- Annotations
- @Evolving()
Value Members
- object Setl
- object SparkSessionBuilder