I'm a beginner in elasticsearch, and i have some questions:
1)Exists some book of ElasticSearch?
2)To add a new node i just need to start a new instance of
Elasticsearch in other machine located in the same network?
3)Suppose i have two machines with elasticsearch. I need to configure
apache as front end with mod-proxy to search in index to garantee
failover?
4)Elasticsearch has some administration page?
I'm a beginner in elasticsearch, and i have some questions:
1)Exists some book of Elasticsearch?
2)To add a new node i just need to start a new instance of
Elasticsearch in other machine located in the same network?
3)Suppose i have two machines with elasticsearch. I need to configure
apache as front end with mod-proxy to search in index to garantee
failover?
4)Elasticsearch has some administration page?
I start tow machines and change the name of cluster and the name of
nodes. Elasticsearch just discovery the new node just when i put in
discovey.zen.ping.unicast.hosts the ip of host, thats correct?
2)When i search in index, i need to use only one URL like http://solrcluster and this url will search all nodes. Hi i do this
with Elasticsearch without apache mod_proxy.
I'm a beginner in elasticsearch, and i have some questions:
1)Exists some book of Elasticsearch?
2)To add a new node i just need to start a new instance of
Elasticsearch in other machine located in the same network?
3)Suppose i have two machines with elasticsearch. I need to configure
apache as front end with mod-proxy to search in index to garantee
failover?
4)Elasticsearch has some administration page?
I start tow machines and change the name of cluster and the name of
nodes. Elasticsearch just discovery the new node just when i put in
discovey.zen.ping.unicast.hosts the ip of host, thats correct?
2)When i search in index, i need to use only one URL like http://solrcluster and this url will search all nodes. Hi i do this
with Elasticsearch without apache mod_proxy.
I'm a beginner in elasticsearch, and i have some questions:
1)Exists some book of Elasticsearch?
2)To add a new node i just need to start a new instance of
Elasticsearch in other machine located in the same network?
3)Suppose i have two machines with elasticsearch. I need to configure
apache as front end with mod-proxy to search in index to garantee
failover?
4)Elasticsearch has some administration page?
I start tow machines and change the name of cluster and the name of
nodes. Elasticsearch just discovery the new node just when i put in
discovey.zen.ping.unicast.hosts the ip of host, thats correct?
You don't need to add ip or hostname in config file as ES automatically
detect nodes in your network.
2)When i search in index, i need to use only one URL like http://solrcluster and this url will search all nodes. Hi i do this
with Elasticsearch without apache mod_proxy.
What you can also do is to connect to one of the know nodes and ask for
information about the other nodes.
curl -XGET 'http://localhost:9200/_cluster/nodes'
If you use Java, you can start a client only node. It connects to the
cluster and discovers automatically all the cluster nodes, do balancing, ...
3)Exists some API to index objects in Elasticsearch?
Some API that uses Annotations?
I use Jackson to transform my entities to JSON and push them into ES.
There are Jackson annotations.
But, Alois Cochard starts also an OSEM annotation project :
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.