Establishing a Connection
Connecting to Spark SQL
Specify the following to establish a connection with Spark SQL:
- Server: The host name or IP address of the server hosting SparkSQL.
- Port: The port for the connection to the SparkSQL instance.
- TransportMode: The transport mode to use to communicate with the SparkSQL server. Accepted entries are BINARY and HTTP. BINARY is selected by default.
Securing Spark SQL Connections
To enable TLS/SSL in the provider, set UseSSL to True.
Authenticating to Spark SQL
The service may be authenticated to using the PLAIN, LDAP, NOSASL, KERBEROS auth schemes.
PLAIN
To authenticate with PLAIN, set the following connection properties:
- AuthScheme: PLAIN.
- User: The user to login as.
- Password: The password of the user.
LDAP
To authenticate with LDAP, set the following connection properties:
- AuthScheme: LDAP.
- User: The user to login as.
- Password: The password of the user.
NOSASL
When using NOSASL, no authentication is performed. Set the following connection properties:
- AuthScheme: NOSASL.
Kerberos
For details on how to authenticate with Kerberos, see Using Kerberos.