pub struct Index { /* private fields */ }
Expand description

services::Index is responsible for indices lifecycle. Here lives indices creation and deletion as well as committing and indexing new documents.

Implementations§

source§

impl Index

The main entry point for managing Summa indices

source

pub fn index_registry(&self) -> &IndexRegistry

source

pub async fn get_index_holder( &self, index_alias: &str ) -> SummaServerResult<Handler<IndexHolder>>

source

pub fn consumer_manager(&self) -> &Arc<RwLock<ConsumerManager>>

Returns ConsumerManager

source

pub fn server_config(&self) -> &Arc<dyn ConfigProxy<Config>>

Returns server config

source

pub fn new( server_config_holder: &Arc<dyn ConfigProxy<Config>> ) -> SummaServerResult<Index>

Creates new IndexService with ConfigHolder

source

pub async fn attach_index( &self, attach_index_request: AttachIndexRequest ) -> SummaServerResult<Handler<IndexHolder>>

Create consumer and insert it into the consumer registry. Add it to the IndexHolder afterwards.

source

pub async fn copy_documents( &self, copy_documents_request: CopyDocumentsRequest ) -> SummaServerResult<u32>

source

pub async fn create_index( &self, create_index_request: CreateIndexRequest ) -> SummaServerResult<Handler<IndexHolder>>

Create consumer and insert it into the consumer registry. Add it to the IndexHolder afterwards.

source

pub async fn delete_index( &self, delete_index_request: DeleteIndexRequest ) -> SummaServerResult<DeleteIndexResult>

Delete index, optionally with all its aliases and consumers

source

pub async fn get_consumers(&self) -> HashMap<String, Config>

Returns all existent consumers for all indices

source

pub async fn create_consumer( &self, create_consumer_request: CreateConsumerRequest ) -> SummaServerResult<String>

Create consumer and insert it into the consumer registry. Add it to the IndexHolder afterwards.

source

pub async fn delete_consumer( &self, delete_consumer_request: DeleteConsumerRequest ) -> SummaServerResult<DeleteConsumerResponse>

Delete consumer from the consumer registry and from IndexHolder afterwards.

source

pub async fn stop(&mut self, force: bool) -> SummaServerResult<()>

Stopping index holders

source

pub async fn commit_and_restart_consumption( &self, index_holder: &Handler<IndexHolder>, with_hotcache: bool ) -> SummaServerResult<()>

Commits all and restarts consuming threads

source

pub async fn try_commit_and_restart_consumption( &self, index_holder: &Handler<IndexHolder> ) -> SummaServerResult<()>

Commits everything and restarts consuming threads

source

pub async fn commit( &self, index_holder: &Handler<IndexHolder>, with_hotcache: bool ) -> SummaServerResult<Option<PreparedConsumption>>

Commits all without restarting consuming threads

source

pub async fn rollback( &self, index_holder: &Handler<IndexHolder> ) -> SummaServerResult<Option<PreparedConsumption>>

Rollbacks everything without restarting consuming threads

source

pub async fn try_commit( &self, index_holder: &Handler<IndexHolder> ) -> SummaServerResult<Option<PreparedConsumption>>

Commits immediately or returns all without restarting consuming threads

source

pub async fn start_threads(&mut self)

Starts autocommitting thread

source

pub async fn stop_threads(&mut self) -> SummaServerResult<()>

Stops autocommitting thread

source

pub async fn open_index_from_config( &self, index_engine_config: IndexEngineConfig ) -> SummaServerResult<Index>

Opens index and sets it up via setup

source

pub async fn copy_index( &self, copy_index_request: CopyIndexRequest ) -> SummaServerResult<Handler<IndexHolder>>

Copies index with changing engine

source

pub async fn search( &self, search_request: SearchRequest ) -> SummaServerResult<Vec<CollectorOutput>>

Search documents

Search documents

source

pub async fn merge_segments( &self, merge_segments_request: MergeSegmentsRequest ) -> SummaServerResult<Option<SegmentId>>

Merge several segments into a single one

source

pub async fn vacuum_index( &self, vacuum_index_request: VacuumIndexRequest ) -> SummaServerResult<u64>

Merges segments and removes tombstones

Trait Implementations§

source§

impl Clone for Index

source§

fn clone(&self) -> Index

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

Auto Trait Implementations§

§

impl !RefUnwindSafe for Index

§

impl Send for Index

§

impl Sync for Index

§

impl Unpin for Index

§

impl !UnwindSafe for Index

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
§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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.
§

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

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> Fruit for T
where T: Send + Downcast,