0
votes

Is it possible to do impala DML operations within NiFi?

I have set up a DBCPConnectionPool that connects to impala and I can do select statements fine with the ExecuteSQL processor.

Now I'm wondering how (if possible) to do the DDL statement of

Alter Table "X" recover partitions;

within Apache NiFi

1

1 Answers

1
votes

You should be able to do DML/DDL statements using the PutSQL processor. ExecuteSQL is for statements/queries that return result set(s), PutSQL is for statements (INSERT, DML, DDL) that do not return result sets.