![JAR search and dependency download from the Maven repository](/logo.png)
com.inin.analytics.elasticsearch.example.ExampleIndexingReducerImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-lambda Show documentation
Show all versions of elasticsearch-lambda Show documentation
Framework For Lambda Architecture on Elasticsearch
package com.inin.analytics.elasticsearch.example;
import com.inin.analytics.elasticsearch.BaseESReducer;
public class ExampleIndexingReducerImpl extends BaseESReducer {
/**
* Provide the JSON contents of the index template. This is your hook for configuring ElasticSearch.
*
* http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-templates.html
*/
public String getTemplate() {
return null;
}
/**
* Return a name for the index template.
*/
@Override
public String getTemplateName() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy