I could not find documentation on the configuration settings idle_connection_timeout available under Configuration->indexserver.ini->session in hana studio. If someone know where to find such documentation please post back.
I have a situation where this settings is causing issue and would like to know how safe it is to disable it (to set it at -1 like idle_connection_time_application_hdbstudio I guess).
The scenario is that I have an appliation that connect to multiple schemas using only 1 database user. After a connection to the database, I set the current schema to the target schema and expect the connection to stay in that schema. The database connection stay open but sometimes it won't be used for a while. What happened is that hana closed the connection or put it in archive after the idle time so when the connection is to be used, even if it is recreated, it is not in the correct schema and the sql query will fail.
One solution would be to disable this idle connection timeout. I just need the documentation to know if there are other ways to close it.
Tests : I disable the idle_connection_timeout.
If I open the program and it connect to the database then kill it, the connection will be closed in the database.
If I open the program then disconnect the network, will the connection be also killed automatically or the idle_timeout will apply and the connection will stay there stuck for the live of the database ?