Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(swiftide): documented file swiftide/src/integrations/qdrant/persist.rs #24

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions swiftide/src/integrations/qdrant/persist.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
//! This module provides an implementation of the `Storage` trait for the `Qdrant` struct.
//! It includes methods for setting up the storage, storing a single node, and storing a batch of nodes.
//! This integration allows the Swiftide project to use Qdrant as a storage backend.

use anyhow::Result;
use async_trait::async_trait;

Expand All @@ -7,16 +11,43 @@ use super::Qdrant;

#[async_trait]
impl Storage for Qdrant {
/// Returns the batch size for the Qdrant storage.
///
/// # Returns
///
/// An `Option<usize>` representing the batch size if set, otherwise `None`.
fn batch_size(&self) -> Option<usize> {
self.batch_size
}

/// Sets up the Qdrant storage by creating the necessary index if it does not exist.
///
/// # Returns
///
/// A `Result<()>` which is `Ok` if the setup is successful, otherwise an error.
///
/// # Errors
///
/// This function will return an error if the index creation fails.
#[tracing::instrument(skip_all, err)]
async fn setup(&self) -> Result<()> {
tracing::debug!("Setting up Qdrant storage");
self.create_index_if_not_exists().await
}

/// Stores a single ingestion node in the Qdrant storage.
///
/// # Parameters
///
/// - `node`: The `IngestionNode` to be stored.
///
/// # Returns
///
/// A `Result<()>` which is `Ok` if the storage is successful, otherwise an error.
///
/// # Errors
///
/// This function will return an error if the node conversion or storage operation fails.
#[tracing::instrument(skip_all, err, name = "storage.qdrant.store")]
async fn store(&self, node: crate::ingestion::IngestionNode) -> Result<()> {
self.client
Expand All @@ -30,6 +61,19 @@ impl Storage for Qdrant {
Ok(())
}

/// Stores a batch of ingestion nodes in the Qdrant storage.
///
/// # Parameters
///
/// - `nodes`: A vector of `IngestionNode` to be stored.
///
/// # Returns
///
/// A `Result<()>` which is `Ok` if the storage is successful, otherwise an error.
///
/// # Errors
///
/// This function will return an error if any node conversion or storage operation fails.
#[tracing::instrument(skip_all, err, name = "storage.qdrant.batch_store")]
async fn batch_store(&self, nodes: Vec<crate::ingestion::IngestionNode>) -> Result<()> {
self.client
Expand Down
Loading