Apache nifi ApacheNIFI-Version0.5.0-ExecuteSQL-org.Apache.avro.SchemaParseException:空名称

Apache nifi ApacheNIFI-Version0.5.0-ExecuteSQL-org.Apache.avro.SchemaParseException:空名称,apache-nifi,Apache Nifi,使用Nifi版本0.5.0并遵循此处指出的所有步骤 我仍然收到相同的错误“org.apache.avro.SchemaParseException:空名称” 我的流量是 Generate Flow File > Fetch File -> Extract Text (here the value for the WHERE clause is exposed as a property "property1")> ExecuteSQL (Oracle DB) -> Pu

使用Nifi版本0.5.0并遵循此处指出的所有步骤

我仍然收到相同的错误“org.apache.avro.SchemaParseException:空名称”

我的流量是

Generate Flow File > Fetch File -> Extract Text (here the value for the WHERE clause is exposed as a property "property1")> ExecuteSQL (Oracle DB) -> PutFile (results of the query)
查询在Oracle数据库中执行良好

SELECT field1
FROM table
WHERE field1= '${property1}'

我遇到了死胡同,任何帮助都将不胜感激

这是0.5.x中的一个bug,是从0.4.x的回归。它已在中捕获,并已在即将发布的0.6.0版本中修复。

谢谢Matt!这很有帮助,我将尝试下载0.4.1并仔细检查