
"webapp.database.username": "trifacta",
"webapp.database.logging": false,
"webapp.database.name": "trifacta",
"webapp.database.host": "localhost",
"webapp.database.password": "<pwd_trifactaDB>",
"webapp.database.type": "postgresql",
"webapp.database.port": 5432,
"webapp.database.mySqlServerTimezone": "",
"webapp.database.pool.maxIdleTimeInMillis": 30000,
"webapp.database.pool.maxConnections": 10, |
The following parameters apply to the only: Parameter | Description |
---|
logging | Set this value to true to enable logging on the . | pool.maxIdleTimeInMillis | Specifies the maximum permitted idle time for a database connection before it is automatically closed. | pool.maxConnections | Defines the maximum permitted database connections for the . | Jobs databaseModify the batch-job-runner.database settings: "batch-job-runner.database.username": "trifactaactiviti",
"batch-job-runner.database.name": "trifacta-activiti",
"batch-job-runner.database.type": "postgresql",
"batch-job-runner.database.driver": "org.postgresql.Driver",
"batch-job-runner.database.host": "localhost",
"batch-job-runner.database.password": "<pwd_trifactaactivitiDB>",
"batch-job-runner.database.port": 5432,
"batch-job-runner.database.mySqlServerTimezone": "",
"batch-job-runner.database.verifyServerCertificate": false,
"batch-job-runner.database.poolMaxSize": 20, |
Jobs database thread pool sizeYou can modify the following settings to specify minimum and maximum permitted thread pools for the Jobs database: "batch-job-runner.database.minPoolSize": 3,
"batch-job-runner.database.initialPoolSize": 3,
"batch-job-runner.database.maxPoolSize": 50, |
Parameter Name | Description |
---|
batch-job-runner.database.minPoolSize | Integer representing the minimum size of the database connection pool | batch-job-runner.database.initialPoolSize | Integer representing the initial size of the database connection pool | batch-job-runner.database.maxPoolSize | Integer representing the maximum size of the database connection pool | Scheduling Service database "scheduling-service.database.type": "POSTGRESQL",
"scheduling-service.database.host": "localhost",
"scheduling-service.database.port": "5432",
"scheduling-service.database.name": "trifactaschedulingservice",
"scheduling-service.database.username": "trifactaschedulingservice",
"scheduling-service.database.password": "<pwd_schedulingserviceDB>",
"scheduling-service.database.mySqlServerTimezone": "",
"scheduling-service.database.verifyServerCertificate": false,
"scheduling-service.database.poolMaxSize": 20, |
Time-based Trigger Service database "time-based-trigger-service.database.type": "POSTGRESQL",
"time-based-trigger-service.database.host": "localhost",
"time-based-trigger-service.database.port": "5432",
"time-based-trigger-service.database.name": "trifactatimebasedtriggerservice",
"time-based-trigger-service.database.username": "trifactatimebasedtriggerservice",
"time-based-trigger-service.database.password": "<pwd_triggerserviceDB>",
"time-based-trigger-service.database.mySqlServerTimezone": "",
"time-based-trigger-service.database.verifyServerCertificate": false,
"time-based-trigger-service.database.poolMaxSize": 20, |
Configuration Service database "configuration-service.database.type": "POSTGRESQL",
"configuration-service.database.host": "localhost",
"configuration-service.database.port": "5432",
"configuration-service.database.name": "trifactaconfigurationservice",
"configuration-service.database.username": "trifactaconfigurationservice",
"configuration-service.database.password": "<pwd_trifactaconfigurationserviceDB>",
"configuration-service.database.mySqlServerTimezone": "",
"configuration-service.database.verifyServerCertificate": false,
"configuration-service.database.poolMaxSize": 20, |
Artifact Storage Service database"artifact-storage-service.database.type": "POSTGRESQL",
"artifact-storage-service.database.host": "localhost",
"artifact-storage-service.database.port": "5432",
"artifact-storage-service.database.name": "trifactaartifactstorageservice",
"artifact-storage-service.database.username": "trifactaartifactstorageservice",
"artifact-storage-service.database.password": "<pwd_trifactaartifactstorageserviceDB>",
"artifact-storage-service.database.mySqlServerTimezone": "",
"artifact-storage-service.database.verifyServerCertificate": false,
"artifact-storage-service.database.poolMaxSize": 20, |
Job Metadata Service database"job-metadata-service.database.type": "POSTGRESQL",
"job-metadata-service.database.host": "localhost",
"job-metadata-service.database.port": "5432",
"job-metadata-service.database.name": "trifactajobmetadataservice",
"job-metadata-service.database.username": "trifactajobmetadataservice",
"job-metadata-service.database.password": "<pwd_trifactajobmetadataserviceDB>",
"job-metadata-service.database.mySqlServerTimezone": "",
"job-metadata-service.database.verifyServerCertificate": false,
"job-metadata-service.database.poolMaxSize": 20, |
Parameter ReferenceThe following generalized parameters apply to one or more of the databases. Parameter | Description |
---|
host | Host of the database. Default value is localhost , meaning the database is hosted on the . | port | Port number for the database. Default value is 5432 for all databases, assuming that they are PostgreSQL. Modify this value accordingly if you have installed the databases onto a different type of database server. | name | Name of the database. This value should match what was used during installation. | user or username | The username to use to connect to the database. | password | Password to use to connect to the database. NOTE: For each database, you should change the default password. |
This change must also be applied on the database server. | type | The default database type is POSTGRESQL . NOTE: Modify this value accordingly if you have installed the databases onto a different type of database server. |
NOTE: H2 database type is used for internal testing. It is not a supported database. |
| driver | Name of the database. Do not modify. | mySqlServerTimezone | (mySQL DBs only) If populated, the MySQL connection string for the database is augmented with the specified timezone, which overrides the default mapping/detection of the timezone. If empty, the default MySQL timezone settings are used for the database. NOTE: Leave this value as empty if the and your MySQL databases are located in the same timezone. |
For more information, see Install Databases for MySQL. | verifyServerCertificate | When true , the local database client does not check the validity of the database server certificate when connecting. Default is false . NOTE: Do not modify unless necessary for connectivity. |
| poolMaxSize | Maximum number of threads permitted in the connection pool for the database. Default is 20 . NOTE: Do not modify unless necessary. |
| |