generated from adempiere/adempiere-grpc-template-service
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ecc055
commit 6af1bda
Showing
9 changed files
with
74 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
arguments= | ||
auto.sync=false | ||
build.scans.enabled=false | ||
connection.gradle.distribution=GRADLE_DISTRIBUTION(VERSION(8.0.2)) | ||
connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER) | ||
connection.project.dir= | ||
eclipse.preferences.version=1 | ||
gradle.user.home= | ||
java.home= | ||
jvm.arguments= | ||
offline.mode=false | ||
override.workspace.settings=true | ||
show.console.view=true | ||
show.executions.view=true | ||
override.workspace.settings=false | ||
show.console.view=false | ||
show.executions.view=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
26 changes: 26 additions & 0 deletions
26
docker-compose/postgresql/adempiere/after_run/001_tunning.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
ALTER SYSTEM SET | ||
max_connections = '500'; | ||
ALTER SYSTEM SET | ||
shared_buffers = '1GB'; | ||
ALTER SYSTEM SET | ||
effective_cache_size = '3GB'; | ||
ALTER SYSTEM SET | ||
maintenance_work_mem = '256MB'; | ||
ALTER SYSTEM SET | ||
checkpoint_completion_target = '0.9'; | ||
ALTER SYSTEM SET | ||
wal_buffers = '16MB'; | ||
ALTER SYSTEM SET | ||
default_statistics_target = '100'; | ||
ALTER SYSTEM SET | ||
random_page_cost = '1.1'; | ||
ALTER SYSTEM SET | ||
effective_io_concurrency = '200'; | ||
ALTER SYSTEM SET | ||
work_mem = '524kB'; | ||
ALTER SYSTEM SET | ||
huge_pages = 'off'; | ||
ALTER SYSTEM SET | ||
min_wal_size = '1GB'; | ||
ALTER SYSTEM SET | ||
max_wal_size = '4GB'; |
4 changes: 4 additions & 0 deletions
4
docker-compose/postgresql/adempiere/after_run/002_update_model_validator.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-- connects to the adempiere database and adempiere schema | ||
\c adempiere adempiere | ||
|
||
UPDATE AD_System SET IsFailOnMissingModelValidator = 'N'; |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.