Reputation: 17407
I am reading at http://cookbook.logstash.net/recipes/faster-startup-time/
I did unzip jar and trying to run but i don't know what i am doing wrong?
#unzip logstash-1.1.5-monolithic.jar -d dest_dir
#java -jar -cp /past/to/extracted/logstash/dest_dir logstash.runner agent -f /path/to/logstash/config.conf -- web --backend elasticsearch:///?local
Unable to access jarfile logstash.runner
Upvotes: 2
Views: 1210
Reputation: 2198
You might've hit this issue if you are using the embedded "web" mode - https://logstash.jira.com/browse/LOGSTASH-1316?focusedCommentId=20134&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-20134
Upvotes: 0
Reputation: 226
Faster startup time can now be achieved by using the flatjar. This jar packs logstash differently so that ruby doesn't have to scan so many paths at startup, thus reducing startup time. This is easier than unziping the jar and it is comparable in startup time.
Upvotes: 1