I am facing time out error on cloud when deploying my java-groovy service. I am using hibernate elastic search due to which the indexing starts itself when I bootRun the app. which takes a couple of hour to start. I want to skip this heavy process while bootRun and start it once server starts.
I tried update config value to index_schema_management_strategy: none
Also I am not sure from where the indexing queries are initiate from code.
I tried update config value to index_schema_management_strategy: none, still indexing happens on bootRun.
Hibernate Search most certainly doesn't trigger mass indexing on boot.
Either you're using an additional framework that triggers mass indexing on boot (though I don't know any), or you have code in your application that does so.
Look for the string
massIndexin your code.See also https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#search-batchindex-massindexer