mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-22 18:17:39 +08:00
Compute and Write external-documents-ids database
This commit is contained in:
parent
ccf01c2471
commit
d79f75f630
@ -122,6 +122,7 @@ pub struct WriterOperation {
|
|||||||
|
|
||||||
pub enum Database {
|
pub enum Database {
|
||||||
Documents,
|
Documents,
|
||||||
|
ExternalDocumentsIds,
|
||||||
ExactWordDocids,
|
ExactWordDocids,
|
||||||
FidWordCountDocids,
|
FidWordCountDocids,
|
||||||
Main,
|
Main,
|
||||||
@ -140,6 +141,7 @@ impl Database {
|
|||||||
pub fn database(&self, index: &Index) -> heed::Database<Bytes, Bytes> {
|
pub fn database(&self, index: &Index) -> heed::Database<Bytes, Bytes> {
|
||||||
match self {
|
match self {
|
||||||
Database::Documents => index.documents.remap_types(),
|
Database::Documents => index.documents.remap_types(),
|
||||||
|
Database::ExternalDocumentsIds => index.external_documents_ids.remap_types(),
|
||||||
Database::ExactWordDocids => index.exact_word_docids.remap_types(),
|
Database::ExactWordDocids => index.exact_word_docids.remap_types(),
|
||||||
Database::Main => index.main.remap_types(),
|
Database::Main => index.main.remap_types(),
|
||||||
Database::WordDocids => index.word_docids.remap_types(),
|
Database::WordDocids => index.word_docids.remap_types(),
|
||||||
@ -431,6 +433,7 @@ impl DocumentsSender<'_> {
|
|||||||
pub fn uncompressed(
|
pub fn uncompressed(
|
||||||
&self,
|
&self,
|
||||||
docid: DocumentId,
|
docid: DocumentId,
|
||||||
|
external_id: String,
|
||||||
document: &KvReaderFieldId,
|
document: &KvReaderFieldId,
|
||||||
) -> StdResult<(), SendError<()>> {
|
) -> StdResult<(), SendError<()>> {
|
||||||
let entry = EntryOperation::Write(KeyValueEntry::from_small_key_value(
|
let entry = EntryOperation::Write(KeyValueEntry::from_small_key_value(
|
||||||
@ -440,14 +443,29 @@ impl DocumentsSender<'_> {
|
|||||||
match self.0.send(WriterOperation { database: Database::Documents, entry }) {
|
match self.0.send(WriterOperation { database: Database::Documents, entry }) {
|
||||||
Ok(()) => Ok(()),
|
Ok(()) => Ok(()),
|
||||||
Err(SendError(_)) => Err(SendError(())),
|
Err(SendError(_)) => Err(SendError(())),
|
||||||
|
}?;
|
||||||
|
|
||||||
|
let entry = EntryOperation::Write(KeyValueEntry::from_small_key_value(
|
||||||
|
external_id.as_bytes(),
|
||||||
|
&docid.to_be_bytes(),
|
||||||
|
));
|
||||||
|
match self.0.send(WriterOperation { database: Database::ExternalDocumentsIds, entry }) {
|
||||||
|
Ok(()) => Ok(()),
|
||||||
|
Err(SendError(_)) => Err(SendError(())),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn delete(&self, docid: DocumentId) -> StdResult<(), SendError<()>> {
|
pub fn delete(&self, docid: DocumentId, external_id: String) -> StdResult<(), SendError<()>> {
|
||||||
let entry = EntryOperation::Delete(KeyEntry::from_key(&docid.to_be_bytes()));
|
let entry = EntryOperation::Delete(KeyEntry::from_key(&docid.to_be_bytes()));
|
||||||
match self.0.send(WriterOperation { database: Database::Documents, entry }) {
|
match self.0.send(WriterOperation { database: Database::Documents, entry }) {
|
||||||
Ok(()) => Ok(()),
|
Ok(()) => Ok(()),
|
||||||
Err(SendError(_)) => Err(SendError(())),
|
Err(SendError(_)) => Err(SendError(())),
|
||||||
|
}?;
|
||||||
|
|
||||||
|
let entry = EntryOperation::Delete(KeyEntry::from_key(external_id.as_bytes()));
|
||||||
|
match self.0.send(WriterOperation { database: Database::ExternalDocumentsIds, entry }) {
|
||||||
|
Ok(()) => Ok(()),
|
||||||
|
Err(SendError(_)) => Err(SendError(())),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -460,8 +478,8 @@ pub enum MergerOperation {
|
|||||||
WordPairProximityDocidsMerger(Merger<File, MergeDeladdCboRoaringBitmaps>),
|
WordPairProximityDocidsMerger(Merger<File, MergeDeladdCboRoaringBitmaps>),
|
||||||
WordPositionDocidsMerger(Merger<File, MergeDeladdCboRoaringBitmaps>),
|
WordPositionDocidsMerger(Merger<File, MergeDeladdCboRoaringBitmaps>),
|
||||||
FacetDocidsMerger(Merger<File, MergeDeladdCboRoaringBitmaps>),
|
FacetDocidsMerger(Merger<File, MergeDeladdCboRoaringBitmaps>),
|
||||||
DeleteDocument { docid: DocumentId },
|
DeleteDocument { docid: DocumentId, external_id: String },
|
||||||
InsertDocument { docid: DocumentId, document: Box<KvReaderFieldId> },
|
InsertDocument { docid: DocumentId, external_id: String, document: Box<KvReaderFieldId> },
|
||||||
FinishedDocument,
|
FinishedDocument,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -500,18 +518,19 @@ impl DocumentSender<'_> {
|
|||||||
pub fn insert(
|
pub fn insert(
|
||||||
&self,
|
&self,
|
||||||
docid: DocumentId,
|
docid: DocumentId,
|
||||||
|
external_id: String,
|
||||||
document: Box<KvReaderFieldId>,
|
document: Box<KvReaderFieldId>,
|
||||||
) -> StdResult<(), SendError<()>> {
|
) -> StdResult<(), SendError<()>> {
|
||||||
let sender = self.0.unwrap();
|
let sender = self.0.unwrap();
|
||||||
match sender.send(MergerOperation::InsertDocument { docid, document }) {
|
match sender.send(MergerOperation::InsertDocument { docid, external_id, document }) {
|
||||||
Ok(()) => Ok(()),
|
Ok(()) => Ok(()),
|
||||||
Err(SendError(_)) => Err(SendError(())),
|
Err(SendError(_)) => Err(SendError(())),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn delete(&self, docid: DocumentId) -> StdResult<(), SendError<()>> {
|
pub fn delete(&self, docid: DocumentId, external_id: String) -> StdResult<(), SendError<()>> {
|
||||||
let sender = self.0.unwrap();
|
let sender = self.0.unwrap();
|
||||||
match sender.send(MergerOperation::DeleteDocument { docid }) {
|
match sender.send(MergerOperation::DeleteDocument { docid, external_id }) {
|
||||||
Ok(()) => Ok(()),
|
Ok(()) => Ok(()),
|
||||||
Err(SendError(_)) => Err(SendError(())),
|
Err(SendError(_)) => Err(SendError(())),
|
||||||
}
|
}
|
||||||
|
@ -11,19 +11,22 @@ pub enum DocumentChange {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub struct Deletion {
|
pub struct Deletion {
|
||||||
docid: DocumentId,
|
pub docid: DocumentId,
|
||||||
|
pub external_document_id: String,
|
||||||
current: Box<KvReaderFieldId>,
|
current: Box<KvReaderFieldId>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Update {
|
pub struct Update {
|
||||||
docid: DocumentId,
|
pub docid: DocumentId,
|
||||||
|
pub external_document_id: String,
|
||||||
current: Box<KvReaderFieldId>,
|
current: Box<KvReaderFieldId>,
|
||||||
new: Box<KvReaderFieldId>,
|
pub new: Box<KvReaderFieldId>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Insertion {
|
pub struct Insertion {
|
||||||
docid: DocumentId,
|
pub docid: DocumentId,
|
||||||
new: Box<KvReaderFieldId>,
|
pub external_document_id: String,
|
||||||
|
pub new: Box<KvReaderFieldId>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl DocumentChange {
|
impl DocumentChange {
|
||||||
@ -37,14 +40,22 @@ impl DocumentChange {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Deletion {
|
impl Deletion {
|
||||||
pub fn create(docid: DocumentId, current: Box<KvReaderFieldId>) -> Self {
|
pub fn create(
|
||||||
Self { docid, current }
|
docid: DocumentId,
|
||||||
|
external_document_id: String,
|
||||||
|
current: Box<KvReaderFieldId>,
|
||||||
|
) -> Self {
|
||||||
|
Self { docid, external_document_id, current }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn docid(&self) -> DocumentId {
|
pub fn docid(&self) -> DocumentId {
|
||||||
self.docid
|
self.docid
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn external_document_id(&self) -> &str {
|
||||||
|
&self.external_document_id
|
||||||
|
}
|
||||||
|
|
||||||
// TODO shouldn't we use the one in self?
|
// TODO shouldn't we use the one in self?
|
||||||
pub fn current<'a>(
|
pub fn current<'a>(
|
||||||
&self,
|
&self,
|
||||||
@ -56,14 +67,22 @@ impl Deletion {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Insertion {
|
impl Insertion {
|
||||||
pub fn create(docid: DocumentId, new: Box<KvReaderFieldId>) -> Self {
|
pub fn create(
|
||||||
Insertion { docid, new }
|
docid: DocumentId,
|
||||||
|
external_document_id: String,
|
||||||
|
new: Box<KvReaderFieldId>,
|
||||||
|
) -> Self {
|
||||||
|
Insertion { docid, external_document_id, new }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn docid(&self) -> DocumentId {
|
pub fn docid(&self) -> DocumentId {
|
||||||
self.docid
|
self.docid
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn external_document_id(&self) -> &str {
|
||||||
|
&self.external_document_id
|
||||||
|
}
|
||||||
|
|
||||||
pub fn new(&self) -> &KvReader<FieldId> {
|
pub fn new(&self) -> &KvReader<FieldId> {
|
||||||
self.new.as_ref()
|
self.new.as_ref()
|
||||||
}
|
}
|
||||||
@ -72,16 +91,21 @@ impl Insertion {
|
|||||||
impl Update {
|
impl Update {
|
||||||
pub fn create(
|
pub fn create(
|
||||||
docid: DocumentId,
|
docid: DocumentId,
|
||||||
|
external_document_id: String,
|
||||||
current: Box<KvReaderFieldId>,
|
current: Box<KvReaderFieldId>,
|
||||||
new: Box<KvReaderFieldId>,
|
new: Box<KvReaderFieldId>,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
Update { docid, current, new }
|
Update { docid, external_document_id, current, new }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn docid(&self) -> DocumentId {
|
pub fn docid(&self) -> DocumentId {
|
||||||
self.docid
|
self.docid
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn external_document_id(&self) -> &str {
|
||||||
|
&self.external_document_id
|
||||||
|
}
|
||||||
|
|
||||||
pub fn current<'a>(
|
pub fn current<'a>(
|
||||||
&self,
|
&self,
|
||||||
rtxn: &'a RoTxn,
|
rtxn: &'a RoTxn,
|
||||||
|
@ -4,9 +4,11 @@ use rayon::iter::{IndexedParallelIterator, IntoParallelIterator};
|
|||||||
use roaring::RoaringBitmap;
|
use roaring::RoaringBitmap;
|
||||||
|
|
||||||
use super::DocumentChanges;
|
use super::DocumentChanges;
|
||||||
|
use crate::documents::PrimaryKey;
|
||||||
|
use crate::index::db_name::EXTERNAL_DOCUMENTS_IDS;
|
||||||
use crate::update::new::parallel_iterator_ext::ParallelIteratorExt as _;
|
use crate::update::new::parallel_iterator_ext::ParallelIteratorExt as _;
|
||||||
use crate::update::new::{Deletion, DocumentChange};
|
use crate::update::new::{Deletion, DocumentChange};
|
||||||
use crate::{Error, FieldsIdsMap, Index, Result};
|
use crate::{Error, FieldsIdsMap, Index, InternalError, Result};
|
||||||
|
|
||||||
pub struct DocumentDeletion {
|
pub struct DocumentDeletion {
|
||||||
pub to_delete: RoaringBitmap,
|
pub to_delete: RoaringBitmap,
|
||||||
@ -23,7 +25,7 @@ impl DocumentDeletion {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'p> DocumentChanges<'p> for DocumentDeletion {
|
impl<'p> DocumentChanges<'p> for DocumentDeletion {
|
||||||
type Parameter = &'p Index;
|
type Parameter = (&'p Index, &'p FieldsIdsMap, &'p PrimaryKey<'p>);
|
||||||
|
|
||||||
fn document_changes(
|
fn document_changes(
|
||||||
self,
|
self,
|
||||||
@ -34,13 +36,23 @@ impl<'p> DocumentChanges<'p> for DocumentDeletion {
|
|||||||
+ Clone
|
+ Clone
|
||||||
+ 'p,
|
+ 'p,
|
||||||
> {
|
> {
|
||||||
let index = param;
|
let (index, fields_ids_map, primary_key) = param;
|
||||||
let to_delete: Vec<_> = self.to_delete.into_iter().collect();
|
let to_delete: Vec<_> = self.to_delete.into_iter().collect();
|
||||||
Ok(to_delete.into_par_iter().try_map_try_init(
|
Ok(to_delete.into_par_iter().try_map_try_init(
|
||||||
|| index.read_txn().map_err(crate::Error::from),
|
|| index.read_txn().map_err(crate::Error::from),
|
||||||
|rtxn, docid| {
|
|rtxn, docid| {
|
||||||
let current = index.document(rtxn, docid)?;
|
let current = index.document(rtxn, docid)?;
|
||||||
Ok(DocumentChange::Deletion(Deletion::create(docid, current.boxed())))
|
let external_document_id = primary_key
|
||||||
|
.document_id(¤t, fields_ids_map)?
|
||||||
|
.map_err(|_| InternalError::DatabaseMissingEntry {
|
||||||
|
db_name: EXTERNAL_DOCUMENTS_IDS,
|
||||||
|
key: None,
|
||||||
|
})?;
|
||||||
|
Ok(DocumentChange::Deletion(Deletion::create(
|
||||||
|
docid,
|
||||||
|
external_document_id,
|
||||||
|
current.boxed(),
|
||||||
|
)))
|
||||||
},
|
},
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
@ -288,15 +288,17 @@ impl MergeChanges for MergeDocumentForReplacement {
|
|||||||
|
|
||||||
match current {
|
match current {
|
||||||
Some(current) => {
|
Some(current) => {
|
||||||
let update = Update::create(docid, current.boxed(), new);
|
let update = Update::create(docid, external_docid, current.boxed(), new);
|
||||||
Ok(DocumentChange::Update(update))
|
Ok(DocumentChange::Update(update))
|
||||||
}
|
}
|
||||||
None => Ok(DocumentChange::Insertion(Insertion::create(docid, new))),
|
None => {
|
||||||
|
Ok(DocumentChange::Insertion(Insertion::create(docid, external_docid, new)))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Some(InnerDocOp::Deletion) => {
|
Some(InnerDocOp::Deletion) => {
|
||||||
let deletion = match current {
|
let deletion = match current {
|
||||||
Some(current) => Deletion::create(docid, current.boxed()),
|
Some(current) => Deletion::create(docid, external_docid, current.boxed()),
|
||||||
None => todo!("Do that with Louis"),
|
None => todo!("Do that with Louis"),
|
||||||
};
|
};
|
||||||
Ok(DocumentChange::Deletion(deletion))
|
Ok(DocumentChange::Deletion(deletion))
|
||||||
@ -355,7 +357,7 @@ impl MergeChanges for MergeDocumentForUpdates {
|
|||||||
|
|
||||||
if operations.is_empty() {
|
if operations.is_empty() {
|
||||||
let deletion = match current {
|
let deletion = match current {
|
||||||
Some(current) => Deletion::create(docid, current.boxed()),
|
Some(current) => Deletion::create(docid, external_docid, current.boxed()),
|
||||||
None => todo!("Do that with Louis"),
|
None => todo!("Do that with Louis"),
|
||||||
};
|
};
|
||||||
return Ok(DocumentChange::Deletion(deletion));
|
return Ok(DocumentChange::Deletion(deletion));
|
||||||
@ -382,11 +384,11 @@ impl MergeChanges for MergeDocumentForUpdates {
|
|||||||
|
|
||||||
match current {
|
match current {
|
||||||
Some(current) => {
|
Some(current) => {
|
||||||
let update = Update::create(docid, current.boxed(), new);
|
let update = Update::create(docid, external_docid, current.boxed(), new);
|
||||||
Ok(DocumentChange::Update(update))
|
Ok(DocumentChange::Update(update))
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
let insertion = Insertion::create(docid, new);
|
let insertion = Insertion::create(docid, external_docid, new);
|
||||||
Ok(DocumentChange::Insertion(insertion))
|
Ok(DocumentChange::Insertion(insertion))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ use rayon::ThreadPool;
|
|||||||
pub use update_by_function::UpdateByFunction;
|
pub use update_by_function::UpdateByFunction;
|
||||||
|
|
||||||
use super::channel::*;
|
use super::channel::*;
|
||||||
use super::document_change::DocumentChange;
|
use super::document_change::{Deletion, DocumentChange, Insertion, Update};
|
||||||
use super::extract::*;
|
use super::extract::*;
|
||||||
use super::merger::merge_grenad_entries;
|
use super::merger::merge_grenad_entries;
|
||||||
use super::word_fst_builder::PrefixDelta;
|
use super::word_fst_builder::PrefixDelta;
|
||||||
@ -84,19 +84,14 @@ where
|
|||||||
document_changes.clone().into_par_iter().try_arc_for_each::<_, Error>(
|
document_changes.clone().into_par_iter().try_arc_for_each::<_, Error>(
|
||||||
|result| {
|
|result| {
|
||||||
match result? {
|
match result? {
|
||||||
DocumentChange::Deletion(deletion) => {
|
DocumentChange::Deletion(Deletion { docid, external_document_id, ..}) => {
|
||||||
let docid = deletion.docid();
|
document_sender.delete(docid, external_document_id).unwrap();
|
||||||
document_sender.delete(docid).unwrap();
|
|
||||||
}
|
}
|
||||||
DocumentChange::Update(update) => {
|
DocumentChange::Update(Update { docid, external_document_id, new, ..}) => {
|
||||||
let docid = update.docid();
|
document_sender.insert(docid, external_document_id, new).unwrap();
|
||||||
let content = update.new();
|
|
||||||
document_sender.insert(docid, content.boxed()).unwrap();
|
|
||||||
}
|
}
|
||||||
DocumentChange::Insertion(insertion) => {
|
DocumentChange::Insertion(Insertion { docid, external_document_id, new, ..}) => {
|
||||||
let docid = insertion.docid();
|
document_sender.insert(docid, external_document_id, new).unwrap();
|
||||||
let content = insertion.new();
|
|
||||||
document_sender.insert(docid, content.boxed()).unwrap();
|
|
||||||
// extracted_dictionary_sender.send(self, dictionary: &[u8]);
|
// extracted_dictionary_sender.send(self, dictionary: &[u8]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -77,7 +77,7 @@ where
|
|||||||
}
|
}
|
||||||
}?;
|
}?;
|
||||||
|
|
||||||
let insertion = Insertion::create(docid, document);
|
let insertion = Insertion::create(docid, external_docid, document);
|
||||||
Ok(DocumentChange::Insertion(insertion))
|
Ok(DocumentChange::Insertion(insertion))
|
||||||
},
|
},
|
||||||
))
|
))
|
||||||
|
@ -136,37 +136,48 @@ pub fn merge_grenad_entries(
|
|||||||
|_, _key| Ok(()),
|
|_, _key| Ok(()),
|
||||||
)?;
|
)?;
|
||||||
}
|
}
|
||||||
MergerOperation::InsertDocument { docid, document } => {
|
MergerOperation::InsertDocument { docid, external_id, document } => {
|
||||||
let span =
|
let span =
|
||||||
tracing::trace_span!(target: "indexing::documents::merge", "insert_document");
|
tracing::trace_span!(target: "indexing::documents::merge", "insert_document");
|
||||||
let _entered = span.enter();
|
let _entered = span.enter();
|
||||||
documents_ids.insert(docid);
|
documents_ids.insert(docid);
|
||||||
sender.documents().uncompressed(docid, &document).unwrap();
|
sender.documents().uncompressed(docid, external_id.clone(), &document).unwrap();
|
||||||
|
|
||||||
if let Some(geo_extractor) = geo_extractor.as_mut() {
|
if let Some(geo_extractor) = geo_extractor.as_mut() {
|
||||||
let current = index.documents.remap_data_type::<Bytes>().get(rtxn, &docid)?;
|
let current = index.documents.remap_data_type::<Bytes>().get(rtxn, &docid)?;
|
||||||
let current: Option<&KvReaderFieldId> = current.map(Into::into);
|
let current: Option<&KvReaderFieldId> = current.map(Into::into);
|
||||||
let change = match current {
|
let change = match current {
|
||||||
Some(current) => {
|
Some(current) => DocumentChange::Update(Update::create(
|
||||||
DocumentChange::Update(Update::create(docid, current.boxed(), document))
|
docid,
|
||||||
}
|
external_id,
|
||||||
None => DocumentChange::Insertion(Insertion::create(docid, document)),
|
current.boxed(),
|
||||||
|
document,
|
||||||
|
)),
|
||||||
|
None => DocumentChange::Insertion(Insertion::create(
|
||||||
|
docid,
|
||||||
|
external_id,
|
||||||
|
document,
|
||||||
|
)),
|
||||||
};
|
};
|
||||||
geo_extractor.manage_change(&mut global_fields_ids_map, &change)?;
|
geo_extractor.manage_change(&mut global_fields_ids_map, &change)?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
MergerOperation::DeleteDocument { docid } => {
|
MergerOperation::DeleteDocument { docid, external_id } => {
|
||||||
let span =
|
let span =
|
||||||
tracing::trace_span!(target: "indexing::documents::merge", "delete_document");
|
tracing::trace_span!(target: "indexing::documents::merge", "delete_document");
|
||||||
let _entered = span.enter();
|
let _entered = span.enter();
|
||||||
if !documents_ids.remove(docid) {
|
if !documents_ids.remove(docid) {
|
||||||
unreachable!("Tried deleting a document that we do not know about");
|
unreachable!("Tried deleting a document that we do not know about");
|
||||||
}
|
}
|
||||||
sender.documents().delete(docid).unwrap();
|
sender.documents().delete(docid, external_id.clone()).unwrap();
|
||||||
|
|
||||||
if let Some(geo_extractor) = geo_extractor.as_mut() {
|
if let Some(geo_extractor) = geo_extractor.as_mut() {
|
||||||
let current = index.document(rtxn, docid)?;
|
let current = index.document(rtxn, docid)?;
|
||||||
let change = DocumentChange::Deletion(Deletion::create(docid, current.boxed()));
|
let change = DocumentChange::Deletion(Deletion::create(
|
||||||
|
docid,
|
||||||
|
external_id,
|
||||||
|
current.boxed(),
|
||||||
|
));
|
||||||
geo_extractor.manage_change(&mut global_fields_ids_map, &change)?;
|
geo_extractor.manage_change(&mut global_fields_ids_map, &change)?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user