mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-07-31 08:05:59 +00:00
Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b97e691cbe |
@@ -39,6 +39,7 @@ from documents.search._tokenizer import ascii_fold
|
|||||||
from documents.search._tokenizer import autocomplete_tokens
|
from documents.search._tokenizer import autocomplete_tokens
|
||||||
from documents.search._tokenizer import register_tokenizers
|
from documents.search._tokenizer import register_tokenizers
|
||||||
from documents.utils import IterWrapper
|
from documents.utils import IterWrapper
|
||||||
|
from documents.utils import QuerySetStream
|
||||||
from documents.utils import identity
|
from documents.utils import identity
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
@@ -1035,14 +1036,15 @@ _EMPTY_VIEWER_GRANT: Final[ViewerGrant] = ViewerGrant(
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class _DocumentViewerStream:
|
class _DocumentViewerStream(QuerySetStream["Document"]):
|
||||||
"""Yield document permission data while batch-loading grants.
|
"""Yield document permission data while batch-loading grants.
|
||||||
|
|
||||||
Viewer permissions are fetched in batches (see
|
Viewer permissions are fetched in batches (see
|
||||||
``_bulk_get_viewer_permissions``), but documents are yielded individually so a
|
``_bulk_get_viewer_permissions``), but documents are yielded individually so a
|
||||||
progress bar wrapped around this stream advances per document rather than
|
progress bar wrapped around this stream advances per document rather than
|
||||||
jumping a whole chunk at a time. ``__len__`` lets the progress helper still
|
jumping a whole chunk at a time. ``__len__`` (inherited from
|
||||||
discover the total (it inspects ``QuerySet``/``Sized``).
|
``QuerySetStream``) lets the progress helper still discover the total (it
|
||||||
|
inspects ``QuerySet``/``Sized``).
|
||||||
|
|
||||||
The viewer and group ids travel with each document in the yielded pair
|
The viewer and group ids travel with each document in the yielded pair
|
||||||
rather than through a separate mutable attribute, so the pairing survives
|
rather than through a separate mutable attribute, so the pairing survives
|
||||||
@@ -1051,18 +1053,11 @@ class _DocumentViewerStream:
|
|||||||
generator in lock-step.
|
generator in lock-step.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, documents: QuerySet[Document], *, chunk_size: int) -> None:
|
|
||||||
self._documents = documents
|
|
||||||
self._chunk_size = chunk_size
|
|
||||||
|
|
||||||
def __len__(self) -> int:
|
|
||||||
return self._documents.count()
|
|
||||||
|
|
||||||
def __iter__(self) -> Iterator[tuple[Document, ViewerGrant]]:
|
def __iter__(self) -> Iterator[tuple[Document, ViewerGrant]]:
|
||||||
# iterator(chunk_size=…) streams from a server-side cursor instead of
|
# iterator(chunk_size=…) streams from a server-side cursor instead of
|
||||||
# materialising the whole queryset in memory; since Django 4.1 it still
|
# materialising the whole queryset in memory; since Django 4.1 it still
|
||||||
# honours prefetch_related, running the prefetches one batch at a time.
|
# honours prefetch_related, running the prefetches one batch at a time.
|
||||||
documents = self._documents.iterator(chunk_size=self._chunk_size)
|
documents = self._queryset.iterator(chunk_size=self._chunk_size)
|
||||||
for chunk in chunked(documents, self._chunk_size):
|
for chunk in chunked(documents, self._chunk_size):
|
||||||
grants_by_pk = _bulk_get_viewer_permissions([doc.pk for doc in chunk])
|
grants_by_pk = _bulk_get_viewer_permissions([doc.pk for doc in chunk])
|
||||||
for doc in chunk:
|
for doc in chunk:
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
from datetime import UTC
|
||||||
from typing import TYPE_CHECKING
|
from typing import TYPE_CHECKING
|
||||||
from typing import Final
|
from typing import Final
|
||||||
|
|
||||||
@@ -8,6 +9,12 @@ import regex
|
|||||||
import tantivy
|
import tantivy
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
|
||||||
|
from documents.search._dates import (
|
||||||
|
_date_only_range, # noqa: F401 — re-exported for test imports
|
||||||
|
)
|
||||||
|
from documents.search._dates import (
|
||||||
|
_datetime_range, # noqa: F401 — re-exported for test imports
|
||||||
|
)
|
||||||
from documents.search._tokenizer import simple_search_tokens
|
from documents.search._tokenizer import simple_search_tokens
|
||||||
from documents.search._translate import SearchQueryError
|
from documents.search._translate import SearchQueryError
|
||||||
from documents.search._translate import translate_query
|
from documents.search._translate import translate_query
|
||||||
@@ -69,6 +76,42 @@ def _build_cjk_query(
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def rewrite_natural_date_keywords(query: str, tz: tzinfo) -> str:
|
||||||
|
"""
|
||||||
|
Rewrite natural date syntax to ISO 8601 format for Tantivy compatibility.
|
||||||
|
|
||||||
|
Delegates to ``translate_query`` which handles all date forms, comma
|
||||||
|
expansion, field aliasing, relative ranges, and operator normalization.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
query: Raw user query string
|
||||||
|
tz: Timezone for converting local date boundaries to UTC
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
Query with date syntax rewritten to ISO 8601 ranges
|
||||||
|
|
||||||
|
Note:
|
||||||
|
Bare keywords without field prefixes pass through unchanged.
|
||||||
|
"""
|
||||||
|
return translate_query(query, tz)
|
||||||
|
|
||||||
|
|
||||||
|
def normalize_query(query: str) -> str:
|
||||||
|
"""
|
||||||
|
Normalize query syntax for better search behavior.
|
||||||
|
|
||||||
|
Delegates to ``translate_query`` which handles comma expansion, whitespace
|
||||||
|
collapsing, operator normalization, and field aliasing.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
query: Query string after date rewriting
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
Normalized query string ready for Tantivy parsing
|
||||||
|
"""
|
||||||
|
return translate_query(query, UTC)
|
||||||
|
|
||||||
|
|
||||||
def build_permission_filter(
|
def build_permission_filter(
|
||||||
schema: tantivy.Schema,
|
schema: tantivy.Schema,
|
||||||
user: AbstractBaseUser,
|
user: AbstractBaseUser,
|
||||||
|
|||||||
@@ -11,15 +11,16 @@ import pytest
|
|||||||
import tantivy
|
import tantivy
|
||||||
import time_machine
|
import time_machine
|
||||||
|
|
||||||
from documents.search._dates import _date_only_range
|
from documents.search._query import _date_only_range
|
||||||
from documents.search._dates import _datetime_range
|
from documents.search._query import _datetime_range
|
||||||
from documents.search._query import build_permission_filter
|
from documents.search._query import build_permission_filter
|
||||||
|
from documents.search._query import normalize_query
|
||||||
from documents.search._query import parse_simple_text_highlight_query
|
from documents.search._query import parse_simple_text_highlight_query
|
||||||
from documents.search._query import parse_user_query
|
from documents.search._query import parse_user_query
|
||||||
|
from documents.search._query import rewrite_natural_date_keywords
|
||||||
from documents.search._schema import build_schema
|
from documents.search._schema import build_schema
|
||||||
from documents.search._tokenizer import register_tokenizers
|
from documents.search._tokenizer import register_tokenizers
|
||||||
from documents.search._translate import InvalidDateQuery
|
from documents.search._translate import InvalidDateQuery
|
||||||
from documents.search._translate import translate_query
|
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from django.contrib.auth.base_user import AbstractBaseUser
|
from django.contrib.auth.base_user import AbstractBaseUser
|
||||||
@@ -58,7 +59,7 @@ class TestCreatedDateField:
|
|||||||
)
|
)
|
||||||
@time_machine.travel(datetime(2026, 3, 28, 15, 30, tzinfo=UTC), tick=False)
|
@time_machine.travel(datetime(2026, 3, 28, 15, 30, tzinfo=UTC), tick=False)
|
||||||
def test_today(self, tz: tzinfo, expected_lo: str, expected_hi: str) -> None:
|
def test_today(self, tz: tzinfo, expected_lo: str, expected_hi: str) -> None:
|
||||||
lo, hi = _range(translate_query("created:today", tz), "created")
|
lo, hi = _range(rewrite_natural_date_keywords("created:today", tz), "created")
|
||||||
assert lo == expected_lo
|
assert lo == expected_lo
|
||||||
assert hi == expected_hi
|
assert hi == expected_hi
|
||||||
|
|
||||||
@@ -66,7 +67,7 @@ class TestCreatedDateField:
|
|||||||
def test_today_auckland_ahead_of_utc(self) -> None:
|
def test_today_auckland_ahead_of_utc(self) -> None:
|
||||||
# UTC 03:00 -> Auckland (UTC+13) = 16:00 same date; local date = 2026-03-28
|
# UTC 03:00 -> Auckland (UTC+13) = 16:00 same date; local date = 2026-03-28
|
||||||
lo, _ = _range(
|
lo, _ = _range(
|
||||||
translate_query("created:today", AUCKLAND),
|
rewrite_natural_date_keywords("created:today", AUCKLAND),
|
||||||
"created",
|
"created",
|
||||||
)
|
)
|
||||||
assert lo == "2026-03-28T00:00:00Z"
|
assert lo == "2026-03-28T00:00:00Z"
|
||||||
@@ -128,7 +129,7 @@ class TestCreatedDateField:
|
|||||||
) -> None:
|
) -> None:
|
||||||
# 2026-03-28 is Saturday; Mon-Sun week calculation built into expectations
|
# 2026-03-28 is Saturday; Mon-Sun week calculation built into expectations
|
||||||
query = f"{field}:{keyword}"
|
query = f"{field}:{keyword}"
|
||||||
lo, hi = _range(translate_query(query, UTC), field)
|
lo, hi = _range(rewrite_natural_date_keywords(query, UTC), field)
|
||||||
assert lo == expected_lo
|
assert lo == expected_lo
|
||||||
assert hi == expected_hi
|
assert hi == expected_hi
|
||||||
|
|
||||||
@@ -136,7 +137,7 @@ class TestCreatedDateField:
|
|||||||
def test_this_month_december_wraps_to_next_year(self) -> None:
|
def test_this_month_december_wraps_to_next_year(self) -> None:
|
||||||
# December: next month must roll over to January 1 of next year
|
# December: next month must roll over to January 1 of next year
|
||||||
lo, hi = _range(
|
lo, hi = _range(
|
||||||
translate_query("created:this month", UTC),
|
rewrite_natural_date_keywords("created:this month", UTC),
|
||||||
"created",
|
"created",
|
||||||
)
|
)
|
||||||
assert lo == "2026-12-01T00:00:00Z"
|
assert lo == "2026-12-01T00:00:00Z"
|
||||||
@@ -146,7 +147,7 @@ class TestCreatedDateField:
|
|||||||
def test_last_month_january_wraps_to_previous_year(self) -> None:
|
def test_last_month_january_wraps_to_previous_year(self) -> None:
|
||||||
# January: last month must roll back to December 1 of previous year
|
# January: last month must roll back to December 1 of previous year
|
||||||
lo, hi = _range(
|
lo, hi = _range(
|
||||||
translate_query("created:previous month", UTC),
|
rewrite_natural_date_keywords("created:previous month", UTC),
|
||||||
"created",
|
"created",
|
||||||
)
|
)
|
||||||
assert lo == "2025-12-01T00:00:00Z"
|
assert lo == "2025-12-01T00:00:00Z"
|
||||||
@@ -155,7 +156,7 @@ class TestCreatedDateField:
|
|||||||
@time_machine.travel(datetime(2026, 7, 15, 12, 0, tzinfo=UTC), tick=False)
|
@time_machine.travel(datetime(2026, 7, 15, 12, 0, tzinfo=UTC), tick=False)
|
||||||
def test_previous_quarter(self) -> None:
|
def test_previous_quarter(self) -> None:
|
||||||
lo, hi = _range(
|
lo, hi = _range(
|
||||||
translate_query('created:"previous quarter"', UTC),
|
rewrite_natural_date_keywords('created:"previous quarter"', UTC),
|
||||||
"created",
|
"created",
|
||||||
)
|
)
|
||||||
assert lo == "2026-04-01T00:00:00Z"
|
assert lo == "2026-04-01T00:00:00Z"
|
||||||
@@ -175,7 +176,7 @@ class TestDateTimeFields:
|
|||||||
@time_machine.travel(datetime(2026, 3, 28, 15, 30, tzinfo=UTC), tick=False)
|
@time_machine.travel(datetime(2026, 3, 28, 15, 30, tzinfo=UTC), tick=False)
|
||||||
def test_added_today_eastern(self) -> None:
|
def test_added_today_eastern(self) -> None:
|
||||||
# EDT = UTC-4; local midnight 2026-03-28 00:00 EDT = 2026-03-28 04:00 UTC
|
# EDT = UTC-4; local midnight 2026-03-28 00:00 EDT = 2026-03-28 04:00 UTC
|
||||||
lo, hi = _range(translate_query("added:today", EASTERN), "added")
|
lo, hi = _range(rewrite_natural_date_keywords("added:today", EASTERN), "added")
|
||||||
assert lo == "2026-03-28T04:00:00Z"
|
assert lo == "2026-03-28T04:00:00Z"
|
||||||
assert hi == "2026-03-29T04:00:00Z"
|
assert hi == "2026-03-29T04:00:00Z"
|
||||||
|
|
||||||
@@ -183,14 +184,14 @@ class TestDateTimeFields:
|
|||||||
def test_added_today_auckland_midnight_crossing(self) -> None:
|
def test_added_today_auckland_midnight_crossing(self) -> None:
|
||||||
# UTC 02:00 on 2026-03-29 -> Auckland (UTC+13) = 2026-03-29 15:00 local
|
# UTC 02:00 on 2026-03-29 -> Auckland (UTC+13) = 2026-03-29 15:00 local
|
||||||
# Auckland midnight = UTC 2026-03-28 11:00
|
# Auckland midnight = UTC 2026-03-28 11:00
|
||||||
lo, hi = _range(translate_query("added:today", AUCKLAND), "added")
|
lo, hi = _range(rewrite_natural_date_keywords("added:today", AUCKLAND), "added")
|
||||||
assert lo == "2026-03-28T11:00:00Z"
|
assert lo == "2026-03-28T11:00:00Z"
|
||||||
assert hi == "2026-03-29T11:00:00Z"
|
assert hi == "2026-03-29T11:00:00Z"
|
||||||
|
|
||||||
@time_machine.travel(datetime(2026, 3, 28, 15, 0, tzinfo=UTC), tick=False)
|
@time_machine.travel(datetime(2026, 3, 28, 15, 0, tzinfo=UTC), tick=False)
|
||||||
def test_modified_today_utc(self) -> None:
|
def test_modified_today_utc(self) -> None:
|
||||||
lo, hi = _range(
|
lo, hi = _range(
|
||||||
translate_query("modified:today", UTC),
|
rewrite_natural_date_keywords("modified:today", UTC),
|
||||||
"modified",
|
"modified",
|
||||||
)
|
)
|
||||||
assert lo == "2026-03-28T00:00:00Z"
|
assert lo == "2026-03-28T00:00:00Z"
|
||||||
@@ -245,14 +246,14 @@ class TestDateTimeFields:
|
|||||||
expected_hi: str,
|
expected_hi: str,
|
||||||
) -> None:
|
) -> None:
|
||||||
# 2026-03-28 is Saturday; weekday()==5 so Monday=2026-03-23
|
# 2026-03-28 is Saturday; weekday()==5 so Monday=2026-03-23
|
||||||
lo, hi = _range(translate_query(f"added:{keyword}", UTC), "added")
|
lo, hi = _range(rewrite_natural_date_keywords(f"added:{keyword}", UTC), "added")
|
||||||
assert lo == expected_lo
|
assert lo == expected_lo
|
||||||
assert hi == expected_hi
|
assert hi == expected_hi
|
||||||
|
|
||||||
@time_machine.travel(datetime(2026, 12, 15, 12, 0, tzinfo=UTC), tick=False)
|
@time_machine.travel(datetime(2026, 12, 15, 12, 0, tzinfo=UTC), tick=False)
|
||||||
def test_this_month_december_wraps_to_next_year(self) -> None:
|
def test_this_month_december_wraps_to_next_year(self) -> None:
|
||||||
# December: next month wraps to January of next year
|
# December: next month wraps to January of next year
|
||||||
lo, hi = _range(translate_query("added:this month", UTC), "added")
|
lo, hi = _range(rewrite_natural_date_keywords("added:this month", UTC), "added")
|
||||||
assert lo == "2026-12-01T00:00:00Z"
|
assert lo == "2026-12-01T00:00:00Z"
|
||||||
assert hi == "2027-01-01T00:00:00Z"
|
assert hi == "2027-01-01T00:00:00Z"
|
||||||
|
|
||||||
@@ -260,7 +261,7 @@ class TestDateTimeFields:
|
|||||||
def test_last_month_january_wraps_to_previous_year(self) -> None:
|
def test_last_month_january_wraps_to_previous_year(self) -> None:
|
||||||
# January: last month wraps back to December of previous year
|
# January: last month wraps back to December of previous year
|
||||||
lo, hi = _range(
|
lo, hi = _range(
|
||||||
translate_query("added:previous month", UTC),
|
rewrite_natural_date_keywords("added:previous month", UTC),
|
||||||
"added",
|
"added",
|
||||||
)
|
)
|
||||||
assert lo == "2025-12-01T00:00:00Z"
|
assert lo == "2025-12-01T00:00:00Z"
|
||||||
@@ -296,7 +297,7 @@ class TestDateTimeFields:
|
|||||||
expected_lo: str,
|
expected_lo: str,
|
||||||
expected_hi: str,
|
expected_hi: str,
|
||||||
) -> None:
|
) -> None:
|
||||||
lo, hi = _range(translate_query(query, UTC), "added")
|
lo, hi = _range(rewrite_natural_date_keywords(query, UTC), "added")
|
||||||
assert lo == expected_lo
|
assert lo == expected_lo
|
||||||
assert hi == expected_hi
|
assert hi == expected_hi
|
||||||
|
|
||||||
@@ -310,20 +311,20 @@ class TestWhooshQueryRewriting:
|
|||||||
|
|
||||||
@time_machine.travel(datetime(2026, 3, 28, 15, 0, tzinfo=UTC), tick=False)
|
@time_machine.travel(datetime(2026, 3, 28, 15, 0, tzinfo=UTC), tick=False)
|
||||||
def test_compact_date_shim_rewrites_to_iso(self) -> None:
|
def test_compact_date_shim_rewrites_to_iso(self) -> None:
|
||||||
result = translate_query("created:20240115120000", UTC)
|
result = rewrite_natural_date_keywords("created:20240115120000", UTC)
|
||||||
assert "2024-01-15" in result
|
assert "2024-01-15" in result
|
||||||
assert "20240115120000" not in result
|
assert "20240115120000" not in result
|
||||||
|
|
||||||
@time_machine.travel(datetime(2026, 3, 28, 15, 0, tzinfo=UTC), tick=False)
|
@time_machine.travel(datetime(2026, 3, 28, 15, 0, tzinfo=UTC), tick=False)
|
||||||
def test_relative_range_shim_removes_now(self) -> None:
|
def test_relative_range_shim_removes_now(self) -> None:
|
||||||
result = translate_query("added:[now-7d TO now]", UTC)
|
result = rewrite_natural_date_keywords("added:[now-7d TO now]", UTC)
|
||||||
assert "now" not in result
|
assert "now" not in result
|
||||||
assert "2026-03-" in result
|
assert "2026-03-" in result
|
||||||
|
|
||||||
@time_machine.travel(datetime(2026, 3, 28, 12, 0, tzinfo=UTC), tick=False)
|
@time_machine.travel(datetime(2026, 3, 28, 12, 0, tzinfo=UTC), tick=False)
|
||||||
def test_bracket_minus_7_days(self) -> None:
|
def test_bracket_minus_7_days(self) -> None:
|
||||||
lo, hi = _range(
|
lo, hi = _range(
|
||||||
translate_query("added:[-7 days to now]", UTC),
|
rewrite_natural_date_keywords("added:[-7 days to now]", UTC),
|
||||||
"added",
|
"added",
|
||||||
)
|
)
|
||||||
assert lo == "2026-03-21T12:00:00Z"
|
assert lo == "2026-03-21T12:00:00Z"
|
||||||
@@ -332,7 +333,7 @@ class TestWhooshQueryRewriting:
|
|||||||
@time_machine.travel(datetime(2026, 3, 28, 12, 0, tzinfo=UTC), tick=False)
|
@time_machine.travel(datetime(2026, 3, 28, 12, 0, tzinfo=UTC), tick=False)
|
||||||
def test_bracket_minus_1_week(self) -> None:
|
def test_bracket_minus_1_week(self) -> None:
|
||||||
lo, hi = _range(
|
lo, hi = _range(
|
||||||
translate_query("added:[-1 week to now]", UTC),
|
rewrite_natural_date_keywords("added:[-1 week to now]", UTC),
|
||||||
"added",
|
"added",
|
||||||
)
|
)
|
||||||
assert lo == "2026-03-21T12:00:00Z"
|
assert lo == "2026-03-21T12:00:00Z"
|
||||||
@@ -342,7 +343,7 @@ class TestWhooshQueryRewriting:
|
|||||||
def test_bracket_minus_1_month_uses_relativedelta(self) -> None:
|
def test_bracket_minus_1_month_uses_relativedelta(self) -> None:
|
||||||
# relativedelta(months=1) from 2026-03-28 = 2026-02-28 (not 29)
|
# relativedelta(months=1) from 2026-03-28 = 2026-02-28 (not 29)
|
||||||
lo, hi = _range(
|
lo, hi = _range(
|
||||||
translate_query("created:[-1 month to now]", UTC),
|
rewrite_natural_date_keywords("created:[-1 month to now]", UTC),
|
||||||
"created",
|
"created",
|
||||||
)
|
)
|
||||||
assert lo == "2026-02-28T12:00:00Z"
|
assert lo == "2026-02-28T12:00:00Z"
|
||||||
@@ -351,7 +352,7 @@ class TestWhooshQueryRewriting:
|
|||||||
@time_machine.travel(datetime(2026, 3, 28, 12, 0, tzinfo=UTC), tick=False)
|
@time_machine.travel(datetime(2026, 3, 28, 12, 0, tzinfo=UTC), tick=False)
|
||||||
def test_bracket_minus_1_year(self) -> None:
|
def test_bracket_minus_1_year(self) -> None:
|
||||||
lo, hi = _range(
|
lo, hi = _range(
|
||||||
translate_query("modified:[-1 year to now]", UTC),
|
rewrite_natural_date_keywords("modified:[-1 year to now]", UTC),
|
||||||
"modified",
|
"modified",
|
||||||
)
|
)
|
||||||
assert lo == "2025-03-28T12:00:00Z"
|
assert lo == "2025-03-28T12:00:00Z"
|
||||||
@@ -360,7 +361,7 @@ class TestWhooshQueryRewriting:
|
|||||||
@time_machine.travel(datetime(2026, 3, 28, 12, 0, tzinfo=UTC), tick=False)
|
@time_machine.travel(datetime(2026, 3, 28, 12, 0, tzinfo=UTC), tick=False)
|
||||||
def test_bracket_plural_unit_hours(self) -> None:
|
def test_bracket_plural_unit_hours(self) -> None:
|
||||||
lo, hi = _range(
|
lo, hi = _range(
|
||||||
translate_query("added:[-3 hours to now]", UTC),
|
rewrite_natural_date_keywords("added:[-3 hours to now]", UTC),
|
||||||
"added",
|
"added",
|
||||||
)
|
)
|
||||||
assert lo == "2026-03-28T09:00:00Z"
|
assert lo == "2026-03-28T09:00:00Z"
|
||||||
@@ -368,7 +369,7 @@ class TestWhooshQueryRewriting:
|
|||||||
|
|
||||||
@time_machine.travel(datetime(2026, 3, 28, 12, 0, tzinfo=UTC), tick=False)
|
@time_machine.travel(datetime(2026, 3, 28, 12, 0, tzinfo=UTC), tick=False)
|
||||||
def test_bracket_case_insensitive(self) -> None:
|
def test_bracket_case_insensitive(self) -> None:
|
||||||
result = translate_query("added:[-1 WEEK TO NOW]", UTC)
|
result = rewrite_natural_date_keywords("added:[-1 WEEK TO NOW]", UTC)
|
||||||
assert "now" not in result.lower()
|
assert "now" not in result.lower()
|
||||||
lo, hi = _range(result, "added")
|
lo, hi = _range(result, "added")
|
||||||
assert lo == "2026-03-21T12:00:00Z"
|
assert lo == "2026-03-21T12:00:00Z"
|
||||||
@@ -378,7 +379,7 @@ class TestWhooshQueryRewriting:
|
|||||||
def test_relative_range_swaps_bounds_when_lo_exceeds_hi(self) -> None:
|
def test_relative_range_swaps_bounds_when_lo_exceeds_hi(self) -> None:
|
||||||
# [now+1h TO now-1h] has lo > hi before substitution; they must be swapped
|
# [now+1h TO now-1h] has lo > hi before substitution; they must be swapped
|
||||||
lo, hi = _range(
|
lo, hi = _range(
|
||||||
translate_query("added:[now+1h TO now-1h]", UTC),
|
rewrite_natural_date_keywords("added:[now+1h TO now-1h]", UTC),
|
||||||
"added",
|
"added",
|
||||||
)
|
)
|
||||||
assert lo == "2026-03-28T11:00:00Z"
|
assert lo == "2026-03-28T11:00:00Z"
|
||||||
@@ -386,14 +387,14 @@ class TestWhooshQueryRewriting:
|
|||||||
|
|
||||||
def test_8digit_created_date_field_always_uses_utc_midnight(self) -> None:
|
def test_8digit_created_date_field_always_uses_utc_midnight(self) -> None:
|
||||||
# created is a DateField: boundaries are always UTC midnight, no TZ offset
|
# created is a DateField: boundaries are always UTC midnight, no TZ offset
|
||||||
result = translate_query("created:20231201", EASTERN)
|
result = rewrite_natural_date_keywords("created:20231201", EASTERN)
|
||||||
lo, hi = _range(result, "created")
|
lo, hi = _range(result, "created")
|
||||||
assert lo == "2023-12-01T00:00:00Z"
|
assert lo == "2023-12-01T00:00:00Z"
|
||||||
assert hi == "2023-12-02T00:00:00Z"
|
assert hi == "2023-12-02T00:00:00Z"
|
||||||
|
|
||||||
def test_8digit_added_datetime_field_converts_local_midnight_to_utc(self) -> None:
|
def test_8digit_added_datetime_field_converts_local_midnight_to_utc(self) -> None:
|
||||||
# added is DateTimeField: midnight Dec 1 Eastern (EST = UTC-5) = 05:00 UTC
|
# added is DateTimeField: midnight Dec 1 Eastern (EST = UTC-5) = 05:00 UTC
|
||||||
result = translate_query("added:20231201", EASTERN)
|
result = rewrite_natural_date_keywords("added:20231201", EASTERN)
|
||||||
lo, hi = _range(result, "added")
|
lo, hi = _range(result, "added")
|
||||||
assert lo == "2023-12-01T05:00:00Z"
|
assert lo == "2023-12-01T05:00:00Z"
|
||||||
assert hi == "2023-12-02T05:00:00Z"
|
assert hi == "2023-12-02T05:00:00Z"
|
||||||
@@ -401,7 +402,7 @@ class TestWhooshQueryRewriting:
|
|||||||
def test_8digit_modified_datetime_field_converts_local_midnight_to_utc(
|
def test_8digit_modified_datetime_field_converts_local_midnight_to_utc(
|
||||||
self,
|
self,
|
||||||
) -> None:
|
) -> None:
|
||||||
result = translate_query("modified:20231201", EASTERN)
|
result = rewrite_natural_date_keywords("modified:20231201", EASTERN)
|
||||||
lo, hi = _range(result, "modified")
|
lo, hi = _range(result, "modified")
|
||||||
assert lo == "2023-12-01T05:00:00Z"
|
assert lo == "2023-12-01T05:00:00Z"
|
||||||
assert hi == "2023-12-02T05:00:00Z"
|
assert hi == "2023-12-02T05:00:00Z"
|
||||||
@@ -411,7 +412,7 @@ class TestWhooshQueryRewriting:
|
|||||||
# (e.g. month=13) so the API can surface a 400 telling the user the date
|
# (e.g. month=13) so the API can surface a 400 telling the user the date
|
||||||
# is malformed instead of silently returning zero results.
|
# is malformed instead of silently returning zero results.
|
||||||
with pytest.raises(InvalidDateQuery) as exc_info:
|
with pytest.raises(InvalidDateQuery) as exc_info:
|
||||||
translate_query("added:20231340", UTC)
|
rewrite_natural_date_keywords("added:20231340", UTC)
|
||||||
assert exc_info.value.field == "added"
|
assert exc_info.value.field == "added"
|
||||||
assert exc_info.value.value == "20231340"
|
assert exc_info.value.value == "20231340"
|
||||||
|
|
||||||
@@ -578,7 +579,7 @@ class TestYearRangeRewriting:
|
|||||||
expected_lo: str,
|
expected_lo: str,
|
||||||
expected_hi: str,
|
expected_hi: str,
|
||||||
) -> None:
|
) -> None:
|
||||||
result = translate_query(query, UTC)
|
result = rewrite_natural_date_keywords(query, UTC)
|
||||||
lo, hi = _range(result, field)
|
lo, hi = _range(result, field)
|
||||||
assert lo == expected_lo
|
assert lo == expected_lo
|
||||||
assert hi == expected_hi
|
assert hi == expected_hi
|
||||||
@@ -586,14 +587,14 @@ class TestYearRangeRewriting:
|
|||||||
def test_reversed_year_range_is_swapped(self) -> None:
|
def test_reversed_year_range_is_swapped(self) -> None:
|
||||||
# A reversed range must not yield lo > hi, which Tantivy treats as an
|
# A reversed range must not yield lo > hi, which Tantivy treats as an
|
||||||
# empty range (silently zero results). The bounds are swapped instead.
|
# empty range (silently zero results). The bounds are swapped instead.
|
||||||
result = translate_query("created:[2025 TO 2020]", UTC)
|
result = rewrite_natural_date_keywords("created:[2025 TO 2020]", UTC)
|
||||||
lo, hi = _range(result, "created")
|
lo, hi = _range(result, "created")
|
||||||
assert lo == "2020-01-01T00:00:00Z"
|
assert lo == "2020-01-01T00:00:00Z"
|
||||||
assert hi == "2026-01-01T00:00:00Z"
|
assert hi == "2026-01-01T00:00:00Z"
|
||||||
|
|
||||||
def test_year_range_in_complex_boolean_query(self) -> None:
|
def test_year_range_in_complex_boolean_query(self) -> None:
|
||||||
query = "tag:steuer AND (title:2020 OR (NOT title:2019 AND NOT title:2018 AND created:[2020 TO 2020]))"
|
query = "tag:steuer AND (title:2020 OR (NOT title:2019 AND NOT title:2018 AND created:[2020 TO 2020]))"
|
||||||
result = translate_query(query, UTC)
|
result = rewrite_natural_date_keywords(query, UTC)
|
||||||
lo, hi = _range(result, "created")
|
lo, hi = _range(result, "created")
|
||||||
assert lo == "2020-01-01T00:00:00Z"
|
assert lo == "2020-01-01T00:00:00Z"
|
||||||
assert hi == "2021-01-01T00:00:00Z"
|
assert hi == "2021-01-01T00:00:00Z"
|
||||||
@@ -603,7 +604,7 @@ class TestYearRangeRewriting:
|
|||||||
|
|
||||||
def test_already_iso_date_range_passes_through_unchanged(self) -> None:
|
def test_already_iso_date_range_passes_through_unchanged(self) -> None:
|
||||||
original = "created:[2020-01-01T00:00:00Z TO 2021-01-01T00:00:00Z]"
|
original = "created:[2020-01-01T00:00:00Z TO 2021-01-01T00:00:00Z]"
|
||||||
assert translate_query(original, UTC) == original
|
assert rewrite_natural_date_keywords(original, UTC) == original
|
||||||
|
|
||||||
def test_8digit_in_brackets_not_matched_as_year_range(self) -> None:
|
def test_8digit_in_brackets_not_matched_as_year_range(self) -> None:
|
||||||
# [YYYYMMDD TO YYYYMMDD]: the translation layer converts 8-digit bounds to
|
# [YYYYMMDD TO YYYYMMDD]: the translation layer converts 8-digit bounds to
|
||||||
@@ -612,7 +613,7 @@ class TestYearRangeRewriting:
|
|||||||
# This is the correct and accepted behavior: old compact form becomes a
|
# This is the correct and accepted behavior: old compact form becomes a
|
||||||
# proper Tantivy-parseable ISO range.
|
# proper Tantivy-parseable ISO range.
|
||||||
original = "created:[20200101 TO 20201231]"
|
original = "created:[20200101 TO 20201231]"
|
||||||
result = translate_query(original, UTC)
|
result = rewrite_natural_date_keywords(original, UTC)
|
||||||
lo, hi = _range(result, "created")
|
lo, hi = _range(result, "created")
|
||||||
assert lo == "2020-01-01T00:00:00Z"
|
assert lo == "2020-01-01T00:00:00Z"
|
||||||
assert hi == "2021-01-01T00:00:00Z"
|
assert hi == "2021-01-01T00:00:00Z"
|
||||||
@@ -635,7 +636,7 @@ class TestNonDateFieldsNotRewritten:
|
|||||||
],
|
],
|
||||||
)
|
)
|
||||||
def test_8digit_on_integer_field_passes_through_unchanged(self, query: str) -> None:
|
def test_8digit_on_integer_field_passes_through_unchanged(self, query: str) -> None:
|
||||||
assert translate_query(query, EASTERN) == query
|
assert rewrite_natural_date_keywords(query, EASTERN) == query
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"query",
|
"query",
|
||||||
@@ -649,12 +650,12 @@ class TestNonDateFieldsNotRewritten:
|
|||||||
self,
|
self,
|
||||||
query: str,
|
query: str,
|
||||||
) -> None:
|
) -> None:
|
||||||
assert translate_query(query, UTC) == query
|
assert rewrite_natural_date_keywords(query, UTC) == query
|
||||||
|
|
||||||
def test_unknown_field_keyword_passes_through_unchanged(self) -> None:
|
def test_unknown_field_keyword_passes_through_unchanged(self) -> None:
|
||||||
# foobar is not a date field: 'foobar:today' must not become a date range,
|
# foobar is not a date field: 'foobar:today' must not become a date range,
|
||||||
# which Tantivy would otherwise reject as an unknown/typed field.
|
# which Tantivy would otherwise reject as an unknown/typed field.
|
||||||
assert translate_query("foobar:today", UTC) == "foobar:today"
|
assert rewrite_natural_date_keywords("foobar:today", UTC) == "foobar:today"
|
||||||
|
|
||||||
|
|
||||||
class TestPassthrough:
|
class TestPassthrough:
|
||||||
@@ -662,39 +663,37 @@ class TestPassthrough:
|
|||||||
|
|
||||||
def test_bare_keyword_no_field_prefix_unchanged(self) -> None:
|
def test_bare_keyword_no_field_prefix_unchanged(self) -> None:
|
||||||
# Bare 'today' with no field: prefix passes through unchanged
|
# Bare 'today' with no field: prefix passes through unchanged
|
||||||
result = translate_query("bank statement today", UTC)
|
result = rewrite_natural_date_keywords("bank statement today", UTC)
|
||||||
assert "today" in result
|
assert "today" in result
|
||||||
|
|
||||||
def test_unrelated_query_unchanged(self) -> None:
|
def test_unrelated_query_unchanged(self) -> None:
|
||||||
assert translate_query("title:invoice", UTC) == "title:invoice"
|
assert rewrite_natural_date_keywords("title:invoice", UTC) == "title:invoice"
|
||||||
|
|
||||||
|
|
||||||
class TestNormalizeQuery:
|
class TestNormalizeQuery:
|
||||||
"""translate_query expands comma-separated values and collapses whitespace."""
|
"""normalize_query expands comma-separated values and collapses whitespace."""
|
||||||
|
|
||||||
def test_normalize_expands_comma_separated_tags(self) -> None:
|
def test_normalize_expands_comma_separated_tags(self) -> None:
|
||||||
assert translate_query("tag:foo,bar", UTC) == "tag:foo AND tag:bar"
|
assert normalize_query("tag:foo,bar") == "tag:foo AND tag:bar"
|
||||||
|
|
||||||
def test_normalize_comma_between_range_expressions(self) -> None:
|
def test_normalize_comma_between_range_expressions(self) -> None:
|
||||||
# Comma-separated field range expressions (Whoosh v2 syntax) must be
|
# Comma-separated field range expressions (Whoosh v2 syntax) must be
|
||||||
# converted to AND so Tantivy does not receive an invalid comma.
|
# converted to AND so Tantivy does not receive an invalid comma.
|
||||||
q = "created:[2026-01-01T00:00:00Z TO 2026-06-01T00:00:00Z],added:[2026-05-01T00:00:00Z TO 2026-06-01T00:00:00Z]"
|
q = "created:[2026-01-01T00:00:00Z TO 2026-06-01T00:00:00Z],added:[2026-05-01T00:00:00Z TO 2026-06-01T00:00:00Z]"
|
||||||
assert translate_query(q, UTC) == (
|
assert normalize_query(q) == (
|
||||||
"created:[2026-01-01T00:00:00Z TO 2026-06-01T00:00:00Z]"
|
"created:[2026-01-01T00:00:00Z TO 2026-06-01T00:00:00Z]"
|
||||||
" AND "
|
" AND "
|
||||||
"added:[2026-05-01T00:00:00Z TO 2026-06-01T00:00:00Z]"
|
"added:[2026-05-01T00:00:00Z TO 2026-06-01T00:00:00Z]"
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_normalize_expands_three_values(self) -> None:
|
def test_normalize_expands_three_values(self) -> None:
|
||||||
assert (
|
assert normalize_query("tag:foo,bar,baz") == "tag:foo AND tag:bar AND tag:baz"
|
||||||
translate_query("tag:foo,bar,baz", UTC) == "tag:foo AND tag:bar AND tag:baz"
|
|
||||||
)
|
|
||||||
|
|
||||||
def test_normalize_collapses_whitespace(self) -> None:
|
def test_normalize_collapses_whitespace(self) -> None:
|
||||||
assert translate_query("bank statement", UTC) == "bank statement"
|
assert normalize_query("bank statement") == "bank statement"
|
||||||
|
|
||||||
def test_normalize_no_commas_unchanged(self) -> None:
|
def test_normalize_no_commas_unchanged(self) -> None:
|
||||||
assert translate_query("bank statement", UTC) == "bank statement"
|
assert normalize_query("bank statement") == "bank statement"
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
("raw", "expected"),
|
("raw", "expected"),
|
||||||
@@ -737,7 +736,7 @@ class TestNormalizeQuery:
|
|||||||
],
|
],
|
||||||
)
|
)
|
||||||
def test_normalize_strips_dangling_operators(self, raw: str, expected: str) -> None:
|
def test_normalize_strips_dangling_operators(self, raw: str, expected: str) -> None:
|
||||||
assert translate_query(raw, UTC) == expected
|
assert normalize_query(raw) == expected
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"query",
|
"query",
|
||||||
@@ -749,7 +748,7 @@ class TestNormalizeQuery:
|
|||||||
],
|
],
|
||||||
)
|
)
|
||||||
def test_normalize_preserves_valid_operators(self, query: str) -> None:
|
def test_normalize_preserves_valid_operators(self, query: str) -> None:
|
||||||
assert translate_query(query, UTC) == query
|
assert normalize_query(query) == query
|
||||||
|
|
||||||
|
|
||||||
class TestParseSimpleTextHighlightQuery:
|
class TestParseSimpleTextHighlightQuery:
|
||||||
|
|||||||
@@ -0,0 +1,35 @@
|
|||||||
|
import pytest_mock
|
||||||
|
|
||||||
|
from documents.utils import QuerySetStream
|
||||||
|
|
||||||
|
|
||||||
|
class TestQuerySetStream:
|
||||||
|
def test_len_and_iter_delegate_to_streaming_queryset_methods(
|
||||||
|
self,
|
||||||
|
mocker: pytest_mock.MockerFixture,
|
||||||
|
) -> None:
|
||||||
|
"""
|
||||||
|
GIVEN:
|
||||||
|
- A mock queryset
|
||||||
|
WHEN:
|
||||||
|
- A QuerySetStream wrapping it is measured and iterated
|
||||||
|
THEN:
|
||||||
|
- len() uses count() (not a materializing len()), and iteration
|
||||||
|
uses .iterator(chunk_size=...) (not plain iteration, which
|
||||||
|
would materialize the whole queryset, plus any prefetch
|
||||||
|
caches, into Django's own result cache at once)
|
||||||
|
"""
|
||||||
|
mock_queryset = mocker.MagicMock()
|
||||||
|
mock_queryset.count.return_value = 42
|
||||||
|
mock_queryset.iterator.return_value = iter(["row-1", "row-2"])
|
||||||
|
streamed = QuerySetStream(mock_queryset, chunk_size=1000)
|
||||||
|
|
||||||
|
assert len(streamed) == 42
|
||||||
|
assert list(streamed) == ["row-1", "row-2"]
|
||||||
|
# count.call_count isn't asserted exactly: list()'s own size-hint
|
||||||
|
# optimization calls len(streamed) again internally, on top of the
|
||||||
|
# explicit len() call above -- both legitimately delegate to
|
||||||
|
# count(), so only the delegation itself (not the call count) is
|
||||||
|
# the thing being verified here.
|
||||||
|
mock_queryset.count.assert_called_with()
|
||||||
|
mock_queryset.iterator.assert_called_once_with(chunk_size=1000)
|
||||||
@@ -3,16 +3,24 @@ import logging
|
|||||||
import shutil
|
import shutil
|
||||||
from collections.abc import Callable
|
from collections.abc import Callable
|
||||||
from collections.abc import Iterable
|
from collections.abc import Iterable
|
||||||
|
from collections.abc import Iterator
|
||||||
from os import utime
|
from os import utime
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from subprocess import CompletedProcess
|
from subprocess import CompletedProcess
|
||||||
from subprocess import run
|
from subprocess import run
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
from typing import Generic
|
||||||
from typing import TypeVar
|
from typing import TypeVar
|
||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from django.db.models import Model
|
||||||
|
from django.db.models import QuerySet
|
||||||
|
|
||||||
_T = TypeVar("_T")
|
_T = TypeVar("_T")
|
||||||
|
_M = TypeVar("_M", bound="Model")
|
||||||
|
|
||||||
# A function that wraps an iterable — typically used to inject a progress bar.
|
# A function that wraps an iterable — typically used to inject a progress bar.
|
||||||
IterWrapper = Callable[[Iterable[_T]], Iterable[_T]]
|
IterWrapper = Callable[[Iterable[_T]], Iterable[_T]]
|
||||||
@@ -23,6 +31,40 @@ def identity(iterable: Iterable[_T]) -> Iterable[_T]:
|
|||||||
return iterable
|
return iterable
|
||||||
|
|
||||||
|
|
||||||
|
class QuerySetStream(Generic[_M]):
|
||||||
|
"""Stream a QuerySet via .iterator(chunk_size=...) instead of
|
||||||
|
materializing it (plus any prefetch caches) all at once, while still
|
||||||
|
supporting len() via count() so a progress bar wrapped around this
|
||||||
|
(e.g. via IterWrapper) shows a real total instead of falling back to
|
||||||
|
indeterminate.
|
||||||
|
|
||||||
|
Plain QuerySet iteration (``for row in queryset:``) is not lazy: Django
|
||||||
|
fetches every matching row in one query and caches the fully-hydrated
|
||||||
|
result in the queryset's own ``_result_cache`` before yielding the
|
||||||
|
first item -- wrapping that in a progress bar or any other iterable
|
||||||
|
adapter doesn't change this, since none of them alter how the
|
||||||
|
underlying queryset produces items. ``.iterator(chunk_size=...)`` is
|
||||||
|
the specific Django API that bypasses ``_result_cache`` and streams
|
||||||
|
from a server-side cursor instead, discarding each chunk once consumed
|
||||||
|
(and, since Django 4.1, still honours ``prefetch_related``, running the
|
||||||
|
prefetches one batch at a time rather than for the whole queryset).
|
||||||
|
|
||||||
|
Subclass to layer additional per-batch work on top (see
|
||||||
|
``documents.search._backend._DocumentViewerStream``) by overriding
|
||||||
|
``__iter__`` -- ``__len__`` and the constructor are inherited for free.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, queryset: "QuerySet[_M]", *, chunk_size: int) -> None:
|
||||||
|
self._queryset = queryset
|
||||||
|
self._chunk_size = chunk_size
|
||||||
|
|
||||||
|
def __len__(self) -> int:
|
||||||
|
return self._queryset.count()
|
||||||
|
|
||||||
|
def __iter__(self) -> Iterator[_M]:
|
||||||
|
return iter(self._queryset.iterator(chunk_size=self._chunk_size))
|
||||||
|
|
||||||
|
|
||||||
def _coerce_to_path(
|
def _coerce_to_path(
|
||||||
source: Path | str,
|
source: Path | str,
|
||||||
dest: Path | str,
|
dest: Path | str,
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
import logging
|
import logging
|
||||||
from collections.abc import Iterable
|
from collections.abc import Iterable
|
||||||
from collections.abc import Iterator
|
|
||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
from datetime import timedelta
|
from datetime import timedelta
|
||||||
from typing import TYPE_CHECKING
|
from typing import TYPE_CHECKING
|
||||||
@@ -15,6 +14,7 @@ from filelock import Timeout
|
|||||||
from documents.models import Document
|
from documents.models import Document
|
||||||
from documents.models import PaperlessTask
|
from documents.models import PaperlessTask
|
||||||
from documents.utils import IterWrapper
|
from documents.utils import IterWrapper
|
||||||
|
from documents.utils import QuerySetStream
|
||||||
from documents.utils import identity
|
from documents.utils import identity
|
||||||
from paperless.config import AIConfig
|
from paperless.config import AIConfig
|
||||||
from paperless_ai.db import db_connection_released
|
from paperless_ai.db import db_connection_released
|
||||||
@@ -23,7 +23,6 @@ from paperless_ai.embedding import get_configured_model_name
|
|||||||
from paperless_ai.embedding import get_embedding_model
|
from paperless_ai.embedding import get_embedding_model
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from django.db.models import QuerySet
|
|
||||||
from llama_index.core.schema import BaseNode
|
from llama_index.core.schema import BaseNode
|
||||||
|
|
||||||
from paperless_ai.vector_store import PaperlessSqliteVecVectorStore
|
from paperless_ai.vector_store import PaperlessSqliteVecVectorStore
|
||||||
@@ -35,35 +34,11 @@ RAG_NUM_OUTPUT = 512
|
|||||||
RAG_CHUNK_OVERLAP = 200
|
RAG_CHUNK_OVERLAP = 200
|
||||||
|
|
||||||
# update_llm_index(): row count per .iterator() batch when streaming
|
# update_llm_index(): row count per .iterator() batch when streaming
|
||||||
# documents for a rebuild/update, matching _DocumentViewerStream's chunk
|
# documents for a rebuild/update via QuerySetStream, matching
|
||||||
# size in documents/search/_backend.py.
|
# _DocumentViewerStream's chunk size in documents/search/_backend.py.
|
||||||
_INDEX_STREAM_CHUNK_SIZE = 1000
|
_INDEX_STREAM_CHUNK_SIZE = 1000
|
||||||
|
|
||||||
|
|
||||||
class _StreamedDocuments:
|
|
||||||
"""A thin QuerySet wrapper that streams via ``.iterator()`` instead of
|
|
||||||
materializing every row (plus its ``content`` and prefetch caches) into
|
|
||||||
memory at once, while still supporting ``len()`` so ``iter_wrapper``'s
|
|
||||||
progress bar shows a real total instead of falling back to indeterminate.
|
|
||||||
Same shape as ``documents/search/_backend.py``'s ``_DocumentViewerStream``,
|
|
||||||
just without that class's extra per-batch permission lookup -- nothing
|
|
||||||
here needs one.
|
|
||||||
"""
|
|
||||||
|
|
||||||
def __init__(self, documents: "QuerySet[Document]") -> None:
|
|
||||||
self._documents = documents
|
|
||||||
|
|
||||||
def __len__(self) -> int:
|
|
||||||
return self._documents.count()
|
|
||||||
|
|
||||||
def __iter__(self) -> Iterator[Document]:
|
|
||||||
# iterator(chunk_size=...) streams from a server-side cursor instead
|
|
||||||
# of materializing the whole queryset in memory; since Django 4.1 it
|
|
||||||
# still honours prefetch_related, running the prefetches one batch
|
|
||||||
# at a time.
|
|
||||||
return iter(self._documents.iterator(chunk_size=_INDEX_STREAM_CHUNK_SIZE))
|
|
||||||
|
|
||||||
|
|
||||||
def queue_llm_index_update_if_needed(*, rebuild: bool, reason: str) -> bool:
|
def queue_llm_index_update_if_needed(*, rebuild: bool, reason: str) -> bool:
|
||||||
# NOTE: The check-then-enqueue sequence below is non-atomic (TOCTOU): two
|
# NOTE: The check-then-enqueue sequence below is non-atomic (TOCTOU): two
|
||||||
# concurrent workers can both observe no running task and both enqueue a
|
# concurrent workers can both observe no running task and both enqueue a
|
||||||
@@ -416,7 +391,9 @@ def update_llm_index(
|
|||||||
if rebuild or not store.table_exists():
|
if rebuild or not store.table_exists():
|
||||||
logger.info("Rebuilding LLM index.")
|
logger.info("Rebuilding LLM index.")
|
||||||
store.drop_table()
|
store.drop_table()
|
||||||
for document in iter_wrapper(_StreamedDocuments(documents)):
|
for document in iter_wrapper(
|
||||||
|
QuerySetStream(documents, chunk_size=_INDEX_STREAM_CHUNK_SIZE),
|
||||||
|
):
|
||||||
nodes = build_document_node(document, chunk_size=chunk_size)
|
nodes = build_document_node(document, chunk_size=chunk_size)
|
||||||
_embed_nodes(nodes, embed_model)
|
_embed_nodes(nodes, embed_model)
|
||||||
store.add(nodes)
|
store.add(nodes)
|
||||||
@@ -429,7 +406,9 @@ def update_llm_index(
|
|||||||
)
|
)
|
||||||
existing = store.get_modified_times()
|
existing = store.get_modified_times()
|
||||||
changed = 0
|
changed = 0
|
||||||
for document in iter_wrapper(_StreamedDocuments(scoped_documents)):
|
for document in iter_wrapper(
|
||||||
|
QuerySetStream(scoped_documents, chunk_size=_INDEX_STREAM_CHUNK_SIZE),
|
||||||
|
):
|
||||||
doc_id = str(document.id)
|
doc_id = str(document.id)
|
||||||
if existing.get(doc_id) == document.modified.isoformat():
|
if existing.get(doc_id) == document.modified.isoformat():
|
||||||
continue
|
continue
|
||||||
|
|||||||
@@ -186,45 +186,6 @@ def test_truncate_embedding_query_returns_single_chunk() -> None:
|
|||||||
assert "word199" not in result
|
assert "word199" not in result
|
||||||
|
|
||||||
|
|
||||||
class TestStreamedDocuments:
|
|
||||||
"""_StreamedDocuments streams via .iterator() instead of materializing
|
|
||||||
the whole queryset (plus its content and prefetch caches) in memory at
|
|
||||||
once, while still supporting len() so a progress bar wrapped around it
|
|
||||||
shows a real total.
|
|
||||||
"""
|
|
||||||
|
|
||||||
def test_len_and_iter_delegate_to_streaming_queryset_methods(
|
|
||||||
self,
|
|
||||||
mocker: pytest_mock.MockerFixture,
|
|
||||||
) -> None:
|
|
||||||
"""
|
|
||||||
GIVEN:
|
|
||||||
- A mock queryset
|
|
||||||
WHEN:
|
|
||||||
- A _StreamedDocuments wrapping it is measured and iterated
|
|
||||||
THEN:
|
|
||||||
- len() uses count() (not a materializing len()), and iteration
|
|
||||||
uses .iterator(chunk_size=...) (not plain iteration, which
|
|
||||||
would materialize prefetches for the whole queryset at once)
|
|
||||||
"""
|
|
||||||
mock_queryset = mocker.MagicMock()
|
|
||||||
mock_queryset.count.return_value = 42
|
|
||||||
mock_queryset.iterator.return_value = iter(["doc-1", "doc-2"])
|
|
||||||
streamed = indexing._StreamedDocuments(mock_queryset)
|
|
||||||
|
|
||||||
assert len(streamed) == 42
|
|
||||||
assert list(streamed) == ["doc-1", "doc-2"]
|
|
||||||
# count.call_count isn't asserted exactly: list()'s own size-hint
|
|
||||||
# optimization calls len(streamed) again internally, on top of the
|
|
||||||
# explicit len() call above -- both legitimately delegate to
|
|
||||||
# count(), so only the delegation itself (not the call count) is
|
|
||||||
# the thing being verified here.
|
|
||||||
mock_queryset.count.assert_called_with()
|
|
||||||
mock_queryset.iterator.assert_called_once_with(
|
|
||||||
chunk_size=indexing._INDEX_STREAM_CHUNK_SIZE,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.django_db
|
@pytest.mark.django_db
|
||||||
def test_update_llm_index(
|
def test_update_llm_index(
|
||||||
temp_llm_index_dir: Path,
|
temp_llm_index_dir: Path,
|
||||||
|
|||||||
Reference in New Issue
Block a user