/** * WAW034: Solr Container Undersized * * Fargate tasks running a Solr image with less than 2048MB of memory will * fail under any real load — the JVM alone needs headroom for the heap plus * OS file cache for Lucene MMap. 4096MB is the practical production minimum. */ import type { PostSynthCheck, PostSynthContext, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; export declare function checkSolrMemoryMinimum(ctx: PostSynthContext): PostSynthDiagnostic[]; export declare const waw034: PostSynthCheck; //# sourceMappingURL=waw034.d.ts.map