Github user joewitt commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2138#discussion_r143280686
--- Diff:
nifi-nar-bundles/nifi-hive-bundle/nifi-hive-processors/src/main/java/org/apache/nifi/processors/hive/SelectHiveQL.java
---
@@ -290,6 +292,9 @@ public void process(final OutputStream out) throws
IOException {
}
}
+ // set query timeout
+ st.setQueryTimeout(queryTimeout);
--- End diff --
disregard what i said. matt pointed out that the code checks IF a timeout
was set and is non-zero. Based on that I think the way it was implemented is
awesome.
---