Commit Graph

35 Commits

Author SHA1 Message Date
jdyer09 0ef9028134 Update README.md for zone clarity 2014-11-10 09:51:42 +01:00
David Pilato 09f8301848 Create branch es-1.4 for elasticsearch 1.4.0 2014-09-15 14:37:42 +02:00
David Pilato 7b4fa1f0a0 update documentation with release 2.3.0 2014-08-06 23:14:47 +02:00
Simon (Big Chief) Morley 7018d04b78 Update to elasticsearch 1.4.0
Closes #34.

(cherry picked from commit e149f70)
2014-08-06 23:08:58 +02:00
Simon (Big Chief) Morley 8e8e76fa75 Add multiple zones support
Closes #27.
2014-08-06 23:02:25 +02:00
David Pilato 51c10c18ba Tests: refactor tests
We need to simplify a bit our tests.
Also, we need to mark as `@Ignore` tests as they break now due to some cluster controls after each test in elasticsearch test infra.

See [org.elasticsearch.test.ElasticsearchIntegrationTest#ensureClusterSizeConsistency()](https://github.com/elasticsearch/elasticsearch/blob/v1.3.1/src/test/java/org/elasticsearch/test/ElasticsearchIntegrationTest.java#L974-L979)

Closes #33.
2014-08-06 22:51:21 +02:00
Simon (Big Chief) Morley 0db6959f71 Included notes about compute engine permissions
Closes #25.
Closes #26.
2014-08-05 16:09:27 +02:00
David Pilato b45a05f2fb fix typo 2014-08-05 14:25:07 +02:00
David Pilato 524ebda257 Docs: make the welcome page more obvious
Closes #31.

(cherry picked from commit ab3cde3)
2014-08-05 14:23:41 +02:00
David Pilato 81742c3c1d Update to elasticsearch 1.3.0
Closes #24.

(cherry picked from commit 9c62411)
2014-06-15 23:31:42 +02:00
David Pilato 37474b43d6 Update instructions for GCE
Some tools have changed on GCE platform.
We need to update the documentation.

Closes #23.
2014-06-15 11:00:16 +02:00
David Pilato 314b146fd5 Create branch es-1.2 2014-04-29 21:59:10 +02:00
David Pilato 290fb027c3 Upgrade to GCE v1-rev15-1.18.0-rc API
Closes #19.
2014-04-14 23:36:24 +02:00
David Pilato a181b711f2 Fix typo 2014-03-26 20:38:37 +01:00
David Pilato 3643233670 Update to elasticsearch master 2014-03-26 20:25:28 +01:00
David Pilato c5a03cb448 Create branches according to elasticsearch versions
We create branches:

* es-0.90 for elasticsearch 0.90
* es-1.0 for elasticsearch 1.0
* es-1.1 for elasticsearch 1.1
* master for elasticsearch master

We also check that before releasing we don't have a dependency to an elasticsearch SNAPSHOT version.

Add links to each version in documentation
(cherry picked from commit a51926c)
2014-03-26 19:58:45 +01:00
David Pilato cbca1c4838 prepare for next development iteration 2014-03-12 12:19:17 +01:00
David Pilato cba743df3f prepare release elasticsearch-cloud-gce-2.0.0 2014-03-12 12:14:09 +01:00
David Pilato 91bc7f8aff Add plugin release semi-automatic script
Closes #13.
2014-03-11 17:39:10 +01:00
David Pilato 7fa9d94319 Update with 1.2.0 release 2014-01-29 11:46:42 +01:00
David Pilato 4f11862cce Update to GCE API 1.17.0-rc
Seen in #9, Google changed its APIs. We need to update as it previous version causes a `404` error.

Closes #12.
Closes #9.
2014-01-29 11:21:45 +01:00
David Pilato b2247c977a prepare release elasticsearch-cloud-gce-2.0.0.RC1 2014-01-15 19:07:03 +01:00
David Pilato cc786941f4 update headers 2014-01-13 14:57:16 +01:00
David Pilato 866880e26d Move version table to markdown format 2013-08-10 18:43:13 +02:00
David Pilato 1930c09eb2 prepare release elasticsearch-cloud-gce-1.1.0 2013-08-09 10:00:44 +02:00
David Pilato 27521f61f3 Fix version number in `plugin -install` command 2013-07-23 13:41:48 +02:00
David Pilato e0a99df201 prepare release elasticsearch-cloud-gce-1.0.0 2013-07-23 13:17:44 +02:00
David Pilato 6c0cc5f678 Make documentation more readable 2013-07-08 22:44:18 +02:00
David Pilato aaa4768131 Add support for metadata `es_port`. If you run on a specific port, it will indicate it to GCE plugin. By default, `9300` will be used. 2013-07-08 15:44:24 +02:00
David Pilato 1602d82186 Move all discovery process to GceUnicastHostsProvider
We want to be able to rebuild the full list of existing nodes each time we need it so we don't want to have a fixed list of nodes.
2013-07-01 17:56:41 +02:00
David Pilato db86c13a4e Update documentation.
Thanks to @spinscale
2013-06-28 16:29:40 +02:00
David Pilato e734028ae2 Google service account name is not required 2013-06-28 16:27:13 +02:00
David Pilato e3b08e3481 Update documentation.
Thanks to @spinscale
2013-06-28 16:25:19 +02:00
David Pilato 703c2b3e82 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
gcutil --project=es-cloud addinstance myesnode1 --service_account_scope=compute-rw --persistent_boot_disk \
       --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
```
Closes #2.
2013-06-28 15:44:52 +02:00
David Pilato 5e14147991 Add cloud discovery for google compute engine
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

Closes #1.
2013-06-28 09:45:02 +02:00