Skip to content

Commit

Permalink
fix: update chunk limit for orama indexing (#778)
Browse files Browse the repository at this point in the history
  • Loading branch information
crowlKats authored Oct 24, 2024
1 parent d0ed044 commit 69ff252
Show file tree
Hide file tree
Showing 3 changed files with 591 additions and 648 deletions.
2 changes: 1 addition & 1 deletion api/src/orama.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use tracing::instrument;
use tracing::Instrument;
use tracing::Span;

const MAX_ORAMA_INSERT_SIZE: f64 = 4f64 * 1024f64 * 1024f64;
const MAX_ORAMA_INSERT_SIZE: f64 = 3f64 * 1024f64 * 1024f64;

#[derive(Clone)]
pub struct OramaClient {
Expand Down
Loading

0 comments on commit 69ff252

Please sign in to comment.