[ForkJoinPool-47-worker-1] WARN {} [StubbornRetrier] Retry 6/6 failed because of: Could not load codec 'Lucene60'. Did you forget to add lucene-backward-codecs.jar?
[http-nio-127.0.0.1-8280-exec-2] WARN {} [FileLoggingServiceImpl] Unable to retrieve previous logs:
java.lang.RuntimeException: Cannot succeed after 6 retries.
xx-xxx-20xx 16:03:24.980 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployWAR Deploying web application archive [/usr/lib/vco/app-server/deploy/vco.war]
xx-xxx-20xx 16:03:28.497 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
Currently, there is no resolution for this issue. See the Workaround below for further details.
To temporarily workaround the issue, delete the log indices and restart the Automation Orchestrator service by deleting the pod by its ID.
rm -rf /data/vco/usr/lib/vco/app-server/logs/scripting.log*_lucene*
kubectl get pods -n prelude
kubectl delete pods -n prelude pod_id1
kubectl delete pods -n prelude pod_id2
kubectl delete pods -n prelude pod_id3
To delete the old Lucene index, run the following commands in a SSH session terminal.
Stop vRO 7.x server service:
service vco-server stop
Use the find command to isolate the affected logs:
find /var/log/vco/app-server -iname "*lucene*"
Delete the old indices:
rm -rf /var/log/vco/app-server/scripting.log*_lucene*
Note: The file can be in format of scripting.log.Number_lucene. A wildcard asterisk ( * ) may be needed if there are multiple lucene files.
Start the vRO 7.x server service:
service vco-server start