What is the best practice for Max Wait (ms) value in JDBC Connection Configuration? JDBC
I am executing 2 types of tests:
- 20 loops for each number of threads - to get max Throupught
- 30min runtime for each number of Threads - to get Response time
With Max Wait = 10000ms I can execute JDBC request with 10,20,30,40,60 and 80 Threads without an error. With Max Wait = 20000ms I can go higher and execute with 100, 120, 140 Threads without an error. It seems to be logical behaviour.
Now question. Can I increase Max Wait value as desired? Is it correct way how to get more test results? Should I stop testing and do not increase number of Threads if any error occur in some Report? I got e.g. 0.06% errors from 10000 samples. Is this stop for my testing? Thanks.