Uses of Interface
org.elasticsearch.ingest.Processor
-
Packages that use Processor Package Description org.elasticsearch.ingest -
-
Uses of Processor in org.elasticsearch.ingest
Subinterfaces of Processor in org.elasticsearch.ingest Modifier and Type Interface Description interfaceWrappingProcessorA srapping processor is one that encapsulates an inner processor, or a processor that the wrapped processor enacts upon.Classes in org.elasticsearch.ingest that implement Processor Modifier and Type Class Description classAbstractProcessorAn Abstract Processor that holds a processorTag field to be used by other processors.classCompoundProcessorA Processor that executes a list of other "processors".classConditionalProcessorclassPipelineProcessorclassTrackingResultProcessorProcessor to be used within Simulate API to keep track of processors executed in pipeline.Methods in org.elasticsearch.ingest with type parameters of type Processor Modifier and Type Method Description <P extends Processor>
List<P>IngestService. getProcessorsInPipeline(String pipelineId, Class<P> clazz)Gets all the Processors of the given type from within a Pipeline.Methods in org.elasticsearch.ingest that return Processor Modifier and Type Method Description ProcessorProcessor.Factory. create(Map<String,Processor.Factory> processorFactories, String tag, Map<String,Object> config)Creates a processor based on the specified map of maps config.ProcessorConditionalProcessor. getInnerProcessor()ProcessorWrappingProcessor. getInnerProcessor()Method for retrieving the inner processor from a wrapped processor.static ProcessorConfigurationUtils. readProcessor(Map<String,Processor.Factory> processorFactories, ScriptService scriptService, String type, Object config)static ProcessorConfigurationUtils. readProcessor(Map<String,Processor.Factory> processorFactories, ScriptService scriptService, String type, Map<String,Object> config)Methods in org.elasticsearch.ingest that return types with arguments of type Processor Modifier and Type Method Description List<Processor>Pipeline. flattenAllProcessors()Flattens the normal and on failure processors into a single list.List<Processor>CompoundProcessor. flattenProcessors()List<Processor>CompoundProcessor. getOnFailureProcessors()List<Processor>Pipeline. getOnFailureProcessors()Unmodifiable list containing each on_failure processor that operates on the data in case of exception thrown in pipeline processorsList<Processor>CompoundProcessor. getProcessors()List<Processor>Pipeline. getProcessors()Unmodifiable list containing each processor that operates on the data.static List<Processor>ConfigurationUtils. readProcessorConfigs(List<Map<String,Object>> processorConfigs, ScriptService scriptService, Map<String,Processor.Factory> processorFactories)Constructors in org.elasticsearch.ingest with parameters of type Processor Constructor Description CompoundProcessor(Processor... processor)Constructor parameters in org.elasticsearch.ingest with type arguments of type Processor Constructor Description CompoundProcessor(boolean ignoreFailure, List<Processor> processors, List<Processor> onFailureProcessors)
-