I would like to know how many scripts can be stored in single elasticsearch cluster.
Is it limitless, or is there any hard limit ?
I found the limit of script size, but could not find the limit of number of scripts.
How to write scripts | Elasticsearch Guide [8.11] | Elastic
The size of scripts is limited to 65,535 bytes. This can be changed by settingscript.max_size_in_bytes
setting to increase that soft limit, but if scripts are really large then a native script engine should be considered.