This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a change to branch support/nifi-1.x
in repository https://gitbox.apache.org/repos/asf/nifi.git
from 0ab0ba2b8a NIFI-3065 Corrected version to 1.23.0-SNAPSHOT for Process
Group Logging
new cb76a62a14 NIFI-3065 Corrected TestStandardLoggingContext for Java 8
new 756f9d0fdb NIFI-9206 Added RemoveRecordField Processor
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../nifi/record/path/ArrayIndexFieldValue.java | 14 +-
.../org/apache/nifi/record/path/FieldValue.java | 10 +
.../nifi/record/path/MapEntryFieldValue.java | 15 +-
.../nifi/record/path/RecordFieldRemover.java | 138 +++++
.../nifi/record/path/StandardFieldValue.java | 23 +
.../nifi/record/path/paths/ChildFieldPath.java | 27 +-
.../nifi/record/path/TestRecordFieldRemover.java | 84 +++
.../nifi/serialization/SimpleRecordSchema.java | 60 +-
.../apache/nifi/serialization/record/DataType.java | 10 +
.../nifi/serialization/record/MapRecord.java | 28 +-
.../apache/nifi/serialization/record/Record.java | 16 +
.../record/RecordFieldRemovalPath.java | 49 ++
.../nifi/serialization/record/RecordSchema.java | 22 +
.../serialization/record/type/ArrayDataType.java | 17 +
.../serialization/record/type/ChoiceDataType.java | 19 +
.../serialization/record/type/MapDataType.java | 17 +
.../serialization/record/type/RecordDataType.java | 27 +
.../nifi/serialization/TestSimpleRecordSchema.java | 166 +++++-
.../org/apache/nifi/accumulo/data/KeySchema.java | 17 +
.../TestJASN1RecordReaderWithComplexTypes.java | 16 +-
.../SchemaRegistryRecordSetWriter.java | 16 +-
.../nifi/logging/TestStandardLoggingContext.java | 6 +-
.../nifi-standard-processors/pom.xml | 321 ++++++-----
.../nifi/processors/standard/ForkRecord.java | 21 +-
.../processors/standard/RemoveRecordField.java | 138 +++++
.../services/org.apache.nifi.processor.Processor | 1 +
.../additionalDetails.html | 633 +++++++++++++++++++++
.../processors/standard/TestRemoveRecordField.java | 399 +++++++++++++
.../TestRemoveRecordField/input/address-array.json | 30 +
.../input/address-choice.json | 25 +
.../TestRemoveRecordField/input/bookshelf-map.json | 16 +
.../input/complex-person.json | 29 +
.../TestRemoveRecordField/input/name-choice.json | 10 +
.../input_schema/address-array.avsc | 52 ++
.../input_schema/address-choice.avsc | 51 ++
.../input_schema/bookshelf-map.avsc | 27 +
.../input_schema/complex-person.avsc | 1 +
.../input_schema/name-choice.avsc | 31 +
.../output/address-array-empty.json | 5 +
.../output/address-array-one-element-removed.json | 19 +
.../output/address-array-removed.json | 4 +
...ddress-array-zip-removed-from-all-elements.json | 23 +
...address-array-zip-removed-from-one-element.json | 26 +
...ddress-choice-letter-removed-from-building.json | 20 +
.../output/bookshelf-map-all-items-removed.json | 3 +
...kshelf-map-field-removed-from-all-elements.json | 13 +
...okshelf-map-field-removed-from-one-element.json | 16 +
.../output/bookshelf-map-one-item-removed.json | 12 +
.../complex-person-multiple-fields-removed.json | 23 +
.../output/complex-person-no-dateOfBirth.json | 29 +
...plex-person-no-workAddress-building-letter.json | 30 +
.../output/complex-person-no-workAddress.json | 22 +
.../output/complex-person.json | 31 +
.../output/name-choice-firstName-removed.json | 9 +
.../output_schema/address-array-field-removed.avsc | 1 +
.../output_schema/address-array-zip-removed.avsc | 1 +
.../output_schema/address-array.avsc | 1 +
...ddress-choice-letter-removed-from-building.avsc | 1 +
.../bookshelf-map-author-field-removed.avsc | 1 +
.../output_schema/bookshelf-map.avsc | 1 +
.../complex-person-multiple-fields-removed.avsc | 1 +
.../complex-person-no-dateOfBirth.avsc | 1 +
...plex-person-no-workAddress-building-letter.avsc | 1 +
.../complex-person-no-workAddress.avsc | 1 +
.../output_schema/complex-person.avsc | 1 +
.../name-choice-firstName-removed.avsc | 1 +
.../org/apache/nifi/json/JsonRecordSetWriter.java | 18 +-
67 files changed, 2670 insertions(+), 227 deletions(-)
create mode 100644
nifi-commons/nifi-record-path/src/main/java/org/apache/nifi/record/path/RecordFieldRemover.java
create mode 100644
nifi-commons/nifi-record-path/src/test/java/org/apache/nifi/record/path/TestRecordFieldRemover.java
create mode 100644
nifi-commons/nifi-record/src/main/java/org/apache/nifi/serialization/record/RecordFieldRemovalPath.java
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/RemoveRecordField.java
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/resources/docs/org.apache.nifi.processors.standard.RemoveRecordField/additionalDetails.html
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/java/org/apache/nifi/processors/standard/TestRemoveRecordField.java
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/input/address-array.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/input/address-choice.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/input/bookshelf-map.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/input/complex-person.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/input/name-choice.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/input_schema/address-array.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/input_schema/address-choice.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/input_schema/bookshelf-map.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/input_schema/complex-person.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/input_schema/name-choice.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/address-array-empty.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/address-array-one-element-removed.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/address-array-removed.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/address-array-zip-removed-from-all-elements.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/address-array-zip-removed-from-one-element.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/address-choice-letter-removed-from-building.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/bookshelf-map-all-items-removed.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/bookshelf-map-field-removed-from-all-elements.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/bookshelf-map-field-removed-from-one-element.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/bookshelf-map-one-item-removed.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/complex-person-multiple-fields-removed.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/complex-person-no-dateOfBirth.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/complex-person-no-workAddress-building-letter.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/complex-person-no-workAddress.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/complex-person.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output/name-choice-firstName-removed.json
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output_schema/address-array-field-removed.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output_schema/address-array-zip-removed.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output_schema/address-array.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output_schema/address-choice-letter-removed-from-building.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output_schema/bookshelf-map-author-field-removed.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output_schema/bookshelf-map.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output_schema/complex-person-multiple-fields-removed.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output_schema/complex-person-no-dateOfBirth.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output_schema/complex-person-no-workAddress-building-letter.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output_schema/complex-person-no-workAddress.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output_schema/complex-person.avsc
create mode 100644
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/resources/TestRemoveRecordField/output_schema/name-choice-firstName-removed.avsc