be52af70
tangwang
first commit
|
1
2
3
4
5
6
|
"""
Query parser - main module for query processing.
Handles query rewriting, translation, and embedding generation.
"""
|
3ec5bfe6
tangwang
1. get_translatio...
|
7
|
from typing import Dict, List, Optional, Any, Union
|
be52af70
tangwang
first commit
|
8
|
import numpy as np
|
325eec03
tangwang
1. 日志、配置基础设施,使用优化
|
9
|
import logging
|
7bc756c5
tangwang
优化 ES 查询构建
|
10
|
import re
|
d4cadc13
tangwang
翻译重构
|
11
|
from concurrent.futures import ThreadPoolExecutor, as_completed, wait
|
be52af70
tangwang
first commit
|
12
|
|
07cf5a93
tangwang
START_EMBEDDING=...
|
13
|
from embeddings.text_encoder import TextEmbeddingEncoder
|
9f96d6f3
tangwang
短query不用语义搜索
|
14
|
from config import SearchConfig
|
0fd2f875
tangwang
translate
|
15
|
from translation import create_translation_client
|
be52af70
tangwang
first commit
|
16
|
from .language_detector import LanguageDetector
|
be52af70
tangwang
first commit
|
17
18
|
from .query_rewriter import QueryRewriter, QueryNormalizer
|
325eec03
tangwang
1. 日志、配置基础设施,使用优化
|
19
20
|
logger = logging.getLogger(__name__)
|
484adbfe
tangwang
adapt ubuntu; con...
|
21
22
23
24
|
try:
import hanlp # type: ignore
except Exception: # pragma: no cover
hanlp = None
|
be52af70
tangwang
first commit
|
25
26
27
28
29
30
31
|
class ParsedQuery:
"""Container for parsed query results."""
def __init__(
self,
original_query: str,
|
3a5fda00
tangwang
1. ES字段 skus的 ima...
|
32
|
query_normalized: str,
|
be52af70
tangwang
first commit
|
33
|
rewritten_query: Optional[str] = None,
|
a5a6bab8
tangwang
多语言查询优化
|
34
|
detected_language: Optional[str] = None,
|
be52af70
tangwang
first commit
|
35
36
|
translations: Dict[str, str] = None,
query_vector: Optional[np.ndarray] = None,
|
7bc756c5
tangwang
优化 ES 查询构建
|
37
38
39
|
domain: str = "default",
keywords: str = "",
token_count: int = 0,
|
bd96cead
tangwang
1. 动态多语言字段与统一策略配置
|
40
41
42
43
44
|
query_tokens: Optional[List[str]] = None,
query_text_by_lang: Optional[Dict[str, str]] = None,
search_langs: Optional[List[str]] = None,
index_languages: Optional[List[str]] = None,
source_in_index_languages: bool = True,
|
be52af70
tangwang
first commit
|
45
46
|
):
self.original_query = original_query
|
3a5fda00
tangwang
1. ES字段 skus的 ima...
|
47
48
|
self.query_normalized = query_normalized
self.rewritten_query = rewritten_query or query_normalized
|
be52af70
tangwang
first commit
|
49
50
51
52
|
self.detected_language = detected_language
self.translations = translations or {}
self.query_vector = query_vector
self.domain = domain
|
7bc756c5
tangwang
优化 ES 查询构建
|
53
54
55
|
# Query analysis fields
self.keywords = keywords
self.token_count = token_count
|
ea118f2b
tangwang
build_query:根据 qu...
|
56
|
self.query_tokens = query_tokens or []
|
bd96cead
tangwang
1. 动态多语言字段与统一策略配置
|
57
58
59
60
|
self.query_text_by_lang = query_text_by_lang or {}
self.search_langs = search_langs or []
self.index_languages = index_languages or []
self.source_in_index_languages = bool(source_in_index_languages)
|
be52af70
tangwang
first commit
|
61
62
63
64
65
|
def to_dict(self) -> Dict[str, Any]:
"""Convert to dictionary representation."""
result = {
"original_query": self.original_query,
|
3a5fda00
tangwang
1. ES字段 skus的 ima...
|
66
|
"query_normalized": self.query_normalized,
|
be52af70
tangwang
first commit
|
67
68
69
|
"rewritten_query": self.rewritten_query,
"detected_language": self.detected_language,
"translations": self.translations,
|
038e4e2f
tangwang
refactor(i18n): t...
|
70
|
"domain": self.domain
|
be52af70
tangwang
first commit
|
71
|
}
|
bd96cead
tangwang
1. 动态多语言字段与统一策略配置
|
72
73
74
75
|
result["query_text_by_lang"] = self.query_text_by_lang
result["search_langs"] = self.search_langs
result["index_languages"] = self.index_languages
result["source_in_index_languages"] = self.source_in_index_languages
|
be52af70
tangwang
first commit
|
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
return result
class QueryParser:
"""
Main query parser that processes queries through multiple stages:
1. Normalization
2. Query rewriting (brand/category mappings, synonyms)
3. Language detection
4. Translation to target languages
5. Text embedding generation (for semantic search)
"""
def __init__(
self,
|
9f96d6f3
tangwang
短query不用语义搜索
|
91
|
config: SearchConfig,
|
950a640e
tangwang
embeddings
|
92
|
text_encoder: Optional[TextEmbeddingEncoder] = None,
|
42e3aea6
tangwang
tidy
|
93
|
translator: Optional[Any] = None
|
be52af70
tangwang
first commit
|
94
95
96
97
98
|
):
"""
Initialize query parser.
Args:
|
9f96d6f3
tangwang
短query不用语义搜索
|
99
|
config: SearchConfig instance
|
26b910bd
tangwang
refactor service ...
|
100
101
|
text_encoder: Text embedding encoder (initialized at startup if not provided)
translator: Translator instance (initialized at startup if not provided)
|
be52af70
tangwang
first commit
|
102
|
"""
|
9f96d6f3
tangwang
短query不用语义搜索
|
103
|
self.config = config
|
be52af70
tangwang
first commit
|
104
105
106
107
108
109
|
self._text_encoder = text_encoder
self._translator = translator
# Initialize components
self.normalizer = QueryNormalizer()
self.language_detector = LanguageDetector()
|
9f96d6f3
tangwang
短query不用语义搜索
|
110
|
self.rewriter = QueryRewriter(config.query_config.rewrite_dictionary)
|
7bc756c5
tangwang
优化 ES 查询构建
|
111
|
|
484adbfe
tangwang
adapt ubuntu; con...
|
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
# Optional HanLP components (heavy). If unavailable, fall back to a lightweight tokenizer.
self._tok = None
self._pos_tag = None
if hanlp is not None:
try:
logger.info("Initializing HanLP components...")
self._tok = hanlp.load(hanlp.pretrained.tok.CTB9_TOK_ELECTRA_BASE_CRF)
self._tok.config.output_spans = True
self._pos_tag = hanlp.load(hanlp.pretrained.pos.CTB9_POS_ELECTRA_SMALL)
logger.info("HanLP components initialized")
except Exception as e:
logger.warning(f"HanLP init failed, falling back to simple tokenizer: {e}")
self._tok = None
self._pos_tag = None
else:
logger.info("HanLP not installed; using simple tokenizer")
|
be52af70
tangwang
first commit
|
128
|
|
26b910bd
tangwang
refactor service ...
|
129
130
131
132
133
134
135
|
# Eager initialization (startup-time failure visibility, no lazy init in request path)
if self.config.query_config.enable_text_embedding and self._text_encoder is None:
logger.info("Initializing text encoder at QueryParser construction...")
self._text_encoder = TextEmbeddingEncoder()
if self._translator is None:
from config.services_config import get_translation_config
cfg = get_translation_config()
|
5e4dc8e4
tangwang
翻译架构按“一个翻译服务 +
|
136
137
138
139
140
|
logger.info(
"Initializing translator client at QueryParser construction (service_url=%s, default_model=%s)...",
cfg.service_url,
cfg.default_model,
)
|
0fd2f875
tangwang
translate
|
141
|
self._translator = create_translation_client()
|
d4cadc13
tangwang
翻译重构
|
142
|
self._translation_executor = ThreadPoolExecutor(max_workers=4, thread_name_prefix="query-translation")
|
26b910bd
tangwang
refactor service ...
|
143
|
|
be52af70
tangwang
first commit
|
144
|
@property
|
950a640e
tangwang
embeddings
|
145
|
def text_encoder(self) -> TextEmbeddingEncoder:
|
26b910bd
tangwang
refactor service ...
|
146
|
"""Return pre-initialized text encoder."""
|
be52af70
tangwang
first commit
|
147
148
149
|
return self._text_encoder
@property
|
42e3aea6
tangwang
tidy
|
150
|
def translator(self) -> Any:
|
26b910bd
tangwang
refactor service ...
|
151
|
"""Return pre-initialized translator."""
|
be52af70
tangwang
first commit
|
152
|
return self._translator
|
484adbfe
tangwang
adapt ubuntu; con...
|
153
154
155
156
157
158
159
160
161
162
163
164
|
def _simple_tokenize(self, text: str) -> List[str]:
"""
Lightweight tokenizer fallback.
- Groups consecutive CJK chars as a token
- Groups consecutive latin/digits/underscore/dash as a token
"""
if not text:
return []
pattern = re.compile(r"[\u4e00-\u9fff]+|[A-Za-z0-9_]+(?:-[A-Za-z0-9_]+)*")
return pattern.findall(text)
|
7bc756c5
tangwang
优化 ES 查询构建
|
165
166
167
|
def _extract_keywords(self, query: str) -> str:
"""Extract keywords (nouns with length > 1) from query."""
|
484adbfe
tangwang
adapt ubuntu; con...
|
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
|
if self._tok is not None and self._pos_tag is not None:
tok_result = self._tok(query)
if not tok_result:
return ""
words = [x[0] for x in tok_result]
pos_tags = self._pos_tag(words)
keywords = []
for word, pos in zip(words, pos_tags):
if len(word) > 1 and isinstance(pos, str) and pos.startswith("N"):
keywords.append(word)
return " ".join(keywords)
# Fallback: treat tokens with length > 1 as "keywords"
tokens = self._simple_tokenize(query)
keywords = [t for t in tokens if len(t) > 1]
|
7bc756c5
tangwang
优化 ES 查询构建
|
183
184
185
|
return " ".join(keywords)
def _get_token_count(self, query: str) -> int:
|
484adbfe
tangwang
adapt ubuntu; con...
|
186
187
188
189
190
|
"""Get token count (HanLP if available, otherwise simple)."""
if self._tok is not None:
tok_result = self._tok(query)
return len(tok_result) if tok_result else 0
return len(self._simple_tokenize(query))
|
ea118f2b
tangwang
build_query:根据 qu...
|
191
192
|
def _get_query_tokens(self, query: str) -> List[str]:
|
484adbfe
tangwang
adapt ubuntu; con...
|
193
194
195
196
197
|
"""Get token list (HanLP if available, otherwise simple)."""
if self._tok is not None:
tok_result = self._tok(query)
return [x[0] for x in tok_result] if tok_result else []
return self._simple_tokenize(query)
|
be52af70
tangwang
first commit
|
198
|
|
345d960b
tangwang
1. 删除全局 enable_tr...
|
199
200
201
202
203
204
205
|
def parse(
self,
query: str,
tenant_id: Optional[str] = None,
generate_vector: bool = True,
context: Optional[Any] = None
) -> ParsedQuery:
|
be52af70
tangwang
first commit
|
206
207
208
209
210
211
|
"""
Parse query through all processing stages.
Args:
query: Raw query string
generate_vector: Whether to generate query embedding
|
16c42787
tangwang
feat: implement r...
|
212
|
context: Optional request context for tracking and logging
|
be52af70
tangwang
first commit
|
213
214
215
216
|
Returns:
ParsedQuery object with all processing results
"""
|
16c42787
tangwang
feat: implement r...
|
217
|
# Initialize logger if context provided
|
950a640e
tangwang
embeddings
|
218
219
220
|
active_logger = context.logger if context else logger
if context and hasattr(context, "logger"):
context.logger.info(
|
70dab99f
tangwang
add logs
|
221
|
f"Starting query parsing | Original query: '{query}' | Generate vector: {generate_vector}",
|
16c42787
tangwang
feat: implement r...
|
222
223
224
|
extra={'reqid': context.reqid, 'uid': context.uid}
)
|
16c42787
tangwang
feat: implement r...
|
225
|
def log_info(msg):
|
325eec03
tangwang
1. 日志、配置基础设施,使用优化
|
226
227
|
if context and hasattr(context, 'logger'):
context.logger.info(msg, extra={'reqid': context.reqid, 'uid': context.uid})
|
16c42787
tangwang
feat: implement r...
|
228
|
else:
|
950a640e
tangwang
embeddings
|
229
|
active_logger.info(msg)
|
16c42787
tangwang
feat: implement r...
|
230
231
|
def log_debug(msg):
|
325eec03
tangwang
1. 日志、配置基础设施,使用优化
|
232
233
|
if context and hasattr(context, 'logger'):
context.logger.debug(msg, extra={'reqid': context.reqid, 'uid': context.uid})
|
16c42787
tangwang
feat: implement r...
|
234
|
else:
|
950a640e
tangwang
embeddings
|
235
|
active_logger.debug(msg)
|
be52af70
tangwang
first commit
|
236
237
238
|
# Stage 1: Normalize
normalized = self.normalizer.normalize(query)
|
70dab99f
tangwang
add logs
|
239
|
log_debug(f"Normalization completed | '{query}' -> '{normalized}'")
|
16c42787
tangwang
feat: implement r...
|
240
|
if context:
|
3a5fda00
tangwang
1. ES字段 skus的 ima...
|
241
|
context.store_intermediate_result('query_normalized', normalized)
|
be52af70
tangwang
first commit
|
242
243
244
|
# Extract domain if present (e.g., "brand:Nike" -> domain="brand", query="Nike")
domain, query_text = self.normalizer.extract_domain_query(normalized)
|
70dab99f
tangwang
add logs
|
245
|
log_debug(f"Domain extraction | Domain: '{domain}', Query: '{query_text}'")
|
16c42787
tangwang
feat: implement r...
|
246
247
248
|
if context:
context.store_intermediate_result('extracted_domain', domain)
context.store_intermediate_result('domain_query', query_text)
|
be52af70
tangwang
first commit
|
249
250
251
|
# Stage 2: Query rewriting
rewritten = None
|
9f96d6f3
tangwang
短query不用语义搜索
|
252
|
if self.config.query_config.rewrite_dictionary: # Enable rewrite if dictionary exists
|
be52af70
tangwang
first commit
|
253
254
|
rewritten = self.rewriter.rewrite(query_text)
if rewritten != query_text:
|
70dab99f
tangwang
add logs
|
255
|
log_info(f"Query rewritten | '{query_text}' -> '{rewritten}'")
|
be52af70
tangwang
first commit
|
256
|
query_text = rewritten
|
16c42787
tangwang
feat: implement r...
|
257
258
|
if context:
context.store_intermediate_result('rewritten_query', rewritten)
|
70dab99f
tangwang
add logs
|
259
|
context.add_warning(f"Query was rewritten: {query_text}")
|
be52af70
tangwang
first commit
|
260
261
262
|
# Stage 3: Language detection
detected_lang = self.language_detector.detect(query_text)
|
a5a6bab8
tangwang
多语言查询优化
|
263
264
265
|
# Use default language if detection failed (None or "unknown")
if not detected_lang or detected_lang == "unknown":
detected_lang = self.config.query_config.default_language
|
70dab99f
tangwang
add logs
|
266
|
log_info(f"Language detection | Detected language: {detected_lang}")
|
16c42787
tangwang
feat: implement r...
|
267
268
|
if context:
context.store_intermediate_result('detected_language', detected_lang)
|
be52af70
tangwang
first commit
|
269
|
|
3ec5bfe6
tangwang
1. get_translatio...
|
270
|
# Stage 4: Translation (with async support and conditional waiting)
|
be52af70
tangwang
first commit
|
271
|
translations = {}
|
3ec5bfe6
tangwang
1. get_translatio...
|
272
|
translation_futures = {}
|
d4cadc13
tangwang
翻译重构
|
273
|
translation_executor = None
|
bd96cead
tangwang
1. 动态多语言字段与统一策略配置
|
274
|
index_langs = ["en", "zh"]
|
345d960b
tangwang
1. 删除全局 enable_tr...
|
275
|
try:
|
038e4e2f
tangwang
refactor(i18n): t...
|
276
|
# 根据租户配置的 index_languages 决定翻译目标语言
|
345d960b
tangwang
1. 删除全局 enable_tr...
|
277
278
279
|
from config.tenant_config_loader import get_tenant_config_loader
tenant_loader = get_tenant_config_loader()
tenant_cfg = tenant_loader.get_tenant_config(tenant_id or "default")
|
bd96cead
tangwang
1. 动态多语言字段与统一策略配置
|
280
281
282
283
284
285
286
287
288
|
raw_index_langs = tenant_cfg.get("index_languages") or ["en", "zh"]
index_langs = []
seen_langs = set()
for lang in raw_index_langs:
norm_lang = str(lang or "").strip().lower()
if not norm_lang or norm_lang in seen_langs:
continue
seen_langs.add(norm_lang)
index_langs.append(norm_lang)
|
345d960b
tangwang
1. 删除全局 enable_tr...
|
289
|
|
038e4e2f
tangwang
refactor(i18n): t...
|
290
|
target_langs_for_translation = [lang for lang in index_langs if lang != detected_lang]
|
345d960b
tangwang
1. 删除全局 enable_tr...
|
291
|
|
345d960b
tangwang
1. 删除全局 enable_tr...
|
292
|
if target_langs_for_translation:
|
038e4e2f
tangwang
refactor(i18n): t...
|
293
|
target_langs = target_langs_for_translation
|
16c42787
tangwang
feat: implement r...
|
294
295
|
if target_langs:
|
3ec5bfe6
tangwang
1. get_translatio...
|
296
|
# Determine if we need to wait for translation results
|
038e4e2f
tangwang
refactor(i18n): t...
|
297
298
|
# If detected_lang is not in index_languages, we must wait for translation
need_wait_translation = detected_lang not in index_langs
|
d4cadc13
tangwang
翻译重构
|
299
|
|
3ec5bfe6
tangwang
1. get_translatio...
|
300
|
if need_wait_translation:
|
d4cadc13
tangwang
翻译重构
|
301
302
303
|
translation_executor = ThreadPoolExecutor(
max_workers=max(1, min(len(target_langs), 4)),
thread_name_prefix="query-translation-wait",
|
3ec5bfe6
tangwang
1. get_translatio...
|
304
|
)
|
d4cadc13
tangwang
翻译重构
|
305
306
307
308
309
310
311
312
|
for lang in target_langs:
translation_futures[lang] = translation_executor.submit(
self.translator.translate,
query_text,
lang,
detected_lang,
"ecommerce_search_query",
)
|
3ec5bfe6
tangwang
1. get_translatio...
|
313
|
else:
|
d4cadc13
tangwang
翻译重构
|
314
315
316
317
318
319
320
321
322
|
for lang in target_langs:
self._translation_executor.submit(
self.translator.translate,
query_text,
lang,
detected_lang,
"ecommerce_search_query",
)
|
6e0e310c
tangwang
1. Translator 类增强
|
323
|
if translations:
|
70dab99f
tangwang
add logs
|
324
|
log_info(f"Translation completed (cache hit) | Query text: '{query_text}' | Results: {translations}")
|
3ec5bfe6
tangwang
1. get_translatio...
|
325
|
if translation_futures:
|
70dab99f
tangwang
add logs
|
326
|
log_debug(f"Translation in progress, waiting for results... | Query text: '{query_text}' | Languages: {list(translation_futures.keys())}")
|
6e0e310c
tangwang
1. Translator 类增强
|
327
|
|
16c42787
tangwang
feat: implement r...
|
328
329
330
331
332
333
|
if context:
context.store_intermediate_result('translations', translations)
for lang, translation in translations.items():
if translation:
context.store_intermediate_result(f'translation_{lang}', translation)
|
345d960b
tangwang
1. 删除全局 enable_tr...
|
334
|
except Exception as e:
|
70dab99f
tangwang
add logs
|
335
|
error_msg = f"Translation failed | Error: {str(e)}"
|
345d960b
tangwang
1. 删除全局 enable_tr...
|
336
337
338
|
log_info(error_msg)
if context:
context.add_warning(error_msg)
|
be52af70
tangwang
first commit
|
339
|
|
ea118f2b
tangwang
build_query:根据 qu...
|
340
|
# Stage 5: Query analysis (keywords, token count, query_tokens)
|
7bc756c5
tangwang
优化 ES 查询构建
|
341
|
keywords = self._extract_keywords(query_text)
|
ea118f2b
tangwang
build_query:根据 qu...
|
342
343
|
query_tokens = self._get_query_tokens(query_text)
token_count = len(query_tokens)
|
7bc756c5
tangwang
优化 ES 查询构建
|
344
|
|
70dab99f
tangwang
add logs
|
345
|
log_debug(f"Query analysis | Keywords: {keywords} | Token count: {token_count} | "
|
ea118f2b
tangwang
build_query:根据 qu...
|
346
|
f"Query tokens: {query_tokens}")
|
7bc756c5
tangwang
优化 ES 查询构建
|
347
348
349
|
if context:
context.store_intermediate_result('keywords', keywords)
context.store_intermediate_result('token_count', token_count)
|
ea118f2b
tangwang
build_query:根据 qu...
|
350
|
context.store_intermediate_result('query_tokens', query_tokens)
|
7bc756c5
tangwang
优化 ES 查询构建
|
351
|
|
3ec5bfe6
tangwang
1. get_translatio...
|
352
|
# Stage 6: Text embedding (only for non-short queries) - async execution
|
be52af70
tangwang
first commit
|
353
|
query_vector = None
|
3ec5bfe6
tangwang
1. get_translatio...
|
354
|
embedding_future = None
|
7bc756c5
tangwang
优化 ES 查询构建
|
355
356
|
should_generate_embedding = (
generate_vector and
|
9f96d6f3
tangwang
短query不用语义搜索
|
357
|
self.config.query_config.enable_text_embedding and
|
d90e7428
tangwang
补充重排
|
358
|
domain == "default"
|
7bc756c5
tangwang
优化 ES 查询构建
|
359
360
|
)
|
3ec5bfe6
tangwang
1. get_translatio...
|
361
|
encoding_executor = None
|
7bc756c5
tangwang
优化 ES 查询构建
|
362
363
|
if should_generate_embedding:
try:
|
26b910bd
tangwang
refactor service ...
|
364
365
|
if self.text_encoder is None:
raise RuntimeError("Text embedding is enabled but text encoder is not initialized")
|
70dab99f
tangwang
add logs
|
366
|
log_debug("Starting query vector generation (async)")
|
3ec5bfe6
tangwang
1. get_translatio...
|
367
368
|
# Submit encoding task to thread pool for async execution
encoding_executor = ThreadPoolExecutor(max_workers=1)
|
b2e50710
tangwang
BgeEncoder.encode...
|
369
370
371
372
373
374
|
def _encode_query_vector() -> Optional[np.ndarray]:
arr = self.text_encoder.encode([query_text])
if arr is None or len(arr) == 0:
return None
vec = arr[0]
return vec if isinstance(vec, np.ndarray) else None
|
3ec5bfe6
tangwang
1. get_translatio...
|
375
|
embedding_future = encoding_executor.submit(
|
b2e50710
tangwang
BgeEncoder.encode...
|
376
|
_encode_query_vector
|
3ec5bfe6
tangwang
1. get_translatio...
|
377
|
)
|
7bc756c5
tangwang
优化 ES 查询构建
|
378
|
except Exception as e:
|
70dab99f
tangwang
add logs
|
379
|
error_msg = f"Query vector generation task submission failed | Error: {str(e)}"
|
7bc756c5
tangwang
优化 ES 查询构建
|
380
381
382
|
log_info(error_msg)
if context:
context.add_warning(error_msg)
|
3ec5bfe6
tangwang
1. get_translatio...
|
383
384
385
386
387
|
encoding_executor = None
embedding_future = None
# Wait for all async tasks to complete (translation and embedding)
if translation_futures or embedding_future:
|
70dab99f
tangwang
add logs
|
388
|
log_debug("Waiting for async tasks to complete...")
|
3ec5bfe6
tangwang
1. get_translatio...
|
389
390
391
392
393
394
395
396
397
398
399
400
|
# Collect all futures with their identifiers
all_futures = []
future_to_lang = {}
for lang, future in translation_futures.items():
all_futures.append(future)
future_to_lang[future] = ('translation', lang)
if embedding_future:
all_futures.append(embedding_future)
future_to_lang[embedding_future] = ('embedding', None)
|
d4cadc13
tangwang
翻译重构
|
401
402
403
|
# Enforce a hard timeout for translation-related work (300ms budget)
done, not_done = wait(all_futures, timeout=0.3)
for future in done:
|
3ec5bfe6
tangwang
1. get_translatio...
|
404
405
406
407
408
409
|
task_type, lang = future_to_lang[future]
try:
result = future.result()
if task_type == 'translation':
if result:
translations[lang] = result
|
d4cadc13
tangwang
翻译重构
|
410
411
412
|
log_info(
f"Translation completed | Query text: '{query_text}' | Target language: {lang} | Translation result: '{result}'"
)
|
3ec5bfe6
tangwang
1. get_translatio...
|
413
414
415
416
|
if context:
context.store_intermediate_result(f'translation_{lang}', result)
elif task_type == 'embedding':
query_vector = result
|
b2e50710
tangwang
BgeEncoder.encode...
|
417
|
if query_vector is not None:
|
70dab99f
tangwang
add logs
|
418
|
log_debug(f"Query vector generation completed | Shape: {query_vector.shape}")
|
b2e50710
tangwang
BgeEncoder.encode...
|
419
420
421
|
if context:
context.store_intermediate_result('query_vector_shape', query_vector.shape)
else:
|
70dab99f
tangwang
add logs
|
422
|
log_info("Query vector generation completed but result is None, will process without vector")
|
3ec5bfe6
tangwang
1. get_translatio...
|
423
424
|
except Exception as e:
if task_type == 'translation':
|
70dab99f
tangwang
add logs
|
425
|
error_msg = f"Translation failed | Language: {lang} | Error: {str(e)}"
|
3ec5bfe6
tangwang
1. get_translatio...
|
426
|
else:
|
70dab99f
tangwang
add logs
|
427
|
error_msg = f"Query vector generation failed | Error: {str(e)}"
|
3ec5bfe6
tangwang
1. get_translatio...
|
428
429
430
|
log_info(error_msg)
if context:
context.add_warning(error_msg)
|
d4cadc13
tangwang
翻译重构
|
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
|
# Log timeouts for any futures that did not finish within 300ms
if not_done:
for future in not_done:
task_type, lang = future_to_lang[future]
if task_type == 'translation':
timeout_msg = (
f"Translation timeout (>300ms) | Language: {lang} | "
f"Query text: '{query_text}'"
)
else:
timeout_msg = "Query vector generation timeout (>300ms), proceeding without embedding result"
log_info(timeout_msg)
if context:
context.add_warning(timeout_msg)
|
3ec5bfe6
tangwang
1. get_translatio...
|
447
448
449
|
# Clean up encoding executor
if encoding_executor:
encoding_executor.shutdown(wait=False)
|
d4cadc13
tangwang
翻译重构
|
450
451
|
if translation_executor:
translation_executor.shutdown(wait=False)
|
3ec5bfe6
tangwang
1. get_translatio...
|
452
453
454
455
|
# Update translations in context after all are complete
if translations and context:
context.store_intermediate_result('translations', translations)
|
bd96cead
tangwang
1. 动态多语言字段与统一策略配置
|
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
|
# Build language-scoped query plan: source language + available translations
query_text_by_lang: Dict[str, str] = {}
if query_text:
query_text_by_lang[detected_lang] = query_text
for lang, translated_text in (translations or {}).items():
if translated_text and str(translated_text).strip():
query_text_by_lang[str(lang).strip().lower()] = str(translated_text)
source_in_index_languages = detected_lang in index_langs
ordered_search_langs: List[str] = []
seen_order = set()
if detected_lang in query_text_by_lang:
ordered_search_langs.append(detected_lang)
seen_order.add(detected_lang)
for lang in index_langs:
if lang in query_text_by_lang and lang not in seen_order:
ordered_search_langs.append(lang)
seen_order.add(lang)
for lang in query_text_by_lang.keys():
if lang not in seen_order:
ordered_search_langs.append(lang)
seen_order.add(lang)
if context:
context.store_intermediate_result("search_langs", ordered_search_langs)
context.store_intermediate_result("query_text_by_lang", query_text_by_lang)
|
be52af70
tangwang
first commit
|
483
484
485
486
|
# Build result
result = ParsedQuery(
original_query=query,
|
3a5fda00
tangwang
1. ES字段 skus的 ima...
|
487
|
query_normalized=normalized,
|
be52af70
tangwang
first commit
|
488
489
490
491
|
rewritten_query=rewritten,
detected_language=detected_lang,
translations=translations,
query_vector=query_vector,
|
7bc756c5
tangwang
优化 ES 查询构建
|
492
493
494
|
domain=domain,
keywords=keywords,
token_count=token_count,
|
bd96cead
tangwang
1. 动态多语言字段与统一策略配置
|
495
496
497
498
499
|
query_tokens=query_tokens,
query_text_by_lang=query_text_by_lang,
search_langs=ordered_search_langs,
index_languages=index_langs,
source_in_index_languages=source_in_index_languages,
|
be52af70
tangwang
first commit
|
500
501
|
)
|
325eec03
tangwang
1. 日志、配置基础设施,使用优化
|
502
503
|
if context and hasattr(context, 'logger'):
context.logger.info(
|
70dab99f
tangwang
add logs
|
504
505
506
|
f"Query parsing completed | Original query: '{query}' | Final query: '{rewritten or query_text}' | "
f"Language: {detected_lang} | Domain: {domain} | "
f"Translation count: {len(translations)} | Vector: {'yes' if query_vector is not None else 'no'}",
|
16c42787
tangwang
feat: implement r...
|
507
508
509
|
extra={'reqid': context.reqid, 'uid': context.uid}
)
else:
|
325eec03
tangwang
1. 日志、配置基础设施,使用优化
|
510
|
logger.info(
|
70dab99f
tangwang
add logs
|
511
512
|
f"Query parsing completed | Original query: '{query}' | Final query: '{rewritten or query_text}' | "
f"Language: {detected_lang} | Domain: {domain}"
|
325eec03
tangwang
1. 日志、配置基础设施,使用优化
|
513
|
)
|
16c42787
tangwang
feat: implement r...
|
514
|
|
be52af70
tangwang
first commit
|
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
|
return result
def get_search_queries(self, parsed_query: ParsedQuery) -> List[str]:
"""
Get list of queries to search (original + translations).
Args:
parsed_query: Parsed query object
Returns:
List of query strings to search
"""
queries = [parsed_query.rewritten_query]
# Add translations
for lang, translation in parsed_query.translations.items():
if translation and translation != parsed_query.rewritten_query:
queries.append(translation)
return queries
def update_rewrite_rules(self, rules: Dict[str, str]) -> None:
"""
Update query rewrite rules.
Args:
rules: Dictionary of pattern -> replacement mappings
"""
for pattern, replacement in rules.items():
self.rewriter.add_rule(pattern, replacement)
def get_rewrite_rules(self) -> Dict[str, str]:
"""Get current rewrite rules."""
return self.rewriter.get_rules()
|