Problema: Convex backend consumindo 16GB+ de RAM causando OOM kills Correcoes aplicadas: - Substituido todos os .collect() por .take(LIMIT) em 27+ arquivos - Adicionado indice by_usbPolicyStatus para otimizar query de maquinas - Corrigido N+1 problem em alerts.ts usando Map lookup - Corrigido full table scan em usbPolicy.ts - Corrigido subscription leaks no frontend (tickets-view, use-ticket-categories) - Atualizado versao do Convex backend para precompiled-2025-12-04-cc6af4c Arquivos principais modificados: - convex/*.ts - limites em todas as queries .collect() - convex/schema.ts - novo indice by_usbPolicyStatus - convex/alerts.ts - N+1 fix com Map - convex/usbPolicy.ts - uso do novo indice - src/components/tickets/tickets-view.tsx - skip condicional - src/hooks/use-ticket-categories.ts - skip condicional 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
39 lines
1.5 KiB
TypeScript
39 lines
1.5 KiB
TypeScript
import { mutation } from "./_generated/server";
|
|
import { v } from "convex/values";
|
|
|
|
export const ensureDefaults = mutation({
|
|
args: { tenantId: v.string() },
|
|
handler: async (ctx, { tenantId }) => {
|
|
let existing = await ctx.db
|
|
.query("queues")
|
|
.withIndex("by_tenant", (q) => q.eq("tenantId", tenantId))
|
|
.take(10);
|
|
existing = await Promise.all(
|
|
existing.map(async (queue) => {
|
|
if (queue.name === "Suporte N1" || queue.slug === "suporte-n1") {
|
|
await ctx.db.patch(queue._id, { name: "Chamados", slug: "chamados" });
|
|
return (await ctx.db.get(queue._id)) ?? queue;
|
|
}
|
|
if (queue.name === "Suporte N2" || queue.slug === "suporte-n2") {
|
|
await ctx.db.patch(queue._id, { name: "Laboratório", slug: "laboratorio" });
|
|
return (await ctx.db.get(queue._id)) ?? queue;
|
|
}
|
|
if (queue.name === "Field Services" || queue.slug === "field-services") {
|
|
await ctx.db.patch(queue._id, { name: "Visitas", slug: "visitas" });
|
|
return (await ctx.db.get(queue._id)) ?? queue;
|
|
}
|
|
return queue;
|
|
})
|
|
);
|
|
if (existing.length === 0) {
|
|
const queues = [
|
|
{ name: "Chamados", slug: "chamados" },
|
|
{ name: "Laboratório", slug: "laboratorio" },
|
|
{ name: "Visitas", slug: "visitas" },
|
|
];
|
|
for (const q of queues) {
|
|
await ctx.db.insert("queues", { tenantId, name: q.name, slug: q.slug, teamId: undefined });
|
|
}
|
|
}
|
|
},
|
|
});
|