Packages

t

org.apache.spark.sql.connector

ExternalCommandRunner

trait ExternalCommandRunner extends AnyRef

An interface to execute an arbitrary string command inside an external execution engine rather than Spark. This could be useful when user wants to execute some commands out of Spark. For example, executing custom DDL/DML command for JDBC, creating index for ElasticSearch, creating cores for Solr and so on.

This interface will be instantiated when end users call SparkSession#executeCommand.

Annotations
@Unstable()
Source
ExternalCommandRunner.java
Since

3.0.0

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExternalCommandRunner
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def executeCommand(command: String, options: CaseInsensitiveStringMap): Array[String]

    Execute the given command.

    Execute the given command.

    command

    The command string provided by users.

    options

    The user-specified case-insensitive options.

    returns

    The output of the command.