Packages

p

io.github

setl

package setl

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class BenchmarkResult(cls: String, read: Double, process: Double, write: Double, get: Double, total: Double) extends Product with Serializable
  2. 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()
  3. 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()
  4. abstract class Setl extends HasRegistry[Pipeline]
    Annotations
    @Evolving()
  5. 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

  1. object Setl
  2. object SparkSessionBuilder

Ungrouped