Reputation: 2788
is it possible to reload transaction timeout settings without restarting JVM ?
Upvotes: 0
Views: 301
Reputation: 2788
based on @kurtcebe's answer. below commands will not reload settings but will apply settings on the runtime
set ts [$AdminControl completeObjectName cell=mycell,node=mynode,
process=server1,type=TransactionService,*]
$AdminControl setAttributes $ts {{clientInactivityTimeout 30}
{totalTranLifetimeTimeout 180}}
Upvotes: 0
Reputation: 11344
I don't believe that this can be done. This affects every single application that runs on a JVM so I strongly believe this will not work without restarting the JVM. kurtcebe's suggestion is definitely a way to test and make some observation(s).
Upvotes: 1