/** * WAW033: Solr Heap Exceeds 50% of Container Memory * * When SOLR_HEAP is set on a Fargate task running a Solr image, validates that * the heap does not exceed 50% of the task's allocated memory. Exceeding this * leaves insufficient headroom for the OS file cache that Lucene MMap relies on, * causing the OOM killer to terminate the container. */ import type { PostSynthCheck, PostSynthContext, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; export declare function checkSolrHeapRatio(ctx: PostSynthContext): PostSynthDiagnostic[]; export declare const waw033: PostSynthCheck; //# sourceMappingURL=waw033.d.ts.map