I have installed elasticsearch @ debian6 by this tutorial.
I have set up my system max open files directives so i have these values:
# su
# cat /proc/sys/fs/file-max
70000
# ulimit -Hn
64000
# ulimit -Sn
32000
When i check elasticsearch max_file_descriptors by:
curl -XGET 'http://localhost:9200/_nodes?process=true&pretty=true'
i'll get 1024.
When i restart it by root user, it has "max
Trying to import ~400m docs in to Elasticsearch from couchdb using the couchdb river plugin. Everything starts out great with indexing time around 5k/s but after a few hours come back and find its hitting the floor around 20/s. We have the system on a beefy box, a x1.xlarge, and all its doing is Elasticsearch.
I've set up sudo not to prompt for password by editing the sudoers file:
myuser ALL=(ALL:ALL) NOPASSWD: ALL
And it works fine, running sudo with no password prompting. But when entering sudo -v I noticed that it prompted for password, only once.
Im trying to add some full text searching to my LAMP web application. Ive come across ElasticSearch and I like what it has to offer. I have read the guides and understand how to index a single item by using curl -XPUT http://localhost:9200/.
But how can I index an entire MySQL database?
I cannot seem to find anywhere on the web that explains how to do this.
Any ideas?
I have an logstash instance with ElasticSearch Index. I trying to run some queries against to this index via command line, because I would like to monitor some log items in this index, because I use logstash as a central logging server.
But I am totall missed in query language, and I cannot find a correct part of documentation for solve my problem.
I trying to search some specific log messages.
Thank you for your quick reply. Yes, elasticsearch is available in Arch's AUR. I read that it is not necessarily a good idea to use the aur2ccr if you don't know what you are doing. I am an apt/.deb person, so I don't know what I am doing with your package installs yet. ;-)I think with your advice, I will wait until the ISOs are released with the systemd switch.
I'm trying to give a particular user superuser privileges, specifically the global write permissions that root hashe user in question must have these permissions without using sudo. It's a user that runs a service that is trying to write a file to a directory that it doesn't have write permissions on.
Elasticsearch, a real-time, enterprise data search and analytics startup and open source project, has raised $24 million in Series B financing led by Mike Volpi
from Index Ventures. The round includes contributions from existing investor Benchmark Capital and new investor SV Angel.
I visudoed sudoers to allow a user to run one bash script with a passwordless sudo, which works fine when logged in (also via SSH). However, when I log in via SSH using public key authentication and configure authorized_keys' command="sudo myScript", I am promped for the user password by sudo. Having the script itself use sudo on another program does however work without requiring a password.