Created 05-17-2017 08:02 PM
Is there a way for Nifi to keep a DB connection open as it processes different incoming flowfiles? Or will the processor ExecuteSQL processor open/close the connection with every flowfile it processes?
Created 05-17-2017 08:31 PM
You mean other than using DBCPConnectionPool service? I think connection pooling is used to reuse the connection but connection is closed and returned to the pool.
Created 05-17-2017 08:31 PM
You mean other than using DBCPConnectionPool service? I think connection pooling is used to reuse the connection but connection is closed and returned to the pool.
Created 05-17-2017 08:46 PM
Thanks @mqureshi . I didn't realize ExecuteSQL used a connection pool.