Class JoinProcessor
Joins each element of an array into a single string using a separator character between each element. Throws an error when the field is not an array.
Inherited Members
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public class JoinProcessor : ProcessorBase, IJoinProcessor, IProcessor
Properties
| Edit this page View SourceField
The field to be joined
Declaration
public Field Field { get; set; }
Property Value
Type | Description |
---|---|
Field |
Name
Declaration
protected override string Name { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
| Edit this page View SourceSeparator
The separator character
Declaration
public string Separator { get; set; }
Property Value
Type | Description |
---|---|
string |
TargetField
The field to assign the joined value to, by default field is updated in-place
Declaration
public Field TargetField { get; set; }
Property Value
Type | Description |
---|---|
Field |