🕵️ refactor: Optimize Message Search Performance (#9818)

* 🕵️ feat: Enhance Index Sync and MeiliSearch filtering for User Field

- Implemented `ensureFilterableAttributes` function to configure MeiliSearch indexes for messages and conversations to filter by user.
- Updated sync logic to trigger a full re-sync if the user field is missing or index settings are modified.
- Adjusted search queries in Conversation and Message models to include user filtering.
- Ensured 'user' field is marked as filterable in MongoDB schema for both messages and conversations.

This update improves data integrity and search capabilities by ensuring user-related data is properly indexed and retrievable.

* fix: message processing in Search component to use linear list and not tree

* feat: Implement user filtering in MeiliSearch for shared links

* refactor: Optimize message search retrieval by batching database calls

* chore: Update MeiliSearch parameters type to use SearchParams for improved type safety
This commit is contained in:
Danny Avila 2025-09-24 16:27:34 -04:00 committed by GitHub
parent f9aebeba92
commit 57f8b333bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 263 additions and 31 deletions

View file

@ -1,10 +1,8 @@
const mongoose = require('mongoose'); const mongoose = require('mongoose');
const { MeiliSearch } = require('meilisearch'); const { MeiliSearch } = require('meilisearch');
const { logger } = require('@librechat/data-schemas'); const { logger } = require('@librechat/data-schemas');
const { FlowStateManager } = require('@librechat/api');
const { CacheKeys } = require('librechat-data-provider'); const { CacheKeys } = require('librechat-data-provider');
const { isEnabled, FlowStateManager } = require('@librechat/api');
const { isEnabled } = require('~/server/utils');
const { getLogStores } = require('~/cache'); const { getLogStores } = require('~/cache');
const Conversation = mongoose.models.Conversation; const Conversation = mongoose.models.Conversation;
@ -31,6 +29,81 @@ class MeiliSearchClient {
} }
} }
/**
* Ensures indexes have proper filterable attributes configured and checks if documents have user field
* @param {MeiliSearch} client - MeiliSearch client instance
* @returns {Promise<boolean>} - true if configuration was updated or re-sync is needed
*/
async function ensureFilterableAttributes(client) {
try {
// Check and update messages index
try {
const messagesIndex = client.index('messages');
const settings = await messagesIndex.getSettings();
if (!settings.filterableAttributes || !settings.filterableAttributes.includes('user')) {
logger.info('[indexSync] Configuring messages index to filter by user...');
await messagesIndex.updateSettings({
filterableAttributes: ['user'],
});
logger.info('[indexSync] Messages index configured for user filtering');
logger.info('[indexSync] Index configuration updated. Full re-sync will be triggered.');
return true;
}
// Check if existing documents have user field indexed
try {
const searchResult = await messagesIndex.search('', { limit: 1 });
if (searchResult.hits.length > 0 && !searchResult.hits[0].user) {
logger.info('[indexSync] Existing messages missing user field, re-sync needed');
return true;
}
} catch (searchError) {
logger.debug('[indexSync] Could not check message documents:', searchError.message);
}
} catch (error) {
if (error.code !== 'index_not_found') {
logger.warn('[indexSync] Could not check/update messages index settings:', error.message);
}
}
// Check and update conversations index
try {
const convosIndex = client.index('convos');
const settings = await convosIndex.getSettings();
if (!settings.filterableAttributes || !settings.filterableAttributes.includes('user')) {
logger.info('[indexSync] Configuring convos index to filter by user...');
await convosIndex.updateSettings({
filterableAttributes: ['user'],
});
logger.info('[indexSync] Convos index configured for user filtering');
logger.info('[indexSync] Index configuration updated. Full re-sync will be triggered.');
return true;
}
// Check if existing documents have user field indexed
try {
const searchResult = await convosIndex.search('', { limit: 1 });
if (searchResult.hits.length > 0 && !searchResult.hits[0].user) {
logger.info('[indexSync] Existing conversations missing user field, re-sync needed');
return true;
}
} catch (searchError) {
logger.debug('[indexSync] Could not check conversation documents:', searchError.message);
}
} catch (error) {
if (error.code !== 'index_not_found') {
logger.warn('[indexSync] Could not check/update convos index settings:', error.message);
}
}
} catch (error) {
logger.error('[indexSync] Error ensuring filterable attributes:', error);
}
return false;
}
/** /**
* Performs the actual sync operations for messages and conversations * Performs the actual sync operations for messages and conversations
*/ */
@ -47,12 +120,27 @@ async function performSync() {
return { messagesSync: false, convosSync: false }; return { messagesSync: false, convosSync: false };
} }
/** Ensures indexes have proper filterable attributes configured */
const configUpdated = await ensureFilterableAttributes(client);
let messagesSync = false; let messagesSync = false;
let convosSync = false; let convosSync = false;
// If configuration was just updated or documents are missing user field, force a full re-sync
if (configUpdated) {
logger.info('[indexSync] Forcing full re-sync to ensure user field is properly indexed...');
// Reset sync flags to force full re-sync
await Message.collection.updateMany({ _meiliIndex: true }, { $set: { _meiliIndex: false } });
await Conversation.collection.updateMany(
{ _meiliIndex: true },
{ $set: { _meiliIndex: false } },
);
}
// Check if we need to sync messages // Check if we need to sync messages
const messageProgress = await Message.getSyncProgress(); const messageProgress = await Message.getSyncProgress();
if (!messageProgress.isComplete) { if (!messageProgress.isComplete || configUpdated) {
logger.info( logger.info(
`[indexSync] Messages need syncing: ${messageProgress.totalProcessed}/${messageProgress.totalDocuments} indexed`, `[indexSync] Messages need syncing: ${messageProgress.totalProcessed}/${messageProgress.totalDocuments} indexed`,
); );
@ -79,7 +167,7 @@ async function performSync() {
// Check if we need to sync conversations // Check if we need to sync conversations
const convoProgress = await Conversation.getSyncProgress(); const convoProgress = await Conversation.getSyncProgress();
if (!convoProgress.isComplete) { if (!convoProgress.isComplete || configUpdated) {
logger.info( logger.info(
`[indexSync] Conversations need syncing: ${convoProgress.totalProcessed}/${convoProgress.totalDocuments} indexed`, `[indexSync] Conversations need syncing: ${convoProgress.totalProcessed}/${convoProgress.totalDocuments} indexed`,
); );

View file

@ -174,7 +174,7 @@ module.exports = {
if (search) { if (search) {
try { try {
const meiliResults = await Conversation.meiliSearch(search); const meiliResults = await Conversation.meiliSearch(search, { filter: `user = "${user}"` });
const matchingIds = Array.isArray(meiliResults.hits) const matchingIds = Array.isArray(meiliResults.hits)
? meiliResults.hits.map((result) => result.conversationId) ? meiliResults.hits.map((result) => result.conversationId)
: []; : [];

View file

@ -3,8 +3,8 @@ const { logger } = require('@librechat/data-schemas');
const { ContentTypes } = require('librechat-data-provider'); const { ContentTypes } = require('librechat-data-provider');
const { const {
saveConvo, saveConvo,
saveMessage,
getMessage, getMessage,
saveMessage,
getMessages, getMessages,
updateMessage, updateMessage,
deleteMessages, deleteMessages,
@ -58,34 +58,51 @@ router.get('/', async (req, res) => {
const nextCursor = messages.length > pageSize ? messages.pop()[sortField] : null; const nextCursor = messages.length > pageSize ? messages.pop()[sortField] : null;
response = { messages, nextCursor }; response = { messages, nextCursor };
} else if (search) { } else if (search) {
const searchResults = await Message.meiliSearch(search, undefined, true); const searchResults = await Message.meiliSearch(search, { filter: `user = "${user}"` }, true);
const messages = searchResults.hits || []; const messages = searchResults.hits || [];
const result = await getConvosQueried(req.user.id, messages, cursor); const result = await getConvosQueried(req.user.id, messages, cursor);
const activeMessages = []; const messageIds = [];
const cleanedMessages = [];
for (let i = 0; i < messages.length; i++) { for (let i = 0; i < messages.length; i++) {
let message = messages[i]; let message = messages[i];
if (message.conversationId.includes('--')) { if (message.conversationId.includes('--')) {
message.conversationId = cleanUpPrimaryKeyValue(message.conversationId); message.conversationId = cleanUpPrimaryKeyValue(message.conversationId);
} }
if (result.convoMap[message.conversationId]) { if (result.convoMap[message.conversationId]) {
const convo = result.convoMap[message.conversationId]; messageIds.push(message.messageId);
cleanedMessages.push(message);
const dbMessage = await getMessage({ user, messageId: message.messageId });
activeMessages.push({
...message,
title: convo.title,
conversationId: message.conversationId,
model: convo.model,
isCreatedByUser: dbMessage?.isCreatedByUser,
endpoint: dbMessage?.endpoint,
iconURL: dbMessage?.iconURL,
});
} }
} }
const dbMessages = await getMessages({
user,
messageId: { $in: messageIds },
});
const dbMessageMap = {};
for (const dbMessage of dbMessages) {
dbMessageMap[dbMessage.messageId] = dbMessage;
}
const activeMessages = [];
for (const message of cleanedMessages) {
const convo = result.convoMap[message.conversationId];
const dbMessage = dbMessageMap[message.messageId];
activeMessages.push({
...message,
title: convo.title,
conversationId: message.conversationId,
model: convo.model,
isCreatedByUser: dbMessage?.isCreatedByUser,
endpoint: dbMessage?.endpoint,
iconURL: dbMessage?.iconURL,
});
}
response = { messages: activeMessages, nextCursor: null }; response = { messages: activeMessages, nextCursor: null };
} else { } else {
response = { messages: [], nextCursor: null }; response = { messages: [], nextCursor: null };

View file

@ -1,6 +1,5 @@
import { useEffect, useMemo } from 'react'; import { useEffect, useMemo } from 'react';
import { useRecoilValue } from 'recoil'; import { useRecoilValue } from 'recoil';
import { buildTree } from 'librechat-data-provider';
import { Spinner, useToastContext } from '@librechat/client'; import { Spinner, useToastContext } from '@librechat/client';
import MinimalMessagesWrapper from '~/components/Chat/Messages/MinimalMessages'; import MinimalMessagesWrapper from '~/components/Chat/Messages/MinimalMessages';
import { useNavScrolling, useLocalize, useAuthContext } from '~/hooks'; import { useNavScrolling, useLocalize, useAuthContext } from '~/hooks';
@ -43,9 +42,20 @@ export default function Search() {
}); });
const messages = useMemo(() => { const messages = useMemo(() => {
const msgs = searchMessages?.pages.flatMap((page) => page.messages) || []; const msgs =
const dataTree = buildTree({ messages: msgs, fileMap }); searchMessages?.pages.flatMap((page) =>
return dataTree?.length === 0 ? null : (dataTree ?? null); page.messages.map((message) => {
if (!message.files || !fileMap) {
return message;
}
return {
...message,
files: message.files.map((file) => fileMap[file.file_id ?? ''] ?? file),
};
}),
) || [];
return msgs.length === 0 ? null : msgs;
}, [fileMap, searchMessages?.pages]); }, [fileMap, searchMessages?.pages]);
useEffect(() => { useEffect(() => {

View file

@ -427,13 +427,14 @@ describe('Share Methods', () => {
expect(privateResults.links[0].title).toBe('Private Share'); expect(privateResults.links[0].title).toBe('Private Share');
}); });
test('should handle search with mocked meiliSearch', async () => { test('should handle search with mocked meiliSearch and user filter', async () => {
const userId = new mongoose.Types.ObjectId().toString(); const userId = new mongoose.Types.ObjectId().toString();
// Mock meiliSearch method // Mock meiliSearch method
Conversation.meiliSearch = jest.fn().mockResolvedValue({ const meiliSearchMock = jest.fn().mockResolvedValue({
hits: [{ conversationId: 'conv1' }], hits: [{ conversationId: 'conv1' }],
}); });
Conversation.meiliSearch = meiliSearchMock;
await SharedLink.create([ await SharedLink.create([
{ {
@ -464,6 +465,9 @@ describe('Share Methods', () => {
expect(result.links).toHaveLength(1); expect(result.links).toHaveLength(1);
expect(result.links[0].title).toBe('Matching Share'); expect(result.links[0].title).toBe('Matching Share');
// Verify that meiliSearch was called with the correct user filter
expect(meiliSearchMock).toHaveBeenCalledWith('search term', { filter: `user = "${userId}"` });
}); });
test('should handle empty results', async () => { test('should handle empty results', async () => {
@ -475,6 +479,98 @@ describe('Share Methods', () => {
expect(result.nextCursor).toBeUndefined(); expect(result.nextCursor).toBeUndefined();
}); });
test('should only return shares from search results for the current user', async () => {
const userId1 = new mongoose.Types.ObjectId().toString();
const userId2 = new mongoose.Types.ObjectId().toString();
// Mock meiliSearch to simulate finding conversations from both users
const meiliSearchMock = jest.fn().mockImplementation((searchTerm, params) => {
// Simulate MeiliSearch filtering by user
const filter = params?.filter;
if (filter && filter.includes(userId1)) {
return Promise.resolve({
hits: [{ conversationId: 'conv1' }, { conversationId: 'conv3' }],
});
} else if (filter && filter.includes(userId2)) {
return Promise.resolve({ hits: [{ conversationId: 'conv2' }] });
}
// Without filter, would return all conversations (security issue)
return Promise.resolve({
hits: [
{ conversationId: 'conv1' },
{ conversationId: 'conv2' },
{ conversationId: 'conv3' },
],
});
});
Conversation.meiliSearch = meiliSearchMock;
// Create shares for different users
await SharedLink.create([
{
shareId: 'share1',
conversationId: 'conv1',
user: userId1,
title: 'User 1 Share',
isPublic: true,
},
{
shareId: 'share2',
conversationId: 'conv2',
user: userId2,
title: 'User 2 Share',
isPublic: true,
},
{
shareId: 'share3',
conversationId: 'conv3',
user: userId1,
title: 'Another User 1 Share',
isPublic: true,
},
]);
// Search as userId1
const result1 = await shareMethods.getSharedLinks(
userId1,
undefined,
10,
true,
'createdAt',
'desc',
'search term',
);
// Should only get shares from conversations belonging to userId1
expect(result1.links).toHaveLength(2);
expect(result1.links.every((link) => link.title.includes('User 1'))).toBe(true);
// Verify correct filter was used
expect(meiliSearchMock).toHaveBeenCalledWith('search term', {
filter: `user = "${userId1}"`,
});
// Search as userId2
const result2 = await shareMethods.getSharedLinks(
userId2,
undefined,
10,
true,
'createdAt',
'desc',
'search term',
);
// Should only get shares from conversations belonging to userId2
expect(result2.links).toHaveLength(1);
expect(result2.links[0].title).toBe('User 2 Share');
// Verify correct filter was used for second user
expect(meiliSearchMock).toHaveBeenCalledWith('search term', {
filter: `user = "${userId2}"`,
});
});
test('should only return shares for the specified user', async () => { test('should only return shares for the specified user', async () => {
const userId1 = new mongoose.Types.ObjectId().toString(); const userId1 = new mongoose.Types.ObjectId().toString();
const userId2 = new mongoose.Types.ObjectId().toString(); const userId2 = new mongoose.Types.ObjectId().toString();

View file

@ -150,7 +150,9 @@ export function createShareMethods(mongoose: typeof import('mongoose')) {
if (search && search.trim()) { if (search && search.trim()) {
try { try {
const searchResults = await Conversation.meiliSearch(search); const searchResults = await Conversation.meiliSearch(search, {
filter: `user = "${user}"`,
});
if (!searchResults?.hits?.length) { if (!searchResults?.hits?.length) {
return { return {

View file

@ -1,6 +1,6 @@
import _ from 'lodash'; import _ from 'lodash';
import { MeiliSearch } from 'meilisearch'; import { MeiliSearch } from 'meilisearch';
import type { SearchResponse, Index } from 'meilisearch'; import type { SearchResponse, SearchParams, Index } from 'meilisearch';
import type { import type {
CallbackWithoutResultAndOptionalError, CallbackWithoutResultAndOptionalError,
FilterQuery, FilterQuery,
@ -75,7 +75,7 @@ export interface SchemaWithMeiliMethods extends Model<DocumentWithMeiliIndex> {
setMeiliIndexSettings(settings: Record<string, unknown>): Promise<unknown>; setMeiliIndexSettings(settings: Record<string, unknown>): Promise<unknown>;
meiliSearch( meiliSearch(
q: string, q: string,
params?: Record<string, unknown>, params?: SearchParams,
populate?: boolean, populate?: boolean,
): Promise<SearchResponse<MeiliIndexable, Record<string, unknown>>>; ): Promise<SearchResponse<MeiliIndexable, Record<string, unknown>>>;
} }
@ -386,7 +386,7 @@ const createMeiliMongooseModel = ({
static async meiliSearch( static async meiliSearch(
this: SchemaWithMeiliMethods, this: SchemaWithMeiliMethods,
q: string, q: string,
params: Record<string, unknown>, params: SearchParams,
populate: boolean, populate: boolean,
): Promise<SearchResponse<MeiliIndexable, Record<string, unknown>>> { ): Promise<SearchResponse<MeiliIndexable, Record<string, unknown>>> {
const data = await index.search(q, params); const data = await index.search(q, params);
@ -644,6 +644,16 @@ export default function mongoMeili(schema: Schema, options: MongoMeiliOptions):
logger.error(`[mongoMeili] Error checking index ${indexName}:`, error); logger.error(`[mongoMeili] Error checking index ${indexName}:`, error);
} }
} }
// Configure index settings to make 'user' field filterable
try {
await index.updateSettings({
filterableAttributes: ['user'],
});
logger.debug(`[mongoMeili] Updated index ${indexName} settings to make 'user' filterable`);
} catch (settingsError) {
logger.error(`[mongoMeili] Error updating index settings for ${indexName}:`, settingsError);
}
})(); })();
// Collect attributes from the schema that should be indexed // Collect attributes from the schema that should be indexed
@ -654,6 +664,13 @@ export default function mongoMeili(schema: Schema, options: MongoMeiliOptions):
}, []), }, []),
]; ];
// CRITICAL: Always include 'user' field for proper filtering
// This ensures existing deployments can filter by user after migration
if (schema.obj.user && !attributesToIndex.includes('user')) {
attributesToIndex.push('user');
logger.debug(`[mongoMeili] Added 'user' field to ${indexName} index attributes`);
}
schema.loadClass(createMeiliMongooseModel({ index, attributesToIndex, syncOptions })); schema.loadClass(createMeiliMongooseModel({ index, attributesToIndex, syncOptions }));
// Register Mongoose hooks // Register Mongoose hooks

View file

@ -19,6 +19,7 @@ const convoSchema: Schema<IConversation> = new Schema(
user: { user: {
type: String, type: String,
index: true, index: true,
meiliIndex: true,
}, },
messages: [{ type: Schema.Types.ObjectId, ref: 'Message' }], messages: [{ type: Schema.Types.ObjectId, ref: 'Message' }],
agentOptions: { agentOptions: {

View file

@ -21,6 +21,7 @@ const messageSchema: Schema<IMessage> = new Schema(
index: true, index: true,
required: true, required: true,
default: null, default: null,
meiliIndex: true,
}, },
model: { model: {
type: String, type: String,