Skip to main content

Configure parameters

Parameters are the engine's own configuration values: memory allocation, connection limits, timeouts, and optimization behavior. FPT Database Engine exposes them on a running database so you can tune it without rebuilding, and the defaults suit a general workload rather than yours specifically.

Most databases never need a parameter change. Reach for one when monitoring shows a specific limit being hit, not as routine maintenance.

Dynamic and static parameters

Every parameter is one of two types, and the type decides whether changing it interrupts service.

TypeWhen it takes effectService impact
Dynamic ParamsImmediately on saveNone. No restart.
Static ParamsAfter a restartThe system restarts the database automatically when you save, which interrupts connections.

The Console Portal separates the two into their own tabs, so you can tell which you are editing before you change anything. Check the type first on any database carrying production load.

Constraints on a value

Each parameter carries a data type and a permitted range, both shown in the edit dialog. A value outside the range is rejected rather than silently clamped, so the failure is visible at the point of change instead of later.

Required permissions

PermissionAction typeDescription
manageDatabase:ConfigurationEditChange database configuration, including parameters and scaling settings.

Update a parameter

  1. Log in to FPT Cloud Console and open the Database list page.

  2. Click the database ID, then open the Configure Params tab.

    Parameter management page listing dynamic and static parameters

  3. Select the parameter type you want to work with, Dynamic Params or Static Params.

  4. Click the edit icon in the parameter's Actions column.

    Update Configure Params dialog showing data type and allowed range

  5. Check the parameter's data type and its minimum and maximum values, enter a new value in Value within that range, then click Update.

A dynamic parameter takes effect at once. A static parameter takes effect after the restart that follows.

warning

Updating a static parameter restarts the database automatically, which interrupts service. Schedule static parameter changes during a maintenance window.

Working safely

  • Change parameters in small increments and watch the effect before going further.
  • Prefer a dynamic parameter where a dynamic equivalent exists, to avoid downtime.
  • Schedule static parameter changes inside your maintenance window, so the automatic restart lands when you expect it.
  • Record what you changed and why. The next person debugging performance will be looking for exactly that.

Next steps