docs/design-docs/design_docs/20260403-arabic-thai-analyzer.md
Add built-in Arabic and Thai text analyzers to Milvus's tantivy-binding layer, enabling native full-text search for Arabic and Thai languages. This includes two new tokenizers/analyzers, two new token filters, and language-specific stop word lists.
Milvus currently supports full-text search for English, Chinese (Jieba), and a set of European languages via the standard/ICU tokenizer pipeline. Arabic and Thai have unique linguistic characteristics that require dedicated processing:
Without dedicated support, Arabic text search produces poor recall (diacritics and letter variants cause mismatches), and Thai text cannot be tokenized at all by whitespace-based tokenizers.
Both analyzers follow the existing pattern in tantivy-binding: a tokenizer splits text into tokens, then a chain of filters normalizes them.
Arabic: StandardTokenizer → LowerCaser → DecimalDigitFilter → ArabicNormalizationFilter → Stemmer(Arabic) → StopWordFilter
Thai: ThaiTokenizer → LowerCaser → DecimalDigitFilter → StopWordFilter
thai_tokenizer.rs)WordSegmenter::try_new_lstm() for LSTM-based Thai word segmentation.is_alphanumeric() is true are emitted.IcuTokenizer and JiebaTokenizer.
position: cumulative character offset from input start (counts characters in skipped segments too).position_length: character count of the current token segment.offset_from / offset_to: byte offsets into the original text."tokenizer": "thai") and a built-in analyzer ("type": "thai").arabic_normalization_filter.rs)Implements Lucene-compatible Arabic normalization:
| Transformation | From | To |
|---|---|---|
| Hamza + Alef variants | آ أ إ (U+0622, U+0623, U+0625) | ا (U+0627, bare Alef) |
| Teh Marbuta | ة (U+0629) | ه (U+0647, Heh) |
| Alef Maksura | ى (U+0649) | ي (U+064A, Yeh) |
| Harakat (diacritics) | U+064B..U+065F | removed |
| Tatweel (kashida) | ـ (U+0640) | removed |
Only runs the normalization pass when at least one normalizable character is detected (fast-path check).
Available as a standalone filter: "filter": ["arabic_normalization"].
decimal_digit_filter.rs)Converts non-ASCII Unicode decimal digits (General Category Nd) to ASCII 0-9. Covers 34 digit systems including Arabic-Indic (٠-٩), Thai (๐-๙), Devanagari, Bengali, Fullwidth, etc.
Uses a lookup table of known "zero" code points — since Unicode guarantees digits 0-9 are contiguous within each block, ascii_value = '0' + (codepoint - block_zero).
Available as a standalone filter: "filter": ["decimaldigit"].
arabic.txt): 119 stop words sourced from Apache Lucene (BSD license, Jacques Savoy).thai.txt): 115 stop words sourced from Apache Lucene.Both are registered in the stop word system and accessible via "_arabic_" / "_thai_" language identifiers.
Built-in analyzer (recommended):
{"type": "arabic"}
{"type": "arabic", "stop_words": ["custom1", "custom2"]}
{"type": "thai"}
{"type": "thai", "stop_words": ["custom1", "custom2"]}
Custom pipeline:
{
"tokenizer": "standard",
"filter": ["lowercase", "arabic_normalization", "decimaldigit"]
}
{
"tokenizer": "thai",
"filter": ["lowercase", "decimaldigit"]
}
IcuTokenizer. The ThaiTokenizer uses the same crate with try_new_lstm() (LSTM model) instead of try_new_auto() (dictionary model), keeping it focused on Thai without pulling in CJK dictionary data.The position field uses character-based absolute positioning — each token's position equals the cumulative Unicode scalar count from the start of the input, counting characters in all segments (including skipped whitespace/punctuation).
Example: "สวัสดี ครับ" (6 Thai chars + 1 space + 3 Thai chars)
This matches the behavior of IcuTokenizer and JiebaTokenizer, ensuring consistent phrase query and proximity query semantics across all non-Latin tokenizers.
ThaiTokenizer: basic Thai segmentation, mixed Thai/English/CJK input, punctuation filtering, character-based position verification.ArabicNormalizationFilter: hamza normalization, teh marbuta → heh, harakat removal, tatweel removal.DecimalDigitFilter: Arabic-Indic and Thai digit conversion, ASCII passthrough.arabic and thai analyzers: end-to-end tokenization with stop words, custom stop words, digit conversion.