pub enum HummockInMemoryStrategy {
Isolated,
Shared,
Disallowed,
}
Expand description
Strategy for whether to enable in-memory hummock if no minio and s3 is provided.
Variants§
Isolated
Enable isolated in-memory hummock. Used by single-node configuration.
Enable in-memory hummock shared in a single process. Used by risedev playground and deterministic end-to-end tests.
Disallowed
Disallow in-memory hummock. Always requires minio or s3.
Auto Trait Implementations§
impl Freeze for HummockInMemoryStrategy
impl RefUnwindSafe for HummockInMemoryStrategy
impl Send for HummockInMemoryStrategy
impl Sync for HummockInMemoryStrategy
impl Unpin for HummockInMemoryStrategy
impl UnwindSafe for HummockInMemoryStrategy
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request