-
Notifications
You must be signed in to change notification settings - Fork 495
Product configuration parameters
dbeaver-devops edited this page Oct 30, 2025
·
41 revisions
This document provides guidelines for configuring core product settings in CloudBeaver. These settings control localization, themes, logging, the SQL editor, and more.
For more details on configuration, see the CloudBeaver server configuration.
The Product settings configuration is located under the productSettings section of
the main server configuration file.
| Name | Environment variable | Default value | Units | Description | Allowed values |
|---|---|---|---|---|---|
core.localization.language |
CLOUDBEAVER_CORE_LOCALIZATION |
en |
string | Default language for the interface. | See Languages. |
core.theming.theme |
CLOUDBEAVER_CORE_THEMING_THEME |
light |
string | Default application theme. | See Themes. |
| Name | Environment variable | Default value | Units | Description | Allowed values |
|---|---|---|---|---|---|
plugin.log-viewer.disabled |
CLOUDBEAVER_LOG_VIEWER_DISABLED |
false |
boolean | Disables the log viewer plugin. |
true, false
|
plugin.log-viewer.logBatchSize |
CLOUDBEAVER_LOG_VIEWER_LOG_BATCH_SIZE |
2 |
integer | Number of log entries retrieved per request. | Integer |
plugin.log-viewer.maxLogRecords |
CLOUDBEAVER_LOG_VIEWER_MAX_LOG_RECORDS |
2000 |
integer | Maximum number of log records stored. | Integer |
For details on customizing logging level and pattern, see Log customization.
| Name | Environment variable | Default value | Units | Description | Allowed values |
|---|---|---|---|---|---|
plugin.sql-editor.autoSave |
CLOUDBEAVER_SQL_EDITOR_AUTOSAVE |
true |
boolean | Enables auto-saving for SQL editor sessions. |
true, false
|
plugin.sql-editor.disabled |
CLOUDBEAVER_SQL_EDITOR_DISABLED |
false |
boolean | Disables the SQL editor plugin. |
true, false
|
plugin.sql-editor.maxFileSize |
CLOUDBEAVER_SQL_EDITOR_MAX_FILE_SIZE |
10240 |
integer | Maximum file size for importing files in the SQL editor. | Integer |
For more details on SQL Editor, see our documentation.
| Name | Environment variable | Default value | Units | Description | Allowed values |
|---|---|---|---|---|---|
sql.proposals.insert.table.alias |
CLOUDBEAVER_SQL_PROPOSALS_INSERT_TABLE_ALIAS |
PLAIN |
string | Default alias format for table insert proposals. |
PLAIN, SHORT, FULL
|
- Getting started
- Create connection
- Connection network options
- Supported databases
-
Drivers management
- Database authentication methods
- Database navigator
- Properties editor
- Data editor
- SQL editor
-
Entity relation diagrams
- Cloud services
-
AI Smart assistance
- Data transfer
- General user guide
- Administration
- Server configuration
-
Server security and access configuration
- Authentication methods
- Access management
- Proxy configuration
-
Secret management
- Logs
-
Query manager
- Workspace location
- Command line parameters
-
Session manager
- Deployment options
- CloudBeaver Editions
- FAQ
- Development
productSettings: { "core.localization.language": "${CLOUDBEAVER_CORE_LOCALIZATION:en}", "core.theming.theme": "${CLOUDBEAVER_CORE_THEMING_THEME:light}", "plugin.log-viewer.disabled": "${CLOUDBEAVER_LOG_VIEWER_DISABLED:false}", "plugin.log-viewer.logBatchSize": "${CLOUDBEAVER_LOG_VIEWER_LOG_BATCH_SIZE:2}", "plugin.log-viewer.maxLogRecords": "${CLOUDBEAVER_LOG_VIEWER_MAX_LOG_RECORDS:2000}", "plugin.sql-editor.autoSave": "${CLOUDBEAVER_SQL_EDITOR_AUTOSAVE:true}", "plugin.sql-editor.disabled": "${CLOUDBEAVER_SQL_EDITOR_DISABLED:false}", "plugin.sql-editor.maxFileSize": "${CLOUDBEAVER_SQL_EDITOR_MAX_FILE_SIZE:10240}", "sql.proposals.insert.table.alias": "${CLOUDBEAVER_SQL_PROPOSALS_INSERT_TABLE_ALIAS:PLAIN}" },