Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 653 Bytes

2010-05-27-0.8.0-released.textile

File metadata and controls

23 lines (18 loc) · 653 Bytes
layout title cat author nick
blogpost
0.8.0 Released
blog
Shay Banon
kimchy

ElasticSearch version 0.8.0 has just been released. You can download it here. This release includes several bug fixes and memory footprint improvements, and one major feature, Hadoop integration. This allows to use Hadoop HDFS as elasticsearch gateway storage, and enabling it is as simple as:

Installing the hadoop plugin using bin/plugin -install hadoop.

Changing the configuration to include:

gateway:
    type: hdfs
    hdfs:
        uri: hdfs://host:port
        path: path/to/folder

-shay.banon