Skip to content

Commit

Permalink
2.4.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaiera committed Nov 18, 2016
1 parent 7c69fdc commit 37795a4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ ES-Hadoop 2.0.x and 2.1.x are compatible with Elasticsearch __1.X__ *only*

## Installation

### Stable Release (currently `2.4.0`)
### Stable Release (currently `2.4.1`)
Available through any Maven-compatible tool:

```xml
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-hadoop</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>
</dependency>
```
or as a stand-alone [ZIP](http://www.elastic.co/downloads/hadoop).
Expand All @@ -35,7 +35,7 @@ Grab the latest nightly build from the [repository](http://oss.sonatype.org/cont
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-hadoop</artifactId>
<version>2.4.1.BUILD-SNAPSHOT</version>
<version>2.4.2.BUILD-SNAPSHOT</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions docs/src/reference/asciidoc/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
:ey: Elasticsearch on YARN
:ref: http://www.elastic.co/guide/en/elasticsearch/reference/2.0
:description: Reference documentation of {eh}
:ver: 2.4.0
:ver-d: 2.4.1.BUILD-SNAPSHOT
:es-v: 2.4.0
:ver: 2.4.1
:ver-d: 2.4.2.BUILD-SNAPSHOT
:es-v: 2.4.1
:sp-v: 1.6.1
:st-v: 0.9.6
:pg-v: 0.15.0
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ groovyVersion = 2.4.4
# --------------------
# Project wide version
# --------------------
version=2.4.1.BUILD.SNAPSHOT
version=2.4.1
8 changes: 4 additions & 4 deletions repository-hdfs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,18 @@ Security is hard.
While efforts like [these](https://github.com/elastic/elasticsearch/pull/14108) help with per-plugin permissions, the ultimate goal is having a secure Elasticsearch install. Unfortunately Hadoop (especially 2.x) requires _dangerous_ permissions such as _execute_ on _all_ files (triggered during even [basic initialization](https://github.com/apache/hadoop/blob/772ea7b41b06beaa1f4ac4fa86eac8d6e6c8cd36/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/Shell.java#L728). Permissions like this (not to mention the shell execution) are simply too _dangerous_ and security is significantly affected.
Where possible, we try to find the common ground and have the code still running securely with hacks like [these](https://github.com/elastic/elasticsearch/blob/105411060c44cd796187068abe9df6168ff9253b/core/src/main/java/org/elasticsearch/bootstrap/ESPolicy.java#L88).

As the above is addressed only in master (potentially the upcoming Elasticsearch 2.3), in the meantime users need to be aware of the current situation and act accordingly. That is, understand that by using HDFS plugin the Java Security
As the above is addressed only in master (now in Elasticsearch 5.0), in the meantime users need to be aware of the current situation and act accordingly. That is, understand that by using HDFS plugin the Java Security
Manager is disabled.

### Node restart
_After_ installing the plugin on _every_ Elasticsearch node, be sure to _restart_ it. This applies to _all_ nodes on which the plugins have been installed - without restarting the nodes, the plugin will not function properly.

### Stable version
As with any other plugin, simply run:
`bin/plugin install elasticsearch/elasticsearch-repository-hdfs/2.2.0`
`bin/plugin install elasticsearch/elasticsearch-repository-hdfs/2.4.1`

When looking for `light` or `hadoop2` artifacts use:
`bin/plugin install elasticsearch/elasticsearch-repository-hdfs/2.2.0-<classifier>`
`bin/plugin install elasticsearch/elasticsearch-repository-hdfs/2.4.1-<classifier>`

### Development Snapshot
To install the latest snapshot, please install the plugin manually using:
Expand All @@ -69,7 +69,7 @@ Or grab the latest nightly build from the [repository](http://oss.sonatype.org/c
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-repository-hdfs</artifactId>
<version>2.4.1.BUILD-SNAPSHOT</version>
<version>2.4.2.BUILD-SNAPSHOT</version>
</dependency>
```

Expand Down

0 comments on commit 37795a4

Please sign in to comment.