Search
ctrl/
Ask AI
Light
Dark
System

Configure

configure – change a server configuration parameter

configure {session | current database | instance}
    set parameter := value ;
configure instance insert parameter-class insert-shape ;
configure {session | current database | instance} reset parameter ;
configure {current database | instance}
    reset parameter-class [ filter filter-expr ] ;

This command allows altering the server configuration.

The effects of configure session last until the end of the current session. Some configuration parameters cannot be modified by configure session and can only be set by configure instance.

configure current database is used to configure an individual EdgeDB database within a server instance with the changes persisted across server restarts.

configure instance is used to configure the entire EdgeDB instance with the changes persisted across server restarts. This variant acts directly on the file system and cannot be rolled back, so it cannot be used in a transaction block.

The configure instance insert variant is used for composite configuration parameters, such as Auth.

parameter

The name of a primitive configuration parameter. Available configuration parameters are described in the Config section.

parameter-class

The name of a composite configuration value class. Available configuration classes are described in the Config section.

filter-expr

An expression that returns a value of type std::bool. Only configuration objects matching this condition will be affected.

Set the listen_addresses parameter:

Copy
configure instance set listen_addresses := {'127.0.0.1', '::1'};

Set the query_work_mem parameter for the duration of the session:

Copy
configure instance set query_work_mem := <cfg::memory>'4MiB';

Add a Trust authentication method for “my_user”:

Copy
configure instance insert Auth {
    priority := 1,
    method := (insert Trust),
    user := 'my_user'
};

Remove all Trust authentication methods:

Copy
configure instance reset Auth filter Auth.method is Trust;