Struct datafusion::execution::context::ExecutionContext[][src]

pub struct ExecutionContext {
    pub state: Arc<Mutex<ExecutionContextState>>,
}
Expand description

ExecutionContext is the main interface for executing queries with DataFusion. The context provides the following functionality:

  • Create DataFrame from a CSV or Parquet data source.
  • Register a CSV or Parquet data source as a table that can be referenced from a SQL query.
  • Register a custom data source that can be referenced from a SQL query.
  • Execution a SQL query

The following example demonstrates how to use the context to execute a query against a CSV data source using the DataFrame API:

use datafusion::prelude::*;
let mut ctx = ExecutionContext::new();
let df = ctx.read_csv("tests/example.csv", CsvReadOptions::new()).await?;
let df = df.filter(col("a").lt_eq(col("b")))?
           .aggregate(vec![col("a")], vec![min(col("b"))])?
           .limit(100)?;
let results = df.collect();

The following example demonstrates how to execute the same query using SQL:

use datafusion::prelude::*;

let mut ctx = ExecutionContext::new();
ctx.register_csv("example", "tests/example.csv", CsvReadOptions::new()).await?;
let results = ctx.sql("SELECT a, MIN(b) FROM example GROUP BY a LIMIT 100").await?;

Fields

state: Arc<Mutex<ExecutionContextState>>

Internal state for the context

Implementations

Creates a new execution context using a default configuration.

Creates a new execution context using the provided configuration.

Creates a dataframe that will execute a SQL query.

This method is async because queries of type CREATE EXTERNAL TABLE might require the schema to be inferred.

Creates a logical plan.

This function is intended for internal use and should not be called directly.

Registers a variable provider within this context.

Registers a scalar UDF within this context.

Note in SQL queries, function names are looked up using lowercase unless the query uses quotes. For example,

SELECT MY_FUNC(x)... will look for a function named "my_func" SELECT "my_FUNC"(x) will look for a function named "my_FUNC"

Registers an aggregate UDF within this context.

Note in SQL queries, aggregate names are looked up using lowercase unless the query uses quotes. For example,

SELECT MY_UDAF(x)... will look for an aggregate named "my_udaf" SELECT "my_UDAF"(x) will look for an aggregate named "my_UDAF"

Creates a DataFrame for reading an Avro data source.

Creates an empty DataFrame.

Creates a DataFrame for reading a CSV data source.

Creates a DataFrame for reading a Parquet data source.

Creates a DataFrame for reading a custom TableProvider.

Registers a table that uses the listing feature of the object store to find the files to be processed This is async because it might need to resolve the schema.

Registers a CSV data source so that it can be referenced from SQL statements executed against this context.

Registers a Parquet data source so that it can be referenced from SQL statements executed against this context.

Registers an Avro data source so that it can be referenced from SQL statements executed against this context.

Registers a named catalog using a custom CatalogProvider so that it can be referenced from SQL statements executed against this context.

Returns the CatalogProvider previously registered for this name, if any

Retrieves a CatalogProvider instance by name

Registers a object store with scheme using a custom ObjectStore so that an external file system or object storage system could be used against this context.

Returns the ObjectStore previously registered for this scheme, if any

Retrieves a ObjectStore instance by scheme

Registers a table using a custom TableProvider so that it can be referenced from SQL statements executed against this context.

Returns the TableProvider previously registered for this reference, if any

Deregisters the given table.

Returns the registered provider, if any

Retrieves a DataFrame representing a table previously registered by calling the register_table function.

Returns an error if no table has been registered with the provided reference.

👎 Deprecated:

Please use the catalog provider interface (ExecutionContext::catalog) to examine available catalogs, schemas, and tables

Returns the set of available tables in the default catalog and schema.

Use table to get a specific table.

Optimizes the logical plan by applying optimizer rules.

Creates a physical plan from a logical plan.

Executes a query and writes the results to a partitioned CSV file.

Executes a query and writes the results to a partitioned Parquet file.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Performs the conversion.

Set of all available udfs.

Returns a reference to the udf named name.

Returns a reference to the udaf named name.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.