Struct datafusion::execution::runtime_env::RuntimeEnv

source ·
pub struct RuntimeEnv {
    pub memory_pool: Arc<dyn MemoryPool>,
    pub disk_manager: Arc<DiskManager>,
    pub cache_manager: Arc<CacheManager>,
    pub object_store_registry: Arc<dyn ObjectStoreRegistry>,
}
Expand description

Execution runtime environment that manages system resources such as memory, disk, cache and storage.

A RuntimeEnv is created from a RuntimeConfig and has the following resource management functionality:

Fields§

§memory_pool: Arc<dyn MemoryPool>

Runtime memory management

§disk_manager: Arc<DiskManager>

Manage temporary files during query execution

§cache_manager: Arc<CacheManager>

Manage temporary cache during query execution

§object_store_registry: Arc<dyn ObjectStoreRegistry>

Object Store Registry

Implementations§

source§

impl RuntimeEnv

source

pub fn new(config: RuntimeConfig) -> Result<RuntimeEnv, DataFusionError>

Create env based on configuration

source

pub fn register_object_store( &self, url: &Url, object_store: Arc<dyn ObjectStore> ) -> Option<Arc<dyn ObjectStore>>

Registers a custom ObjectStore to be used with a specific url. This allows DataFusion to create external tables from urls that do not have built in support such as hdfs://namenode:port/....

Returns the ObjectStore previously registered for this scheme, if any.

See ObjectStoreRegistry for more details

source

pub fn object_store( &self, url: impl AsRef<Url> ) -> Result<Arc<dyn ObjectStore>, DataFusionError>

Retrieves a ObjectStore instance for a url by consulting the registry. See ObjectStoreRegistry::get_store for more details.

Trait Implementations§

source§

impl Clone for RuntimeEnv

source§

fn clone(&self) -> RuntimeEnv

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for RuntimeEnv

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for RuntimeEnv

source§

fn default() -> RuntimeEnv

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V