-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Closed
Labels
:Data Management/Ingest NodeExecution or management of Ingest Pipelines including GeoIPExecution or management of Ingest Pipelines including GeoIP>featurehelp wantedadoptmeadoptme
Description
I wish there was a way to do some very basic conditional pipeline actions without going straight to scripts. For example, run this pipeline only if this field exists. I don't want to have to specify a failure action when a field doesn't exist....
var response = await Configuration.Client.PutPipelineAsync(Pipeline, d => d
.Processors(p => p
.Lowercase<Employee>(l => l.Field(f => f.Name))
.Trim<Employee>(t => t.Field(f => f.Name))
).OnFailure(of => of.Set<Employee>(s => s.Field(f => f.Name).Value(String.Empty))));markdav, willemdh and IzakMarais
Metadata
Metadata
Assignees
Labels
:Data Management/Ingest NodeExecution or management of Ingest Pipelines including GeoIPExecution or management of Ingest Pipelines including GeoIP>featurehelp wantedadoptmeadoptme