Skip to content

Commit

Permalink
Merge pull request #18 from fralucch/patch-5
Browse files Browse the repository at this point in the history
Remove wrong options that fill connection pool
  • Loading branch information
primenzi committed Nov 5, 2018
2 parents 2a09cd2 + c047ce1 commit 694ed20
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions installation-guide/ka_inst_man_tomcat.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ We need to create two connection:
type="javax.sql.DataSource"
url="<JDBC URL>"
username="<user name>"
maxWait="-1"
maxActive="10"
maxIdle="1"
validationQuery="<validation query>"
Expand All @@ -51,8 +50,7 @@ We need to create two connection:
testOnReturn="true"
testWhileIdle="true"
timeBetweenEvictionRunsMillis="10000"
minEvictableIdleTimeMillis="60000"
factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" />
minEvictableIdleTimeMillis="60000" />
- ``jdbc/ds_cache``: Knowage cache, this must be an empty schema

Expand All @@ -66,7 +64,6 @@ We need to create two connection:
type="javax.sql.DataSource"
url="<JDBC URL>"
username="<user name>"
maxWait="-1"
maxActive="10"
maxIdle="1"
validationQuery="<validation query>"
Expand All @@ -76,8 +73,7 @@ We need to create two connection:
testOnReturn="true"
testWhileIdle="true"
timeBetweenEvictionRunsMillis="10000"
minEvictableIdleTimeMillis="60000"
factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" />
minEvictableIdleTimeMillis="60000" />
Connection to business data
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down

0 comments on commit 694ed20

Please sign in to comment.