-
Notifications
You must be signed in to change notification settings - Fork 25k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ingest: Add ignore_missing property to foreach filter (#22147) #31578
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,6 +46,24 @@ public void testCreate() throws Exception { | |
assertThat(forEachProcessor, Matchers.notNullValue()); | ||
assertThat(forEachProcessor.getField(), equalTo("_field")); | ||
assertThat(forEachProcessor.getProcessor(), Matchers.sameInstance(processor)); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can we add an assertion that ignore_missing is false by default? |
||
assertFalse(forEachProcessor.isIgnoreMissing()); | ||
} | ||
|
||
public void testSetIgnoreMissing() throws Exception { | ||
Processor processor = new TestProcessor(ingestDocument -> { }); | ||
Map<String, Processor.Factory> registry = new HashMap<>(); | ||
registry.put("_name", (r, t, c) -> processor); | ||
ForEachProcessor.Factory forEachFactory = new ForEachProcessor.Factory(); | ||
|
||
Map<String, Object> config = new HashMap<>(); | ||
config.put("field", "_field"); | ||
config.put("processor", Collections.singletonMap("_name", Collections.emptyMap())); | ||
config.put("ignore_missing", true); | ||
ForEachProcessor forEachProcessor = forEachFactory.create(registry, null, config); | ||
assertThat(forEachProcessor, Matchers.notNullValue()); | ||
assertThat(forEachProcessor.getField(), equalTo("_field")); | ||
assertThat(forEachProcessor.getProcessor(), Matchers.sameInstance(processor)); | ||
assertTrue(forEachProcessor.isIgnoreMissing()); | ||
} | ||
|
||
public void testCreateWithTooManyProcessorTypes() throws Exception { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,22 +19,22 @@ | |
|
||
package org.elasticsearch.ingest.common; | ||
|
||
import org.elasticsearch.ingest.CompoundProcessor; | ||
import org.elasticsearch.ingest.IngestDocument; | ||
import org.elasticsearch.ingest.Processor; | ||
import org.elasticsearch.ingest.TestProcessor; | ||
import org.elasticsearch.ingest.TestTemplateService; | ||
import org.elasticsearch.script.TemplateScript; | ||
import org.elasticsearch.test.ESTestCase; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.Collections; | ||
import java.util.HashMap; | ||
import java.util.List; | ||
import java.util.Locale; | ||
import java.util.Map; | ||
import org.elasticsearch.ingest.CompoundProcessor; | ||
import org.elasticsearch.ingest.IngestDocument; | ||
import org.elasticsearch.ingest.Processor; | ||
import org.elasticsearch.ingest.TestProcessor; | ||
import org.elasticsearch.ingest.TestTemplateService; | ||
import org.elasticsearch.script.TemplateScript; | ||
import org.elasticsearch.test.ESTestCase; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done :), sorry about that |
||
|
||
import static org.elasticsearch.ingest.IngestDocumentMatcher.assertIngestDocument; | ||
import static org.hamcrest.Matchers.equalTo; | ||
|
||
public class ForEachProcessorTests extends ESTestCase { | ||
|
@@ -49,7 +49,8 @@ public void testExecute() throws Exception { | |
); | ||
|
||
ForEachProcessor processor = new ForEachProcessor( | ||
"_tag", "values", new UppercaseProcessor("_tag", "_ingest._value", false, "_ingest._value") | ||
"_tag", "values", new UppercaseProcessor("_tag", "_ingest._value", false, "_ingest._value"), | ||
false | ||
); | ||
processor.execute(ingestDocument); | ||
|
||
|
@@ -69,7 +70,7 @@ public void testExecuteWithFailure() throws Exception { | |
throw new RuntimeException("failure"); | ||
} | ||
}); | ||
ForEachProcessor processor = new ForEachProcessor("_tag", "values", testProcessor); | ||
ForEachProcessor processor = new ForEachProcessor("_tag", "values", testProcessor, false); | ||
try { | ||
processor.execute(ingestDocument); | ||
fail("exception expected"); | ||
|
@@ -89,7 +90,8 @@ public void testExecuteWithFailure() throws Exception { | |
}); | ||
Processor onFailureProcessor = new TestProcessor(ingestDocument1 -> {}); | ||
processor = new ForEachProcessor( | ||
"_tag", "values", new CompoundProcessor(false, Arrays.asList(testProcessor), Arrays.asList(onFailureProcessor)) | ||
"_tag", "values", new CompoundProcessor(false, Arrays.asList(testProcessor), Arrays.asList(onFailureProcessor)), | ||
false | ||
); | ||
processor.execute(ingestDocument); | ||
assertThat(testProcessor.getInvokedCounter(), equalTo(3)); | ||
|
@@ -109,7 +111,7 @@ public void testMetaDataAvailable() throws Exception { | |
id.setFieldValue("_ingest._value.type", id.getSourceAndMetadata().get("_type")); | ||
id.setFieldValue("_ingest._value.id", id.getSourceAndMetadata().get("_id")); | ||
}); | ||
ForEachProcessor processor = new ForEachProcessor("_tag", "values", innerProcessor); | ||
ForEachProcessor processor = new ForEachProcessor("_tag", "values", innerProcessor, false); | ||
processor.execute(ingestDocument); | ||
|
||
assertThat(innerProcessor.getInvokedCounter(), equalTo(2)); | ||
|
@@ -137,7 +139,7 @@ public void testRestOfTheDocumentIsAvailable() throws Exception { | |
ForEachProcessor processor = new ForEachProcessor( | ||
"_tag", "values", new SetProcessor("_tag", | ||
new TestTemplateService.MockTemplateScript.Factory("_ingest._value.new_field"), | ||
(model) -> model.get("other"))); | ||
(model) -> model.get("other")), false); | ||
processor.execute(ingestDocument); | ||
|
||
assertThat(ingestDocument.getFieldValue("values.0.new_field", String.class), equalTo("value")); | ||
|
@@ -174,7 +176,7 @@ public String getTag() { | |
"_index", "_type", "_id", null, null, null, Collections.singletonMap("values", values) | ||
); | ||
|
||
ForEachProcessor processor = new ForEachProcessor("_tag", "values", innerProcessor); | ||
ForEachProcessor processor = new ForEachProcessor("_tag", "values", innerProcessor, false); | ||
processor.execute(ingestDocument); | ||
@SuppressWarnings("unchecked") | ||
List<String> result = ingestDocument.getFieldValue("values", List.class); | ||
|
@@ -199,7 +201,7 @@ public void testModifyFieldsOutsideArray() throws Exception { | |
"_tag", "values", new CompoundProcessor(false, | ||
Collections.singletonList(new UppercaseProcessor("_tag_upper", "_ingest._value", false, "_ingest._value")), | ||
Collections.singletonList(new AppendProcessor("_tag", template, (model) -> (Collections.singletonList("added")))) | ||
)); | ||
), false); | ||
processor.execute(ingestDocument); | ||
|
||
List result = ingestDocument.getFieldValue("values", List.class); | ||
|
@@ -225,7 +227,7 @@ public void testScalarValueAllowsUnderscoreValueFieldToRemainAccessible() throws | |
|
||
TestProcessor processor = new TestProcessor(doc -> doc.setFieldValue("_ingest._value", | ||
doc.getFieldValue("_source._value", String.class))); | ||
ForEachProcessor forEachProcessor = new ForEachProcessor("_tag", "values", processor); | ||
ForEachProcessor forEachProcessor = new ForEachProcessor("_tag", "values", processor, false); | ||
forEachProcessor.execute(ingestDocument); | ||
|
||
List result = ingestDocument.getFieldValue("values", List.class); | ||
|
@@ -258,7 +260,7 @@ public void testNestedForEach() throws Exception { | |
doc -> doc.setFieldValue("_ingest._value", doc.getFieldValue("_ingest._value", String.class).toUpperCase(Locale.ENGLISH)) | ||
); | ||
ForEachProcessor processor = new ForEachProcessor( | ||
"_tag", "values1", new ForEachProcessor("_tag", "_ingest._value.values2", testProcessor)); | ||
"_tag", "values1", new ForEachProcessor("_tag", "_ingest._value.values2", testProcessor, false), false); | ||
processor.execute(ingestDocument); | ||
|
||
List result = ingestDocument.getFieldValue("values1.0.values2", List.class); | ||
|
@@ -270,4 +272,16 @@ public void testNestedForEach() throws Exception { | |
assertThat(result.get(1), equalTo("JKL")); | ||
} | ||
|
||
public void testIgnoreMissing() throws Exception { | ||
IngestDocument originalIngestDocument = new IngestDocument( | ||
"_index", "_type", "_id", null, null, null, Collections.emptyMap() | ||
); | ||
IngestDocument ingestDocument = new IngestDocument(originalIngestDocument); | ||
TestProcessor testProcessor = new TestProcessor(doc -> {}); | ||
ForEachProcessor processor = new ForEachProcessor("_tag", "_ingest._value", testProcessor, true); | ||
processor.execute(ingestDocument); | ||
assertIngestDocument(originalIngestDocument, ingestDocument); | ||
assertThat(testProcessor.getInvokedCounter(), equalTo(0)); | ||
} | ||
|
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this method added? It doesn't seem to add anything, other than being checked in tests, but the tests are directly setting it when constructing the processor.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rjernst tbh. I only added this since the GeoIP processor had the same getter (as did all other fields in this processor) so I just stuck with the style. You're right though, this is effectively test only code leaking in :(