Graph configuration compatibility with Redis Enterprise

Graph configuration settings supported by Redis Enterprise.

You cannot use GRAPH.CONFIG SET to configure RedisGraph in Redis Enterprise Software or Redis Cloud. Instead, use one of the following methods.

For Redis Cloud:

  • Flexible or Annual subscriptions: contact support to request a configuration change.

  • Free or Fixed subscriptions: you cannot change RedisGraph configuration.

For Redis Enterprise Software, use either:

  • rladmin tune db:

    $ rladmin tune db db:<ID|name> module_name graph \
        module_config_params "setting-name setting-value"
    
  • Configure module REST API request:

    POST /v1/modules/config/bdb/<ID>
    {
      "modules": [
        {
          "module_name": "graph",
          "module_args": "setting-name setting-value"
        }
      ]
    }
    
Setting Redis
Enterprise
Redis
Cloud
Notes
CACHE_SIZE ✅ Supported

✅ Flexible & Annual
❌ Free & Fixed
Default: 25
MAX_QUEUED_QUERIES ✅ Supported

✅ Flexible & Annual
❌ Free & Fixed
Default: 25
NODE_CREATION_BUFFER ✅ Supported

✅ Flexible & Annual
❌ Free & Fixed
Default: 16384
OMP_THREAD_COUNT ✅ Supported

✅ Flexible & Annual*
❌ Free & Fixed
* Updates automatically when you change your plan.

Redis Enterprise default: Set by plan

Redis Cloud defaults:
• Flexible & Annual: Set by plan
• Free & Fixed: 1
QUERY_MEM_CAPACITY ✅ Supported

✅ Flexible & Annual
❌ Free & Fixed
Default: 100000000
RESULTSET_SIZE ✅ Supported

✅ Flexible & Annual
❌ Free & Fixed
Default: 10000
THREAD_COUNT ✅ Supported

✅ Flexible & Annual*
❌ Free & Fixed
* Updates automatically when you change your plan.

Redis Enterprise default: Set by plan

Redis Cloud defaults:
• Flexible & Annual: Set by plan
• Free & Fixed: 1
TIMEOUT ✅ Supported

✅ Flexible & Annual
❌ Free & Fixed
Default: 100
VKEY_MAX_ENTITY_COUNT ✅ Supported

✅ Flexible & Annual
❌ Free & Fixed
Default: 100000
RATE THIS PAGE
Back to top ↑