-
Type:
Build Failure
-
Resolution: Fixed
-
Priority:
Unknown
-
Affects Version/s: None
-
None
-
None
-
Python Drivers
-
Not Needed
-
-
None
-
None
-
None
-
None
-
None
-
None
The test_fulltext_retriever is currently flaky because it does not wait for the index to settle after adding documents to the collection. We need to add this wait condition.
[2024/12/04 17:56:30.598] =================================== FAILURES =================================== [2024/12/04 17:56:30.598] ___________________________ test_fulltext_retriever ____________________________ [2024/12/04 17:56:30.598] indexed_vectorstore = <tests.utils.PatchedMongoDBAtlasVectorSearch object at 0x7f76f733b2b0> [2024/12/04 17:56:30.598] def test_fulltext_retriever( [2024/12/04 17:56:30.598] indexed_vectorstore: PatchedMongoDBAtlasVectorSearch, [2024/12/04 17:56:30.598] ) -> None: [2024/12/04 17:56:30.598] """Test result of performing fulltext search. [2024/12/04 17:56:30.598] The Retriever is independent of the VectorStore. [2024/12/04 17:56:30.598] We use it here only to get the Collection, which we know to be indexed. [2024/12/04 17:56:30.598] """ [2024/12/04 17:56:30.598] collection: Collection = indexed_vectorstore.collection [2024/12/04 17:56:30.598] retriever = MongoDBAtlasFullTextSearchRetriever( [2024/12/04 17:56:30.598] collection=collection, [2024/12/04 17:56:30.598] search_index_name=SEARCH_INDEX_NAME, [2024/12/04 17:56:30.598] search_field=PAGE_CONTENT_FIELD, [2024/12/04 17:56:30.598] ) [2024/12/04 17:56:30.598] query = "When was the last time I visited new orleans?" [2024/12/04 17:56:30.598] results = retriever.invoke(query) [2024/12/04 17:56:30.598] > assert "New Orleans" in results[0].page_content [2024/12/04 17:56:30.598] E IndexError: list index out of range [2024/12/04 17:56:30.598] tests/integration_tests/test_retrievers.py:165: IndexError