Update readme with release dates

This commit is contained in:
David Pilato 2013-08-20 16:15:18 +02:00
parent 8c340535d2
commit 62cc54a7c8
1 changed files with 75 additions and 27 deletions

102
README.md
View File

@ -1,36 +1,86 @@
Mapper Attachments Type for ElasticSearch
=========================================
The mapper attachments plugin adds the `attachment` type to ElasticSearch using Tika.
The mapper attachments plugin adds the `attachment` type to ElasticSearch using [Apache Tika](http://lucene.apache.org/tika/).
In order to install the plugin, simply run: `bin/plugin -install elasticsearch/elasticsearch-mapper-attachments/1.8.0`.
------------------------------------------------------
| Attachment Mapper Plugin | ElasticSearch | Tika |
------------------------------------------------------
| 1.9.0-SNAPSHOT (master) | 0.90.3 -> master | 1.4 |
------------------------------------------------------
| 1.8.0 | 0.90.3 -> master | 1.2 |
------------------------------------------------------
| 1.7.0 | 0.90 -> 0.90.2 | 1.2 |
------------------------------------------------------
| 1.6.0 | 0.19 -> 0.20 | 1.2 |
------------------------------------------------------
| 1.5.0 | 0.19 -> 0.20 | 1.2 |
------------------------------------------------------
| 1.4.0 | 0.19 -> 0.20 | 1.1 |
------------------------------------------------------
| 1.3.0 | 0.19 -> 0.20 | 1.0 |
------------------------------------------------------
| 1.2.0 | 0.19 -> 0.20 | 1.0 |
------------------------------------------------------
| 1.1.0 | 0.19 -> 0.20 | |
------------------------------------------------------
| 1.0.0 | 0.18 | |
------------------------------------------------------
<table>
<thead>
<tr>
<td>Attachment Mapper Plugin</td>
<td>ElasticSearch</td>
<td>Tika</td>
<td>Release date</td>
</tr>
</thead>
<tbody>
<tr>
<td>1.9.0-SNAPSHOT (master)</td>
<td>0.90.3 -> master</td>
<td>1.4</td>
<td></td>
</tr>
<tr>
<td>1.8.0</td>
<td>0.90.3 -> master</td>
<td>1.2</td>
<td>07/08/2013</td>
</tr>
<tr>
<td>1.7.0</td>
<td>0.90 -> 0.90.2</td>
<td>1.2</td>
<td>26/02/2013</td>
</tr>
<tr>
<td>1.6.0</td>
<td>0.19 -> 0.20</td>
<td>1.2</td>
<td>28/09/2012</td>
</tr>
<tr>
<td>1.5.0</td>
<td>0.19 -> 0.20</td>
<td>1.2</td>
<td>19/09/2012</td>
</tr>
<tr>
<td>1.4.0</td>
<td>0.19 -> 0.20</td>
<td>1.1</td>
<td>25/03/2012</td>
</tr>
<tr>
<td>1.3.0</td>
<td>0.19 -> 0.20</td>
<td>1.0</td>
<td>07/03/2012</td>
</tr>
<tr>
<td>1.2.0</td>
<td>0.19 -> 0.20</td>
<td>1.0</td>
<td>15/02/2012</td>
</tr>
<tr>
<td>1.1.0</td>
<td>0.19 -> 0.20</td>
<td>0.10</td>
<td>07/02/2012</td>
</tr>
<tr>
<td>1.0.0</td>
<td>0.18</td>
<td>0.10</td>
<td>05/12/2011</td>
</tr>
</tbody>
</table>
The `attachment` type allows to index different "attachment" type field (encoded as `base64`), for example, microsoft office formats, open document formats, ePub, HTML, and so on (full list can be found [here](http://lucene.apache.org/tika/0.10/formats.html)).
The `attachment` type allows to index different "attachment" type field (encoded as `base64`), for example,
microsoft office formats, open document formats, ePub, HTML, and so on (full list can be found [here](http://tika.apache.org/1.4/formats.html)).
The `attachment` type is provided as a plugin extension. The plugin is a simple zip file that can be downloaded and placed under `$ES_HOME/plugins` location. It will be automatically detected and the `attachment` type will be added.
@ -112,8 +162,6 @@ By default, `100000` characters are extracted when indexing the content. This de
Note, this feature is support since `1.3.0` version.
The plugin uses [Apache Tika](http://lucene.apache.org/tika/) to parse attachments, so many formats are supported, listed [here](http://lucene.apache.org/tika/0.10/formats.html).
Metadata parsing error handling
-------------------------------