I have a very peculiar problem.
For my clover ETL graphs , due to language support, i need to keep dbconnection as threadSafe=false in config properties file
However,this is causing a graph to look for a new DB connection everytime.
Now my graph has different phases, my doubt is
- Does clover creates a new connection for each phase’s db request - (As threadsafe=false, i think it should)
- If it does, then is there a way to define the graph as threadSafe at phase level ? i.e. It may look for new DB connection when i run different graphs, but for a single graph for each phase it uses the same DB connection.