Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.88 KB

Console-Command-Config.md

File metadata and controls

44 lines (35 loc) · 1.88 KB
search
keywords
console
command
configuration
CONFIG

Console - CONFIG

Displays the configuration information on the current database, as well as whether it is local or remote.

Syntax

CONFIG

Examples

  • Display the configuration of the current database:

    orientdb> CONFIG
    
    REMOTE SERVER CONFIGURATION:
    +------------------------------------+--------------------------------+
    | NAME                               | VALUE                          |
    +------------------------------------+--------------------------------+
    | treemap.lazyUpdates                | 300                            |
    | db.cache.enabled                   | false                          |
    | file.mmap.forceRetry               | 5                              |
    | treemap.optimizeEntryPointsFactor  | 1.0                            |
    | storage.keepOpen                   | true                           |
    | treemap.loadFactor                 | 0.7                            |
    | file.mmap.maxMemory                | 110000000                      |
    | network.http.maxLength             | 10000                          |
    | storage.cache.size                 | 5000                           |
    | treemap.nodePageSize               | 1024                           |
    | ...                                | ...                            |
    | treemap.entryPoints                | 30                             |
    +------------------------------------+--------------------------------+
    

You can change configuration variables displayed here using the CONFIG SET command. To display the value set to one configuration variable, use the CONFIG GET command.

For more information on other commands, see Console Commands.