grunt-esvm
Create elasticsearch clusters from grunt.
Last updated 8 years ago by spalger .
Apache-2.0 · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install grunt-esvm 
SYNC missed versions from official npm registry.

grunt-esvm

Start, run, and update elasticsearch clusters from grunt.

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-esvm --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-esvm');

The "esvm" task

Overview

In your project's Gruntfile, add a section named esvm to the data object passed into grunt.initConfig().

grunt.initConfig({
  esvm: {
    options: {
      // global esvm/libesvm options go here
    },
    clusterName: {
      options: {
        // clusterSpecific esvm/libesvm options go here
      }
    }
  }
});

Options

Find a complete list of the options available at https://github.com/simianhacker/libesvm#new-clusteroptions-version

options.quiet

Type: Boolean Default value: false

The only additional option that you can specify in grunt-esvm is quiet. This will prevent elasticsearch from logging to the console, and will simply start it up in the backgroun.

Usage Examples

Start up 3 nodes running elasticsearch version 1.4

grunt.initConfig({
  esvm: {
    options: {
      version: '1.4',
      nodes: 3,
      config: {
        cluster: {
          name: 'My Test Cluster'
        }
      }
    }
  }
});

Current Tags

  • 2.0.0-beta3                                ...           beta (10 years ago)
  • 3.2.12                                ...           latest (8 years ago)

48 Versions

  • 3.2.12                                ...           8 years ago
  • 3.2.11                                ...           9 years ago
  • 3.2.10                                ...           9 years ago
  • 3.2.9                                ...           9 years ago
  • 3.2.8                                ...           9 years ago
  • 3.2.7                                ...           9 years ago
  • 3.2.6                                ...           10 years ago
  • 3.2.5                                ...           10 years ago
  • 3.2.4                                ...           10 years ago
  • 3.2.3                                ...           10 years ago
  • 3.2.2                                ...           10 years ago
  • 3.2.1                                ...           10 years ago
  • 3.2.0                                ...           10 years ago
  • 3.1.1                                ...           10 years ago
  • 3.1.0                                ...           10 years ago
  • 3.0.4                                ...           10 years ago
  • 3.0.3                                ...           10 years ago
  • 3.0.2                                ...           10 years ago
  • 3.0.1                                ...           10 years ago
  • 3.0.0                                ...           10 years ago
  • 2.1.1                                ...           10 years ago
  • 2.1.0                                ...           10 years ago
  • 2.0.0                                ...           10 years ago
  • 2.0.0-beta3                                ...           10 years ago
  • 1.1.10                                ...           10 years ago
  • 2.0.0-beta2                                ...           10 years ago
  • 2.0.0-beta1                                ...           10 years ago
  • 1.1.9                                ...           10 years ago
  • 1.1.8                                ...           10 years ago
  • 1.1.7                                ...           11 years ago
  • 1.1.6                                ...           11 years ago
  • 1.1.5                                ...           11 years ago
  • 1.1.4                                ...           11 years ago
  • 1.1.3                                ...           11 years ago
  • 1.1.2                                ...           11 years ago
  • 1.1.1                                ...           11 years ago
  • 1.1.0                                ...           11 years ago
  • 1.0.1                                ...           11 years ago
  • 1.0.0                                ...           11 years ago
  • 0.3.5                                ...           11 years ago
  • 0.3.4                                ...           11 years ago
  • 0.3.3                                ...           11 years ago
  • 0.3.1                                ...           11 years ago
  • 0.3.0                                ...           11 years ago
  • 0.2.2                                ...           11 years ago
  • 0.2.1                                ...           11 years ago
  • 0.1.1                                ...           11 years ago
  • 0.1.0                                ...           11 years ago
Downloads
Today 0
This Week 11
This Month 13
Last Day 0
Last Week 5
Last Month 5
Dependencies (7)
Dev Dependencies (2)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |