Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

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!