Ignite Summit 2025 — Watch on demand 

Edit

Volatile Storage

Overview

Ignite Volatile storage is designed to provide a quick and responsive storage without guarantees of data persistence.

When it is enabled for the data region, Ignite stores all data in the data region in RAM. Data will be lost on cluster shutdown, so make sure to have a separate data region for persistent storage.

Configuration Parameters

Property Default Description

name

The name of the data region.

initSize

256 * 1024 * 1024

Sets the initial space allocated to the data region.

maxSize

256 * 1024 * 1024

Sets the maximum space that can be allocated to the data region.

pageSize

16384

The size of pages in the storage, in bytes.

Configuration Example

The example below shows how to configure one data region that uses volatile storage:

ignite config set --type cluster \
"{
    aimem.regions: [{
        name: btree_volatile_region,
        maxSize: 256000000
    }]
}"