{% extends "base.html" %} {% block content %}
Data Store Type

{{ client_data_store_info.type }}

{% if client_data_store_info.disabled %} Disabled {% endif %}
How It Works

The Data Store manages serialization and external storage of client-provided data: task arguments, results, and exceptions. Small values pass inline; large values are stored externally with content-hash keys for automatic deduplication.

Arguments Serialized & size-routed
Results Stored by invocation
Exceptions Serialized & stored
Deduplication SHA-256 content hash
Configuration
Store Enabled {{ 'Disabled' if client_data_store_info.disabled else 'Enabled' }}
Min Size to Externalize {{ client_data_store_info.min_size_to_cache }} chars
Max Size to Externalize {{ client_data_store_info.max_size_to_cache if client_data_store_info.max_size_to_cache else '∞' }}
Local LRU Cache {{ client_data_store_info.local_cache_size }} entries
Warn Threshold {{ (client_data_store_info.warn_threshold / 1048576) | round(1) }} MB
Compression {{ 'ON' if client_data_store_info.compression_enabled else 'OFF' }}
warning Danger Zone

Permanently delete all externally stored data (arguments, results, exceptions).

{% endblock %}