pub type RuntimeConfig = RuntimeEnvBuilder;
Expand description
Please see: https://github.com/apache/datafusion/issues/12156 This a type alias for backwards compatibility.
Aliased Type§
struct RuntimeConfig {
pub disk_manager: DiskManagerConfig,
pub memory_pool: Option<Arc<dyn MemoryPool>>,
pub cache_manager: CacheManagerConfig,
pub object_store_registry: Arc<dyn ObjectStoreRegistry>,
}
Fields§
§disk_manager: DiskManagerConfig
DiskManager to manage temporary disk file usage
memory_pool: Option<Arc<dyn MemoryPool>>
MemoryPool
from which to allocate memory
Defaults to using an UnboundedMemoryPool
if None
cache_manager: CacheManagerConfig
CacheManager to manage cache data
object_store_registry: Arc<dyn ObjectStoreRegistry>
ObjectStoreRegistry to get object store based on url