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 try_new(config: DiskManagerConfig) -> Result<Arc<Self>>
pub fn try_new(config: DiskManagerConfig) -> Result<Arc<Self>>
Create a DiskManager given the configuration
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,
request_description: &str,
) -> Result<RefCountedTempFile>
pub fn create_tmp_file( &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