mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-16 16:04:34 +00:00

* fix(api): 修复二级路由下的页面判断逻辑 在请求错误处理中,添加基础URL前缀以正确判断当前是否为外部链接页面。 * perf: use global var * remove invalid code * feat: response limit;perf: copy avatar image;perf: markdown parse (#5719) * feat: response limit * remove placeholder * perf: copy avatar image * perf: markdown parse * fix: child app cannot show cite * doc * fix: node template bugs (#5727) * add dataset search count track (#5721) * add dataset search count track * remove pro * change to track * remove unused * fix * perf: track code --------- Co-authored-by: archer <545436317@qq.com> * http response limit * deploy doc * fix: test * doc * remove invalid code * remove invalid code --------- Co-authored-by: 戴盛利 <1639499287@qq.com> Co-authored-by: heheer <heheer@sealos.io>
80 lines
2.2 KiB
TypeScript
80 lines
2.2 KiB
TypeScript
import { delay } from '@fastgpt/global/common/system/utils';
|
|
import { addLog } from '../../system/log';
|
|
import { TrackModel } from './schema';
|
|
import { TrackEnum } from '@fastgpt/global/common/middle/tracks/constants';
|
|
|
|
const batchUpdateTime = Number(process.env.TRACK_BATCH_UPDATE_TIME || 10000);
|
|
|
|
const getCurrentTenMinuteBoundary = () => {
|
|
const now = new Date();
|
|
const minutes = now.getMinutes();
|
|
const tenMinuteBoundary = Math.floor(minutes / 10) * 10;
|
|
|
|
const boundary = new Date(now);
|
|
boundary.setMinutes(tenMinuteBoundary, 0, 0);
|
|
return boundary;
|
|
};
|
|
|
|
export const trackTimerProcess = async () => {
|
|
while (true) {
|
|
await countTrackTimer();
|
|
await delay(batchUpdateTime);
|
|
}
|
|
};
|
|
|
|
export const countTrackTimer = async () => {
|
|
if (!global.countTrackQueue || global.countTrackQueue.size === 0) {
|
|
return;
|
|
}
|
|
|
|
const queuedItems = Array.from(global.countTrackQueue.values());
|
|
global.countTrackQueue = new Map();
|
|
|
|
try {
|
|
const currentBoundary = getCurrentTenMinuteBoundary();
|
|
|
|
const bulkOps = queuedItems
|
|
.map(({ event, count, data }) => {
|
|
if (event === TrackEnum.datasetSearch) {
|
|
const { teamId, datasetId } = data;
|
|
|
|
return [
|
|
{
|
|
updateOne: {
|
|
filter: {
|
|
event,
|
|
teamId,
|
|
createTime: currentBoundary,
|
|
'data.datasetId': datasetId
|
|
},
|
|
update: [
|
|
{
|
|
$set: {
|
|
event,
|
|
teamId,
|
|
createTime: { $ifNull: ['$createTime', currentBoundary] },
|
|
data: {
|
|
datasetId,
|
|
count: { $add: [{ $ifNull: ['$data.count', 0] }, count] }
|
|
}
|
|
}
|
|
}
|
|
],
|
|
upsert: true
|
|
}
|
|
}
|
|
];
|
|
}
|
|
return [];
|
|
})
|
|
.flat();
|
|
|
|
if (bulkOps.length > 0) {
|
|
await TrackModel.bulkWrite(bulkOps);
|
|
addLog.info('Track timer processing success');
|
|
}
|
|
} catch (error) {
|
|
addLog.error('Track timer processing error', error);
|
|
}
|
|
};
|