Simran

Results 8 comments of Simran

> What do you mean by 'shutdown' exactly ? In my docker-compose file(below) you can find that I had to use `restart: always` option because the container was coming down....

> It seems all the occurrences in the log when Tomcat is going down are preceded by: > > ``` > Received signal 15 > Terminating Tomcat > ``` >...

Used this to narrow down to the snippets around `Exception in thread sync thread` ```bash cat opengrok-v2.log| grep -i -B 1000 "Starting tomcat" | grep -i -A 50 -B 100...

``` 25-Jun-2021 08:51:18.228 INFO [ForkJoinPool.commonPool-worker-11] org.opengrok.suggest.Suggester.rebuild Rebuilding the following suggesters: [verity] 25-Jun-2021 08:51:30.770 INFO [Thread-20] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler ["http-nio-8080"] 25-Jun-2021 08:51:30.779 INFO [Thread-20] org.apache.catalina.core.StandardService.stopInternal Stopping service [Catalina] 25-Jun-2021 08:51:30.878 INFO...

Couple of observations/infos - - This time the restart happened after approximately 21 hours which was a quite more than what I have seen before (4-5 hours). - There has...

I tried something else too. Noticed that whenever there is a restart there is a lucene exception before that. >WARNING: ERROR addFile(): /opengrok/src/jdk8-b120/langtools/test/tools/javac/limits/LongName.java java.lang.IllegalArgumentException: Document contains at least one immense...

@vladak Any luck in figuring out the reason behind shutdowns and any fixes/workarounds for the same?

> Until a fix is in place, I ended up doing: > > ``` > docker update --restart=always > ``` Agreed. I have been using docker-compose with restart policy as...