All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.alexcojocaru.mojo.elasticsearch.v2.step.PostStartClusterSequence Maven / Gradle / Ivy

Go to download

A Maven plugin to run a single node Elasticsearch cluster during the integration test phase of a build

There is a newer version: 6.28
Show newest version
package com.github.alexcojocaru.mojo.elasticsearch.v2.step;

/**
 * Combines all steps to execute after the ES instance has started.
 * 
 * @author Alex Cojocaru
 */
public class PostStartClusterSequence
        extends DefaultClusterStepSequence
{

    public PostStartClusterSequence()
    {
        add(new WaitToStartClusterStep());
        add(new DisableIndexReplicationStep());
        add(new BootstrapClusterStep());
        add(new BlockProcessExecutionStep());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy