This is an automated email from the ASF dual-hosted git repository.
michaelsmith pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
The following commit(s) were added to refs/heads/master by this push:
new 12a2a04bc IMPALA-13664: Lower datanucleus.connectionPool.maxPoolSize
to 20
12a2a04bc is described below
commit 12a2a04bc88846c394b823f19ed6d52273c303b9
Author: Riza Suminto <[email protected]>
AuthorDate: Fri Jan 10 07:05:12 2025 -0800
IMPALA-13664: Lower datanucleus.connectionPool.maxPoolSize to 20
IMPALA-13620 increase datanucleus.connectionPool.maxPoolSize of HMS from
10 to 30. When running all tests in single node, this seem to exhaust
all 100 of postgresql max_connection and interfere with
authorization/test_ranger.py and query_test/test_ext_data_sources.py.
This patch lower datanucleus.connectionPool.maxPoolSize to 20.
Testing:
- Pass exhaustive tests in single node.
Change-Id: I98eb27cbd141d5458a26d05d1decdbc7f918abd4
Reviewed-on: http://gerrit.cloudera.org:8080/22326
Reviewed-by: Impala Public Jenkins <[email protected]>
Tested-by: Impala Public Jenkins <[email protected]>
---
fe/src/test/resources/hive-site.xml.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fe/src/test/resources/hive-site.xml.py
b/fe/src/test/resources/hive-site.xml.py
index 137b55d28..3b241013d 100644
--- a/fe/src/test/resources/hive-site.xml.py
+++ b/fe/src/test/resources/hive-site.xml.py
@@ -220,7 +220,7 @@ CONFIG.update({
'datanucleus.autoCreateSchema': 'false',
'datanucleus.fixedDatastore': 'false',
'datanucleus.metadata.validate': 'false',
- 'datanucleus.connectionPool.maxPoolSize': 30,
+ 'datanucleus.connectionPool.maxPoolSize': 20,
'javax.jdo.option.ConnectionUserName': 'hiveuser',
'javax.jdo.option.ConnectionPassword': 'password',
'hikaricp.connectionTimeout': 60000,