I am running a Spring-Boot Service v2.3.5.RELEASE. Its an API that is very process intensive. It makes calls to JNI->C++. While making such an Execution I get the following warning:
An Executor is required to handle java.util.concurrent.Callable return values. Please, configure a TaskExecutor in the MVC config under "async support". The SimpleAsyncTaskExecutor currently in use is not suitable under load.!!
Can such a warning ultimately lead to the microservice crashing?
And how to deal with this Warning?