mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-27 04:25:06 +08:00
Fix a bug when you update a document that was already present in the db, deleted and then inserted again in the same transform
This commit is contained in:
parent
1b1703a609
commit
74dcfe9676
@ -1908,7 +1908,9 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn add_and_delete_documents_in_single_transform() {
|
fn add_and_delete_documents_in_single_transform() {
|
||||||
let index = TempIndex::new();
|
let mut index = TempIndex::new();
|
||||||
|
index.index_documents_config.update_method = IndexDocumentsMethod::UpdateDocuments;
|
||||||
|
|
||||||
let mut wtxn = index.write_txn().unwrap();
|
let mut wtxn = index.write_txn().unwrap();
|
||||||
let builder = IndexDocuments::new(
|
let builder = IndexDocuments::new(
|
||||||
&mut wtxn,
|
&mut wtxn,
|
||||||
@ -1948,7 +1950,9 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn add_update_and_delete_documents_in_single_transform() {
|
fn add_update_and_delete_documents_in_single_transform() {
|
||||||
let index = TempIndex::new();
|
let mut index = TempIndex::new();
|
||||||
|
index.index_documents_config.update_method = IndexDocumentsMethod::UpdateDocuments;
|
||||||
|
|
||||||
let mut wtxn = index.write_txn().unwrap();
|
let mut wtxn = index.write_txn().unwrap();
|
||||||
let builder = IndexDocuments::new(
|
let builder = IndexDocuments::new(
|
||||||
&mut wtxn,
|
&mut wtxn,
|
||||||
@ -1969,8 +1973,8 @@ mod tests {
|
|||||||
insta::assert_display_snapshot!(added.unwrap(), @"3");
|
insta::assert_display_snapshot!(added.unwrap(), @"3");
|
||||||
|
|
||||||
let documents = documents!([
|
let documents = documents!([
|
||||||
{ "id": 2, "doggo": { "name": "jean", "age": 20 } },
|
{ "id": 2, "catto": "jorts" },
|
||||||
{ "id": 3, "name": "bob", "age": 25 },
|
{ "id": 3, "legs": 4 },
|
||||||
]);
|
]);
|
||||||
let (builder, added) = builder.add_documents(documents).unwrap();
|
let (builder, added) = builder.add_documents(documents).unwrap();
|
||||||
insta::assert_display_snapshot!(added.unwrap(), @"2");
|
insta::assert_display_snapshot!(added.unwrap(), @"2");
|
||||||
@ -1988,13 +1992,15 @@ mod tests {
|
|||||||
wtxn.commit().unwrap();
|
wtxn.commit().unwrap();
|
||||||
|
|
||||||
db_snap!(index, documents, @r###"
|
db_snap!(index, documents, @r###"
|
||||||
{"id":3,"name":"bob","age":25}
|
{"id":3,"name":"jean","age":25,"legs":4}
|
||||||
"###);
|
"###);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn add_document_and_in_another_transform_update_and_delete_documents() {
|
fn add_document_and_in_another_transform_update_and_delete_documents() {
|
||||||
let index = TempIndex::new();
|
let mut index = TempIndex::new();
|
||||||
|
index.index_documents_config.update_method = IndexDocumentsMethod::UpdateDocuments;
|
||||||
|
|
||||||
let mut wtxn = index.write_txn().unwrap();
|
let mut wtxn = index.write_txn().unwrap();
|
||||||
let builder = IndexDocuments::new(
|
let builder = IndexDocuments::new(
|
||||||
&mut wtxn,
|
&mut wtxn,
|
||||||
@ -2043,8 +2049,8 @@ mod tests {
|
|||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
let documents = documents!([
|
let documents = documents!([
|
||||||
{ "id": 2, "doggo": { "name": "jean", "age": 20 } },
|
{ "id": 2, "catto": "jorts" },
|
||||||
{ "id": 3, "name": "bob", "age": 25 },
|
{ "id": 3, "legs": 4 },
|
||||||
]);
|
]);
|
||||||
let (builder, added) = builder.add_documents(documents).unwrap();
|
let (builder, added) = builder.add_documents(documents).unwrap();
|
||||||
insta::assert_display_snapshot!(added.unwrap(), @"2");
|
insta::assert_display_snapshot!(added.unwrap(), @"2");
|
||||||
@ -2062,13 +2068,15 @@ mod tests {
|
|||||||
wtxn.commit().unwrap();
|
wtxn.commit().unwrap();
|
||||||
|
|
||||||
db_snap!(index, documents, @r###"
|
db_snap!(index, documents, @r###"
|
||||||
{"id":3,"name":"bob","age":25}
|
{"id":3,"name":"jean","age":25,"legs":4}
|
||||||
"###);
|
"###);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn delete_document_and_then_add_documents_in_the_same_transform() {
|
fn delete_document_and_then_add_documents_in_the_same_transform() {
|
||||||
let index = TempIndex::new();
|
let mut index = TempIndex::new();
|
||||||
|
index.index_documents_config.update_method = IndexDocumentsMethod::UpdateDocuments;
|
||||||
|
|
||||||
let mut wtxn = index.write_txn().unwrap();
|
let mut wtxn = index.write_txn().unwrap();
|
||||||
let builder = IndexDocuments::new(
|
let builder = IndexDocuments::new(
|
||||||
&mut wtxn,
|
&mut wtxn,
|
||||||
@ -2107,7 +2115,9 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn delete_the_same_document_multiple_time() {
|
fn delete_the_same_document_multiple_time() {
|
||||||
let index = TempIndex::new();
|
let mut index = TempIndex::new();
|
||||||
|
index.index_documents_config.update_method = IndexDocumentsMethod::UpdateDocuments;
|
||||||
|
|
||||||
let mut wtxn = index.write_txn().unwrap();
|
let mut wtxn = index.write_txn().unwrap();
|
||||||
let builder = IndexDocuments::new(
|
let builder = IndexDocuments::new(
|
||||||
&mut wtxn,
|
&mut wtxn,
|
||||||
@ -2148,4 +2158,75 @@ mod tests {
|
|||||||
{"id":3,"name":"bob","age":25}
|
{"id":3,"name":"bob","age":25}
|
||||||
"###);
|
"###);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn add_document_and_in_another_transform_delete_the_document_then_add_it_again() {
|
||||||
|
let mut index = TempIndex::new();
|
||||||
|
index.index_documents_config.update_method = IndexDocumentsMethod::UpdateDocuments;
|
||||||
|
|
||||||
|
let mut wtxn = index.write_txn().unwrap();
|
||||||
|
let builder = IndexDocuments::new(
|
||||||
|
&mut wtxn,
|
||||||
|
&index,
|
||||||
|
&index.indexer_config,
|
||||||
|
index.index_documents_config.clone(),
|
||||||
|
|_| (),
|
||||||
|
|| false,
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let documents = documents!([
|
||||||
|
{ "id": 1, "doggo": "kevin" },
|
||||||
|
]);
|
||||||
|
let (builder, added) = builder.add_documents(documents).unwrap();
|
||||||
|
insta::assert_display_snapshot!(added.unwrap(), @"1");
|
||||||
|
|
||||||
|
let addition = builder.execute().unwrap();
|
||||||
|
insta::assert_debug_snapshot!(addition, @r###"
|
||||||
|
DocumentAdditionResult {
|
||||||
|
indexed_documents: 1,
|
||||||
|
number_of_documents: 1,
|
||||||
|
}
|
||||||
|
"###);
|
||||||
|
wtxn.commit().unwrap();
|
||||||
|
|
||||||
|
db_snap!(index, documents, @r###"
|
||||||
|
{"id":1,"doggo":"kevin"}
|
||||||
|
"###);
|
||||||
|
|
||||||
|
// A first batch of documents has been inserted
|
||||||
|
|
||||||
|
let mut wtxn = index.write_txn().unwrap();
|
||||||
|
let builder = IndexDocuments::new(
|
||||||
|
&mut wtxn,
|
||||||
|
&index,
|
||||||
|
&index.indexer_config,
|
||||||
|
index.index_documents_config.clone(),
|
||||||
|
|_| (),
|
||||||
|
|| false,
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let (builder, removed) = builder.remove_documents(vec![S("1")]).unwrap();
|
||||||
|
insta::assert_display_snapshot!(removed.unwrap(), @"1");
|
||||||
|
|
||||||
|
let documents = documents!([
|
||||||
|
{ "id": 1, "catto": "jorts" },
|
||||||
|
]);
|
||||||
|
let (builder, added) = builder.add_documents(documents).unwrap();
|
||||||
|
insta::assert_display_snapshot!(added.unwrap(), @"1");
|
||||||
|
|
||||||
|
let addition = builder.execute().unwrap();
|
||||||
|
insta::assert_debug_snapshot!(addition, @r###"
|
||||||
|
DocumentAdditionResult {
|
||||||
|
indexed_documents: 1,
|
||||||
|
number_of_documents: 1,
|
||||||
|
}
|
||||||
|
"###);
|
||||||
|
wtxn.commit().unwrap();
|
||||||
|
|
||||||
|
db_snap!(index, documents, @r###"
|
||||||
|
{"id":1,"catto":"jorts"}
|
||||||
|
"###);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -223,11 +223,14 @@ impl<'a, 'i> Transform<'a, 'i> {
|
|||||||
Entry::Occupied(entry) => *entry.get() as u32,
|
Entry::Occupied(entry) => *entry.get() as u32,
|
||||||
Entry::Vacant(entry) => {
|
Entry::Vacant(entry) => {
|
||||||
// If the document was already in the db we mark it as a replaced document.
|
// If the document was already in the db we mark it as a replaced document.
|
||||||
// It'll be deleted later. We keep its original docid to insert it in the grenad.
|
// It'll be deleted later.
|
||||||
if let Some(docid) = external_documents_ids.get(entry.key()) {
|
if let Some(docid) = external_documents_ids.get(entry.key()) {
|
||||||
self.replaced_documents_ids.insert(docid);
|
// If it was already in the list of replaced documents it means it was deleted
|
||||||
|
// by the remove_document method. We should starts as if it never existed.
|
||||||
|
if self.replaced_documents_ids.insert(docid) {
|
||||||
original_docid = Some(docid);
|
original_docid = Some(docid);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
let docid = self
|
let docid = self
|
||||||
.available_documents_ids
|
.available_documents_ids
|
||||||
.next()
|
.next()
|
||||||
|
Loading…
Reference in New Issue
Block a user