You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by jo...@apache.org on 2017/04/28 04:02:33 UTC

nifi git commit: NIFI-3756 This closes #1715. Update ConvertAvroToOrc documentation to note that processor does not support unions of nested data

Repository: nifi
Updated Branches:
  refs/heads/master d61f51932 -> 2664ea093


NIFI-3756 This closes #1715. Update ConvertAvroToOrc documentation to note that processor does not support unions of nested data

Signed-off-by: joewitt <jo...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/2664ea09
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/2664ea09
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/2664ea09

Branch: refs/heads/master
Commit: 2664ea093d7afa33a7bf3780ea8b84608ee7783c
Parents: d61f519
Author: Andrew Lim <an...@gmail.com>
Authored: Thu Apr 27 23:55:37 2017 -0400
Committer: joewitt <jo...@apache.org>
Committed: Fri Apr 28 00:02:03 2017 -0400

----------------------------------------------------------------------
 .../java/org/apache/nifi/processors/hive/ConvertAvroToORC.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/2664ea09/nifi-nar-bundles/nifi-hive-bundle/nifi-hive-processors/src/main/java/org/apache/nifi/processors/hive/ConvertAvroToORC.java
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-hive-bundle/nifi-hive-processors/src/main/java/org/apache/nifi/processors/hive/ConvertAvroToORC.java b/nifi-nar-bundles/nifi-hive-bundle/nifi-hive-processors/src/main/java/org/apache/nifi/processors/hive/ConvertAvroToORC.java
index b5233b8..073eb6c 100644
--- a/nifi-nar-bundles/nifi-hive-bundle/nifi-hive-processors/src/main/java/org/apache/nifi/processors/hive/ConvertAvroToORC.java
+++ b/nifi-nar-bundles/nifi-hive-bundle/nifi-hive-processors/src/main/java/org/apache/nifi/processors/hive/ConvertAvroToORC.java
@@ -70,7 +70,8 @@ import java.util.concurrent.atomic.AtomicReference;
 @CapabilityDescription("Converts an Avro record into ORC file format. This processor provides a direct mapping of an Avro record to an ORC record, such "
         + "that the resulting ORC file will have the same hierarchical structure as the Avro document. If an incoming FlowFile contains a stream of "
         + "multiple Avro records, the resultant FlowFile will contain a ORC file containing all of the Avro records.  If an incoming FlowFile does "
-        + "not contain any records, an empty ORC file is the output.")
+        + "not contain any records, an empty ORC file is the output. NOTE: Many Avro datatypes (collections, primitives, and unions of primitives, e.g.) can "
+        + "be converted to ORC, but unions of collections and other complex datatypes may not be able to be converted to ORC.")
 @WritesAttributes({
         @WritesAttribute(attribute = "mime.type", description = "Sets the mime type to application/octet-stream"),
         @WritesAttribute(attribute = "filename", description = "Sets the filename to the existing filename with the extension replaced by / added to by .orc"),