Re: no clustering on ec2 due to ClassNotFoundException[org.elasticsearch.gateway.blobstore.BlobStoreGatewayModule]

2014-10-29 Thread Mike Ressler
Elasticsearch gurus, Just getting started with elasticsearch and ran across the same gateway issue brought up in this thread. Seems like the documentation really ought to be updated. It's several major versions old at this point. http://www.elasticsearch.org/tutorials/elasticsearch-on-ec2/

Re: no clustering on ec2 due to ClassNotFoundException[org.elasticsearch.gateway.blobstore.BlobStoreGatewayModule]

2014-07-25 Thread Anthony Oleary
hi David May I ask, if i want to use opsworks, copy my ec2 image onto opswork , and auto scale, how can i specify a master node or is it automatic? anthony On Thursday, July 24, 2014 5:36:51 PM UTC+1, David Pilato wrote: It's a matter of EC2 configuration. Elasticsearch does not really

Re: no clustering on ec2 due to ClassNotFoundException[org.elasticsearch.gateway.blobstore.BlobStoreGatewayModule]

2014-07-25 Thread David Pilato
Automatic master node election. HTH -- David ;-) Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs Le 25 juil. 2014 à 20:07, Anthony Oleary anthony.ole...@kweekweek.com a écrit : hi David May I ask, if i want to use opsworks, copy my ec2 image onto opswork , and auto scale, how can i

no clustering on ec2 due to ClassNotFoundException[org.elasticsearch.gateway.blobstore.BlobStoreGatewayModule]

2014-07-24 Thread Anthony Oleary
Hello, in EC@,i installed elasticsearch with wget http://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.3.0.zip sudo unzip elasticsearch-1.3.0.zip -d /usr/local/elasticsearch cd /usr/local/elasticsearch/elasticsearch-1.3.0 sudo bin/plugin -install

Re: no clustering on ec2 due to ClassNotFoundException[org.elasticsearch.gateway.blobstore.BlobStoreGatewayModule]

2014-07-24 Thread David Pilato
Gateways have been removed. You can't use that anymore. --  David Pilato | Technical Advocate | Elasticsearch.com @dadoonet | @elasticsearchfr Le 24 juillet 2014 à 14:47:48, Anthony Oleary (anthony.ole...@kweekweek.com) a écrit: Hello, in EC@,i installed elasticsearch with wget 

Re: no clustering on ec2 due to ClassNotFoundException[org.elasticsearch.gateway.blobstore.BlobStoreGatewayModule]

2014-07-24 Thread Anthony Oleary
thanks David I got the link about gateways from http://www.elasticsearch.org/tutorials/elasticsearch-on-ec2/ what would you recommend i use for clustering on EC2 instead of gateways or how to configure the config.yml ? Anthony On Thursday, July 24, 2014 2:47:32 PM UTC+1, David Pilato wrote:

Re: no clustering on ec2 due to ClassNotFoundException[org.elasticsearch.gateway.blobstore.BlobStoreGatewayModule]

2014-07-24 Thread David Pilato
Just use local disk or EBS with provisioned IOs. You don't need to store your indices on S3. If you want to do that for backup purpose, have a look at snapshot and restore API. Basically, in elasticsearch.yml file, remove: gateway.type: s3 gateway.s3.bucket: codetest Gateway has been removed

Re: no clustering on ec2 due to ClassNotFoundException[org.elasticsearch.gateway.blobstore.BlobStoreGatewayModule]

2014-07-24 Thread Anthony Oleary
Thanks again David, One last question, how would i tell elasticsearch to use the EBS? or is it when i create a EC2 to link it to EBS and it works away without telling eleasticsearch. would you recommend EBS in order for the data not to be lost. On Thursday, July 24, 2014 3:48:53 PM UTC+1,

Re: no clustering on ec2 due to ClassNotFoundException[org.elasticsearch.gateway.blobstore.BlobStoreGatewayModule]

2014-07-24 Thread David Pilato
It's a matter of EC2 configuration. Elasticsearch does not really care to know. I'd probably start with local disks if possible. Replication is done by elasticsearch. So if you have more than one node, your data could be replicated on another machine. --  David Pilato | Technical Advocate |