pub struct DiskManager { /* private fields */ }
Expand description
Manages files generated during query execution, e.g. spill files generated while processing dataset larger than available memory.
Implementations§
Source§impl DiskManager
impl DiskManager
Sourcepub fn builder() -> DiskManagerBuilder
pub fn builder() -> DiskManagerBuilder
Creates a builder for DiskManager
Sourcepub fn try_new(config: DiskManagerConfig) -> Result<Arc<Self>>
👎Deprecated since 48.0.0: Use DiskManager::builder() instead
pub fn try_new(config: DiskManagerConfig) -> Result<Arc<Self>>
Create a DiskManager given the configuration
pub fn set_max_temp_directory_size( &mut self, max_temp_directory_size: u64, ) -> Result<()>
pub fn set_arc_max_temp_directory_size( this: &mut Arc<Self>, max_temp_directory_size: u64, ) -> Result<()>
pub fn with_max_temp_directory_size( self, max_temp_directory_size: u64, ) -> Result<Self>
pub fn used_disk_space(&self) -> u64
Sourcepub fn tmp_files_enabled(&self) -> bool
pub fn tmp_files_enabled(&self) -> bool
Return true if this disk manager supports creating temporary
files. If this returns false, any call to create_tmp_file
will error.
Sourcepub fn create_tmp_file(
self: &Arc<Self>,
request_description: &str,
) -> Result<RefCountedTempFile>
pub fn create_tmp_file( self: &Arc<Self>, request_description: &str, ) -> Result<RefCountedTempFile>
Return a temporary file from a randomized choice in the configured locations
If the file can not be created for some reason, returns an error message referencing the request description
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for DiskManager
impl !RefUnwindSafe for DiskManager
impl Send for DiskManager
impl Sync for DiskManager
impl Unpin for DiskManager
impl UnwindSafe for DiskManager
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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