/** * WAW035: Solr Container Missing nofile Ulimit * * Solr opens a file descriptor for every shard replica, index file, log, and * connection. Without a raised nofile limit the process hits the default kernel * limit (~1024) under moderate load, causing "Too many open files" errors that * bring the node down. The production minimum is 65535. */ import type { PostSynthCheck, PostSynthContext, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; export declare function checkSolrUlimits(ctx: PostSynthContext): PostSynthDiagnostic[]; export declare const waw035: PostSynthCheck; //# sourceMappingURL=waw035.d.ts.map