Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

NiFi: PutHiveQL processor properties

avatar
Expert Contributor

Per documentation, the type of each Parameter is to expected to an integer value that represents the JDBC Type.

hiveql.args.N.type

What are the JDBC numeral type value for the following data types and can you please advise where the corresponding documentation can be found?

INTEGER

TIMESTAMP

DOUBLE

LONGVARCHAR

1 ACCEPTED SOLUTION

avatar
Master Guru

There is a table for JDBC type values here, for your data types they are as follows:

TypeValue
INTEGER4
TIMESTAMP93
DOUBLE8
LONGVARCHAR-1

View solution in original post

2 REPLIES 2

avatar
Master Guru

There is a table for JDBC type values here, for your data types they are as follows:

TypeValue
INTEGER4
TIMESTAMP93
DOUBLE8
LONGVARCHAR-1

avatar
Expert Contributor

Awesome support, thanks!