Closed jzonthemtn closed 3 days ago
[Search Triage] There seems some relevance in storing both the original and transformed query. Is this information redundant and already present elsewhere? @jzonthemtn Can you please add more details if so.
Yes, keep storing the original query and the user query, but remove this part from the query
:
"ext\":{\"query_id\":\"49140554-b9ae-4f12-825e-81bc73f140a8\",\"user_query\":null,\"client_id\":null,\"object_id_field\":null,\"query_attributes\":{}}
This is all duplicate information that's already stored in the other properties:
"user_query": "",
"query_id": "49140554-b9ae-4f12-825e-81bc73f140a8",
"query_response_object_ids": [],
"query_attributes": {},
"client_id": "",
So we can remove it to save space and not lose any understanding.
This has been completed!
When the plugin saves a query, it grabs the original
query
and persists it, too. This will includeubi
information in the request that does not serve a purpose and just takes up space in the destination store.This issue is to remove the ubi attributes from the query prior to storing it.