2013-06-28 10:29:40 -04:00
|
|
|
Google Compute Engine Cloud Plugin for Elasticsearch
|
2013-06-28 03:45:02 -04:00
|
|
|
====================================================
|
|
|
|
|
|
|
|
The GCE Cloud plugin allows to use GCE API for the unicast discovery mechanism.
|
|
|
|
|
2014-03-12 07:14:09 -04:00
|
|
|
In order to install the plugin, simply run: `bin/plugin -install elasticsearch/elasticsearch-cloud-gce/2.0.0`.
|
2013-06-28 03:45:02 -04:00
|
|
|
|
2014-03-26 14:56:41 -04:00
|
|
|
* For master elasticsearch versions, look at [master branch](https://github.com/elasticsearch/elasticsearch-cloud-gce/tree/master).
|
|
|
|
* For 1.1.x elasticsearch versions, look at [es-1.1 branch](https://github.com/elasticsearch/elasticsearch-cloud-gce/tree/es-1.1).
|
|
|
|
* For 1.0.x elasticsearch versions, look at [es-1.0 branch](https://github.com/elasticsearch/elasticsearch-cloud-gce/tree/es-1.0).
|
|
|
|
* For 0.90.x elasticsearch versions, look at [es-0.90 branch](https://github.com/elasticsearch/elasticsearch-cloud-gce/tree/es-0.90).
|
2014-03-11 12:39:10 -04:00
|
|
|
|
2014-01-29 05:21:45 -05:00
|
|
|
| GCE Cloud Plugin | elasticsearch | gce api | Release date |
|
|
|
|
|----------------------------|---------------------|--------------|:------------:|
|
2014-03-26 15:16:11 -04:00
|
|
|
| 3.0.0-SNAPSHOT | master | 1.17.0-rc | XXXX-XX-XX |
|
2014-01-13 08:56:26 -05:00
|
|
|
|
2014-03-26 14:56:41 -04:00
|
|
|
Please read documentation relative to the version you are using:
|
|
|
|
|
2014-03-26 15:16:11 -04:00
|
|
|
* [3.0.0-SNAPSHOT](https://github.com/elasticsearch/elasticsearch-cloud-gce/blob/master/README.md)
|
2014-03-26 14:56:41 -04:00
|
|
|
|
2013-06-28 03:45:02 -04:00
|
|
|
|
|
|
|
Google Compute Engine Virtual Machine Discovery
|
|
|
|
===============================
|
|
|
|
|
|
|
|
Google Compute Engine VM discovery allows to use the google APIs to perform automatic discovery (similar to multicast in non hostile
|
|
|
|
multicast environments). Here is a simple sample configuration:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
cloud:
|
|
|
|
gce:
|
|
|
|
project_id: <your-google-project-id>
|
|
|
|
zone: <your-zone>
|
|
|
|
discovery:
|
|
|
|
type: gce
|
|
|
|
```
|
|
|
|
|
|
|
|
How to start (short story)
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
* Create Google Compute Engine instance
|
|
|
|
* Install Elasticsearch
|
|
|
|
* Install Google Compute Engine Cloud plugin
|
|
|
|
* Modify `elasticsearch.yml` file
|
|
|
|
* Start Elasticsearch
|
|
|
|
|
|
|
|
How to start (long story)
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
### Prerequisites
|
|
|
|
|
|
|
|
Before starting, you should have:
|
|
|
|
|
|
|
|
* Your project ID. Let's say here `es-cloud`. Get it from [Google APIS Console](https://code.google.com/apis/console/).
|
2013-06-28 10:27:13 -04:00
|
|
|
* [GCUtil](https://developers.google.com/compute/docs/gcutil/#install)
|
2013-06-28 03:45:02 -04:00
|
|
|
|
|
|
|
|
|
|
|
### Creating your first instance
|
|
|
|
|
|
|
|
|
|
|
|
```sh
|
2013-07-08 16:44:18 -04:00
|
|
|
gcutil --project=es-cloud addinstance myesnode1 \
|
|
|
|
--service_account_scope=compute-rw,storage-full \
|
|
|
|
--persistent_boot_disk
|
2013-06-28 03:45:02 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
You will be asked to open a link in your browser. Login and allow access to listed services.
|
|
|
|
You will get back a verification code. Copy and paste it in your terminal.
|
|
|
|
|
|
|
|
You should get `Authentication successful.` message.
|
|
|
|
|
|
|
|
Then, choose your zone. Let's say here that we choose `europe-west1-a`.
|
|
|
|
|
|
|
|
Choose your compute instance size. Let's say `f1-micro`.
|
|
|
|
|
|
|
|
Choose your OS. Let's say `projects/debian-cloud/global/images/debian-7-wheezy-v20130617`.
|
|
|
|
|
|
|
|
You may be asked to create a ssh key. Follow instructions to create one.
|
|
|
|
|
|
|
|
When done, a report like this one should appears:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
Table of resources:
|
|
|
|
|
|
|
|
+-----------+--------------+-------+---------+--------------+----------------+----------------+----------------+---------+----------------+
|
|
|
|
| name | machine-type | image | network | network-ip | external-ip | disks | zone | status | status-message |
|
|
|
|
+-----------+--------------+-------+---------+--------------+----------------+----------------+----------------+---------+----------------+
|
|
|
|
| myesnode1 | f1-micro | | default | 10.240.20.57 | 192.158.29.199 | boot-myesnode1 | europe-west1-a | RUNNING | |
|
|
|
|
+-----------+--------------+-------+---------+--------------+----------------+----------------+----------------+---------+----------------+
|
|
|
|
```
|
|
|
|
|
2013-06-28 10:29:40 -04:00
|
|
|
You can now connect to your machine using the external IP address in order to install Elasticsearch:
|
2013-06-28 03:45:02 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
ssh -i ~/.ssh/google_compute_engine 192.158.29.199
|
|
|
|
```
|
|
|
|
|
|
|
|
Once connected, install Elasticsearch:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
sudo apt-get update
|
|
|
|
|
|
|
|
# Install curl if needed
|
|
|
|
sudo apt-get install curl
|
|
|
|
|
|
|
|
# Download Elasticsearch
|
2014-01-29 05:21:45 -05:00
|
|
|
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.0.0.RC1.deb
|
2013-06-28 03:45:02 -04:00
|
|
|
|
|
|
|
# Prepare Java installation
|
|
|
|
sudo apt-get install java7-runtime-headless
|
|
|
|
|
|
|
|
# Prepare Elasticsearch installation
|
2014-01-29 05:21:45 -05:00
|
|
|
sudo dpkg -i elasticsearch-1.0.0.RC1.deb
|
2013-06-28 03:45:02 -04:00
|
|
|
|
2013-06-28 10:25:19 -04:00
|
|
|
# Check that elasticsearch is running:
|
2013-06-28 03:45:02 -04:00
|
|
|
curl http://localhost:9200/
|
|
|
|
```
|
|
|
|
|
|
|
|
This command should give you a JSON result:
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
{
|
|
|
|
"ok" : true,
|
|
|
|
"status" : 200,
|
2014-01-29 05:21:45 -05:00
|
|
|
"name" : "Shriker",
|
2013-06-28 03:45:02 -04:00
|
|
|
"version" : {
|
2014-01-29 05:21:45 -05:00
|
|
|
"number" : "1.0.0.RC1",
|
|
|
|
"build_hash" : "0a5781f44876e8d1c30b6360628d59cb2a7a2bbb",
|
|
|
|
"build_timestamp" : "2014-01-10T10:18:37Z",
|
|
|
|
"build_snapshot" : false,
|
|
|
|
"lucene_version" : "4.6"
|
2013-06-28 03:45:02 -04:00
|
|
|
},
|
|
|
|
"tagline" : "You Know, for Search"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Install elasticsearch cloud gce plugin
|
|
|
|
|
|
|
|
Install the plugin:
|
|
|
|
|
|
|
|
```sh
|
2013-06-28 10:25:19 -04:00
|
|
|
# Use Plugin Manager to install it
|
2014-01-29 05:21:45 -05:00
|
|
|
sudo /usr/share/elasticsearch/bin/plugin --install elasticsearch/elasticsearch-cloud-gce/2.0.0.RC1
|
2013-06-28 03:45:02 -04:00
|
|
|
|
2013-06-28 10:25:19 -04:00
|
|
|
# Configure it:
|
2013-06-28 03:45:02 -04:00
|
|
|
sudo vi /etc/elasticsearch/elasticsearch.yml
|
|
|
|
```
|
|
|
|
|
|
|
|
And add the following lines:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
cloud:
|
|
|
|
gce:
|
|
|
|
project_id: es-cloud
|
|
|
|
zone: europe-west1-a
|
|
|
|
discovery:
|
|
|
|
type: gce
|
|
|
|
```
|
|
|
|
|
2013-06-28 10:25:19 -04:00
|
|
|
|
2013-06-28 03:45:02 -04:00
|
|
|
Restart elasticsearch:
|
|
|
|
|
|
|
|
```sh
|
2013-06-28 10:25:19 -04:00
|
|
|
sudo /etc/init.d/elasticsearch restart
|
2013-06-28 03:45:02 -04:00
|
|
|
```
|
|
|
|
|
2013-07-08 16:44:18 -04:00
|
|
|
If anything goes wrong, you should check logs:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
tail -f /var/log/elasticsearch/elasticsearch.log
|
|
|
|
```
|
|
|
|
|
|
|
|
If needed, you can change log level to `TRACE` by modifying `sudo vi /etc/elasticsearch/logging.yml`:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
# discovery
|
|
|
|
discovery.gce: TRACE
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-28 03:45:02 -04:00
|
|
|
### Cloning your existing machine
|
|
|
|
|
2013-06-28 10:25:19 -04:00
|
|
|
In order to build a cluster on many nodes, you can clone your configured instance to new nodes.
|
|
|
|
You won't have to reinstall everything!
|
|
|
|
|
|
|
|
First create an image of your running instance and upload it to Google Cloud Storage:
|
2013-06-28 03:45:02 -04:00
|
|
|
|
|
|
|
```sh
|
2013-06-28 10:25:19 -04:00
|
|
|
# Create an image of yur current instance
|
2013-06-28 03:45:02 -04:00
|
|
|
sudo python /usr/share/imagebundle/image_bundle.py \
|
|
|
|
-r / -o /tmp/ --log_file=/tmp/abc.log
|
|
|
|
|
2013-06-28 10:25:19 -04:00
|
|
|
# An image has been created in `/tmp` directory:
|
|
|
|
ls /tmp
|
2013-06-28 03:45:02 -04:00
|
|
|
e4686d7f5bf904a924ae0cfeb58d0827c6d5b966.image.tar.gz
|
|
|
|
|
2013-06-28 10:25:19 -04:00
|
|
|
# Upload your image to Google Cloud Storage:
|
2013-06-28 03:45:02 -04:00
|
|
|
# Launch this command and follow instructions to give your instance an access to your storage
|
|
|
|
gsutil config
|
|
|
|
|
2013-06-28 10:25:19 -04:00
|
|
|
# Create a bucket to hold your image, let's say `esimage`:
|
2013-06-28 03:45:02 -04:00
|
|
|
gsutil mb gs://esimage
|
|
|
|
|
2013-06-28 10:25:19 -04:00
|
|
|
# Copy your image to this bucket:
|
2013-06-28 03:45:02 -04:00
|
|
|
gsutil cp /tmp/e4686d7f5bf904a924ae0cfeb58d0827c6d5b966.image.tar.gz gs://esimage
|
|
|
|
|
2013-07-01 11:56:41 -04:00
|
|
|
# Then add your image to images collection:
|
2013-06-28 03:45:02 -04:00
|
|
|
gcutil listkernels --project es-cloud
|
|
|
|
+----------------------------------------------+--------------------------------------------------+-------------+
|
|
|
|
| name | description | deprecation |
|
|
|
|
+----------------------------------------------+--------------------------------------------------+-------------+
|
|
|
|
| projects/google/global/kernels/gce-20120621 | 2.6.39-gcg built 2012-03-29 01:07:00 | DEPRECATED |
|
|
|
|
| projects/google/global/kernels/gce-v20130603 | SCSI-enabled 3.3.8-gcg built 2013-05-29 01:04:00 | |
|
|
|
|
+----------------------------------------------+--------------------------------------------------+-------------+
|
2013-06-28 10:25:19 -04:00
|
|
|
# Note the kernel you prefer to use and add your image to your catalog:
|
2014-01-29 05:21:45 -05:00
|
|
|
gcutil --project=es-cloud addimage elasticsearch-1-0-0-RC1 \
|
2013-06-28 03:45:02 -04:00
|
|
|
gs://esimage/e4686d7f5bf904a924ae0cfeb58d0827c6d5b966.image.tar.gz \
|
|
|
|
--preferred_kernel=projects/google/global/kernels/gce-v20130603
|
2013-07-08 16:44:18 -04:00
|
|
|
|
|
|
|
# If the previous command did not work for you, logout from your instance
|
|
|
|
# and launch the same command from your local machine.
|
2013-06-28 03:45:02 -04:00
|
|
|
```
|
|
|
|
|
2013-06-28 10:25:19 -04:00
|
|
|
### Start new instances
|
|
|
|
|
2013-06-28 10:29:40 -04:00
|
|
|
As you have now an image, you can create as many instances as you need:
|
2013-06-28 03:45:02 -04:00
|
|
|
|
|
|
|
```sh
|
2013-06-28 10:25:19 -04:00
|
|
|
# Just change node name (here myesnode2)
|
2014-01-29 05:21:45 -05:00
|
|
|
gcutil --project=es-cloud addinstance --image=elasticsearch-1-0-0-RC1 \
|
2013-06-28 03:45:02 -04:00
|
|
|
--kernel=projects/google/global/kernels/gce-v20130603 myesnode2 \
|
|
|
|
--zone europe-west1-a --machine_type f1-micro --service_account_scope=compute-rw \
|
|
|
|
--persistent_boot_disk
|
|
|
|
```
|
|
|
|
|
2013-06-28 10:25:19 -04:00
|
|
|
### Remove an instance (aka shut it down)
|
2013-06-28 03:45:02 -04:00
|
|
|
|
|
|
|
You can use [Google Cloud Console](https://cloud.google.com/console) or CLI to manage your instances:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# Stopping and removing instances
|
2013-07-08 16:44:18 -04:00
|
|
|
gcutil --project=es-cloud deleteinstance myesnode1 myesnode2 \
|
|
|
|
--zone=europe-west1-a
|
2013-06-28 03:45:02 -04:00
|
|
|
|
|
|
|
# Consider removing disk as well if you don't need them anymore
|
2013-07-08 16:44:18 -04:00
|
|
|
gcutil --project=es-cloud deletedisk boot-myesnode1 boot-myesnode2 \
|
|
|
|
--zone=europe-west1-a
|
2013-06-28 03:45:02 -04:00
|
|
|
```
|
|
|
|
|
2013-06-28 09:44:52 -04:00
|
|
|
Filtering by tags
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
The GCE discovery can also filter machines to include in the cluster based on tags using `discovery.gce.tags` settings.
|
|
|
|
For example, setting `discovery.gce.tags` to `dev` will only filter instances having a tag set to `dev`. Several tags
|
|
|
|
set will require all of those tags to be set for the instance to be included.
|
|
|
|
|
|
|
|
One practical use for tag filtering is when an GCE cluster contains many nodes that are not running
|
|
|
|
elasticsearch. In this case (particularly with high ping_timeout values) there is a risk that a new node's discovery
|
|
|
|
phase will end before it has found the cluster (which will result in it declaring itself master of a new cluster
|
|
|
|
with the same name - highly undesirable). Adding tag on elasticsearch GCE nodes and then filtering by that
|
|
|
|
tag will resolve this issue.
|
|
|
|
|
|
|
|
Add your tag when building the new instance:
|
|
|
|
|
|
|
|
```sh
|
2013-07-08 16:44:18 -04:00
|
|
|
gcutil --project=es-cloud addinstance myesnode1 \
|
|
|
|
--service_account_scope=compute-rw \
|
|
|
|
--persistent_boot_disk \
|
2013-06-28 09:44:52 -04:00
|
|
|
--tags=elasticsearch,dev
|
|
|
|
```
|
|
|
|
|
|
|
|
Then, define it in `elasticsearch.yml`:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
cloud:
|
|
|
|
gce:
|
|
|
|
project_id: es-cloud
|
|
|
|
zone: europe-west1-a
|
|
|
|
discovery:
|
|
|
|
type: gce
|
|
|
|
gce:
|
|
|
|
tags: elasticsearch, dev
|
|
|
|
```
|
|
|
|
|
2013-07-08 09:44:24 -04:00
|
|
|
Changing default transport port
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
By default, elasticsearch GCE plugin assumes that you run elasticsearch on 9300 default port.
|
|
|
|
But you can specify the port value elasticsearch is meant to use using google compute engine metadata `es_port`:
|
|
|
|
|
|
|
|
### When creating instance
|
|
|
|
|
|
|
|
Add `--metadata=es_port:9301` option:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# when creating first instance
|
2013-07-08 16:44:18 -04:00
|
|
|
gcutil --project=es-cloud addinstance myesnode1 \
|
|
|
|
--service_account_scope=compute-rw,storage-full \
|
|
|
|
--persistent_boot_disk \
|
|
|
|
--metadata=es_port:9301
|
2013-07-08 09:44:24 -04:00
|
|
|
|
|
|
|
# when creating an instance from an image
|
2014-01-29 05:21:45 -05:00
|
|
|
gcutil --project=es-cloud addinstance --image=elasticsearch-1-0-0-RC1 \
|
2013-07-08 09:44:24 -04:00
|
|
|
--kernel=projects/google/global/kernels/gce-v20130603 myesnode2 \
|
|
|
|
--zone europe-west1-a --machine_type f1-micro --service_account_scope=compute-rw \
|
|
|
|
--persistent_boot_disk --metadata=es_port:9301
|
|
|
|
```
|
|
|
|
|
|
|
|
### On a running instance
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# Get metadata fingerprint
|
2013-07-08 16:44:18 -04:00
|
|
|
gcutil --project=es-cloud getinstance myesnode1 \
|
|
|
|
--zone=europe-west1-a
|
2013-07-08 09:44:24 -04:00
|
|
|
+------------------------+---------------------------------------------------------------------------------------------------------+
|
|
|
|
| property | value |
|
|
|
|
+------------------------+---------------------------------------------------------------------------------------------------------+
|
|
|
|
| metadata | |
|
|
|
|
| fingerprint | 42WmSpB8rSM= |
|
|
|
|
+------------------------+---------------------------------------------------------------------------------------------------------+
|
|
|
|
|
|
|
|
# Use that fingerprint
|
2013-07-08 16:44:18 -04:00
|
|
|
gcutil --project=es-cloud setinstancemetadata myesnode1 \
|
|
|
|
--zone=europe-west1-a \
|
|
|
|
--metadata=es_port:9301 \
|
|
|
|
--fingerprint=42WmSpB8rSM=
|
2013-07-08 09:44:24 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2013-06-28 09:44:52 -04:00
|
|
|
Tips
|
|
|
|
----
|
|
|
|
|
|
|
|
If you don't want to repeat the project id each time, you can save it in `~/.gcutil.flags` file using:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
gcutil getproject --project=es-cloud --cache_flag_values
|
|
|
|
```
|
|
|
|
|
|
|
|
`~/.gcutil.flags` file now contains:
|
|
|
|
|
|
|
|
```
|
|
|
|
--project=es-cloud
|
|
|
|
```
|
|
|
|
|
2013-06-28 03:45:02 -04:00
|
|
|
License
|
|
|
|
-------
|
|
|
|
|
|
|
|
This software is licensed under the Apache 2 license, quoted below.
|
|
|
|
|
2014-01-29 05:21:45 -05:00
|
|
|
Copyright 2009-2014 Elasticsearch <http://www.elasticsearch.org>
|
2013-06-28 03:45:02 -04:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
|
|
use this file except in compliance with the License. You may obtain a copy of
|
|
|
|
the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
License for the specific language governing permissions and limitations under
|
|
|
|
the License.
|