final case class ExasolConfiguration(host: String, port: Int, jdbc_options: String, username: String, password: String, fingerprint: String, max_nodes: Int, create_table: Boolean, drop_table: Boolean, batch_size: Int) extends Product with Serializable
The configuration parameters for Spark Exasol connector.
These can be user provided when loading or defined in Spark configurations. For example, user provided:
df = sparkSession .read .format("exasol") .option("host", "127.0.0.1") .option("port", "8888") // ... .load
From Spark configuration:
val sparkConf = new SparkConf() .setMaster("local[*]") .setAppName("spark-exasol-connector") .set("spark.exasol.host", "localhost") .set("spark.exasol.port", "1234") // ... val sparkSession = SparkSession .builder() .config(sparkConf) .getOrCreate()
If both are defined, spark configs are used. If nothing is defined, then default values are used.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ExasolConfiguration
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new ExasolConfiguration(host: String, port: Int, jdbc_options: String, username: String, password: String, fingerprint: String, max_nodes: Int, create_table: Boolean, drop_table: Boolean, batch_size: Int)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- val batch_size: Int
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
- val create_table: Boolean
- val drop_table: Boolean
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val fingerprint: String
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val host: String
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val jdbc_options: String
- val max_nodes: Int
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val password: String
- val port: Int
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val username: String
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated
- Deprecated