Hey,
I am using nifi to load data from hdfs to impala table.
I am using ExecuteSQL with the following command:
LOAD DATA INPATH '/user/nifi/20211115_nifi_test' INTO TABLE arcsight.`20211130_nifi_test` PARTITION (year=${year:toString()}, month=${month:toString()}, day=${day:toString()})
And I am getting the following error:
AnalysisException: Value of partition spec (column=year) has incompatible type: 'SMALLINT'. Expected type: 'STRING'
Anyone can help?