Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat](docker)Add a BE ENV item 'SKIP_CHECK_ULIMIT' for Docker to sta…
…rt quickly (#45267) In the storage_engine.cpp of the BE process, it is mandatory to check that the `ulimit` value must be greater than 60,000. When starting with Docker or Docker-Compose, it is necessary to preemptively change the corresponding value on the host machine. This change is very unfriendly to Docker, as it loses its unique advantage of being able to "build quickly and anywhere," and cannot become a fundamental capability for rapid startup. Therefore, a new environment variable has been added to control whether to skip this check value. The default value is false, which enforces the check of this value. When set to true, it skips the check and starts directly.
- Loading branch information