Glossary
- access control list (ACL)
-
Allows you to manage permissions based on key patterns.
More info: redis.io/operate/oss_and_stack/management/security/acl; ACL wikipedia; Database access control; Update database ACLs; Role-based access control
- Active-Active database (CRDB)
-
Geo-distributed databases that span multiple Redis Enterprise Software clusters. Active-Active databases, also known as conflict-free replicated databases (CRDB), depend on multi-primary replication and conflict-free replicated data types (CRDTs) to power a simple development experience for geo-distributed applications.
More info: Active-Active geo-distributed Redis, Geo-distributed Active-Active Redis applications, Developing applications for Active-Active databases
- Active-Active database instance
-
A “member database” of a global Active-Active database which is made up of its own master and replica shards spanning a single cluster.
More info: Active-Active database instances
- active-passive database replication
-
Provides applications read-only access to replicas of the data set from different geographical locations. The Redis Enterprise implementation of active-passive replication is called Replica Of.
More info: Database replication, Replica Of
- admin console
-
Each node runs a web server that is used to provide the user with access to the Redis Enterprise Software admin console (previously known as management UI). The admin console allows viewing and managing the entire cluster, so it does not matter which node is used to access it.
More info: Manage clusters
- admission controller
-
A piece of code that intercepts requests to the Kubernetes API server prior to persistence of the object.
More info: Using Admission Controllers
- append-only file (AoF)
-
Log files that keep a record of data changes by writing to the end of a file. This happens with every write, or every second to allow data recovering the entire dataset by replaying the append-only log from the beginning to the end.
More info: Data Persistence, Data Persistence with Redis Enterprise Software
- Bloom filter
-
A probabilistic data structure that tests whether an element is a member of a set. False positive matches are possible, but false negatives are not. Bloom filters are space-efficient and provide fast membership testing.
More info: Bloom filters, RedisBloom
- causal consistency
-
A distributed database is causally consistent if it maintains the same order of operations on a piece of data across all database copies.
More info: Causal consistency wikipedia, Causal consistency in an Active-Active database
- CIDR allowlist
-
Classless Inter-Domain Routing (CIDR) is a method to allocate and route IP addresses. A CIDR allowlist defines a range of IP addresses and permits connections to them.
More info: CIDR wikipedia, Configure CIDR allowlist
- concurrent writes
-
Concurrency or updates and writes refer to more than events that happen at the same wall clock time across member Active-Active databases. Concurrent updates refer to the fact that updates happen in between sync events that catch up member Active-Active databases with updates that happened on other member Active-Active databases.
More info: Developing applications for Active-Active databases, Conflict-free replicated data types (CRDT)
- consistency
-
Consistency models describe the way a distributed system keeps replicated data consistent between copies.
More info: Consistency models
- cluster
-
A Redis Enterprise cluster is composed of identical nodes that are deployed within a data center or stretched across local availability zones.
More info: Database clustering
- Cluster Configuration Store (CCS)
-
An internally managed Redis database that acts as a single repository for all cluster metadata.
More info: Redis Enterprise cluster architecture
- Cluster Node Manager (CNM)
-
A collection of Redis Enterprise services responsible for provisioning, migration, monitoring, re-sharding, rebalancing, de-provisioning, auto-scaling.
More info: Redis Enterprise cluster architecture, Database operations
- conflict-free replicated databases (CRDB)
-
Conflict-free replicated databases (CRDB) are an alternate name for Active-Active databases.
- conflict-free replicated data types (CRDT)
-
Techniques used by Redis data types in Active-Active databases that handle conflicting concurrent writes across member Active-Active databases. The Redis Enterprise implementation of CRDT is called an Active-Active database (formerly known as CRDB).
More info: CRDT info, Active-Active geo-distributed Redis, CRDT wikipedia
- controllers
-
Control loops that watch the state of your Kubernetes cluster and make or request changes where needed to move the current cluster state closer to the desired state.
More info: Controllers
- custom resources (CRs)
-
Extensions of the Kubernetes API that allow you to store and retrieve structured data. Custom resources let you extend Kubernetes capabilities without modifying the core Kubernetes code.
More info: Custom Resources
- CustomResourceDefinition (CRD)
-
A cluster-wide resource that specifies which settings can be configured via custom resource files. CRDs define the structure and validation rules for custom resources.
More info: CustomResourceDefinition, Custom Resources
- data eviction policy
-
Defines how excess data is handled when the database exceeds the memory limit.
More info: Data Eviction Policy, Redis Enterprise data eviction
- declarative configuration
-
A configuration approach where you specify the desired state of your system, and the system automatically makes the necessary changes to achieve that state.
More info: Managing Kubernetes Objects Using Declarative Configuration
- deprecated
-
Features are marked as deprecated when they're scheduled to be removed from our products, generally because they've been replaced by new features.
For details, see obsolete.
- Domain Name Service (DNS)
-
Naming system for computers, services, or other resources connected to the Internet or a private network. It associates various information with domain names assigned to each of the participating entities.
More info: DNS wikipedia
- eventual consistency
-
After updating data on one instance of a distributed database, the other database copies may have stale data for a short time while they sync. Eventual consistency means that the updated data will eventually be the same across all database copies.
More info: Eventual consistency wikipedia
- failover
-
The automatic process of switching to a backup system when the primary system fails. In Redis Enterprise, failover promotes replica shards to primary when the original primary becomes unavailable.
More info: High availability, Replica HA
- Fully qualified domain name (FQDN)
-
A domain name that includes a list of domain labels to specify the exact location in the DNS.
More info: FQDN wikipedia
- `fsync`
-
Linux command to synchronize a file's in-core state with a storage device. Used in data persistence operations.
More info:
fsync
man page, Data persistence - full-text search
-
A search technique that examines all words in every stored document to find matches to search criteria. Redis provides full-text search capabilities through its Search and Query features.
More info: Search and query, Full-text search
- indexing
-
The process of creating data structures that improve the speed of data retrieval operations. Redis supports various types of indexing including secondary indexing, vector indexing, and full-text indexing.
More info: Search and query, Indexing concepts
- JSON
-
JavaScript Object Notation (JSON) is a lightweight data-interchange format. Redis provides native JSON support through RedisJSON, allowing you to store, update, and retrieve JSON values.
More info: JSON data type, RedisJSON
- hash slot
-
The result of a hash calculation used in database clustering to determine which shard stores a particular key.
More info: Database clustering, Sharding
- hash tag
-
A part of the key that is used in the hash calculation to determine the hash slot for database clustering.
More info: Database clustering, Hash slots
- high availability
-
High availability (HA) is a characteristic of distributed systems that keeps systems available for users for longer than normal periods of time. This is done by reducing single points of failure, increasing redundancy, and making recovering from failures easier.
More info: Redis Enterprise durability and high availability, High availability wikipedia
- ingress
-
An API object that manages external access to the services in a Kubernetes cluster, typically HTTP.
More info: Ingress, Ingress routing for Redis Enterprise for Kubernetes
- kubectl
-
A command-line tool for communicating with a Kubernetes API server.
More info: Overview of kubectl
- Lightweight Directory Access Protocol (LDAP)
-
A protocol for accessing and maintaining distributed directory services over an IP network, often used to authenticate users.
More info: LDAP wikipedia, LDAP authentication
- latency
-
The time delay between when a command is issued and when a response is received. Redis is designed for low latency, typically operating in the sub-millisecond range.
More info: Latency monitoring, Latency diagnosis
- master node
-
Node that operates as the leader of a cluster. Also known as the primary node.
More info: Redis Enterprise cluster architecture, High availability
- migration
-
Deciding when and where shards will be moved if more network throughput, memory, or CPU resources are needed.
More info: Database operations, Cluster management
- multicast DNS (mDNS)
-
Protocol that resolves hostnames to the IP addresses that do not include a local name server.
More info: multicast DNS wikipedia
- module
-
A Redis extension that adds new commands, data types, and capabilities to Redis. Redis Enterprise includes several modules like RedisJSON, RedisSearch, RedisTimeSeries, and RedisBloom.
More info: Redis modules, Install modules
- monitoring
-
The process of observing and tracking the performance, health, and behavior of Redis databases, clusters, and nodes using metrics and alerts.
More info: Monitoring with metrics and alerts, Metrics reference
- multi-factor authentication (MFA)
-
Method of authenticating users with pieces of evidence of the user's identity. When MFA is enabled on Redis Cloud, users must enter their username, password, and an authentication code when logging in.
More info: Multi-factor authentication
- multi-primary replication
-
Also known as multi-master replication, Active-Active databases have multiple primary nodes (one on each participating cluster) to enable concurrent writes operations.
More info: Multi-primary replication
- namespace
-
An abstraction used by Kubernetes to support multiple virtual clusters on the same physical cluster.
More info: Namespaces
- obsolete
-
When features are removed from our products, they're generally replaced by new features that provide a better experience, more functionality, improved security, and other benefits.
To provide a transition period, we mark older features as deprecated when introducing replacement features. This gives you time to adjust your deployments, apps, and processes to support the new features. During this transition, the older features continue to work as a courtesy.
Eventually, older features are removed from the product. When this happens, they're considered obsolete, partly because they can no longer be used.
For best results, we advise against relying on deprecated features for any length of time.
- operator
-
Operators are software extensions to Kubernetes that make use of custom resources to manage applications and their components.
More info: operator pattern
- Out-of-Memory (OOM)
-
If a member Active-Active database is in an out of memory situation, that member is marked “inconsistent” by Redis Enterprise Software, the member stops responding to user traffic, and the syncer initiates full reconciliation with other peers in the Active-Active database.
More info: Active-Active database troubleshooting, Memory management
- persistence
-
The ability to store data permanently to disk so that it survives server restarts. Redis supports RDB snapshots and AOF (Append-Only File) persistence methods.
More info: Data persistence, Redis Enterprise persistence
- participating clusters
-
Clusters participating in the multi-primary replication of an Active-Active database.
More info: Active-Active geo-distributed Redis, Create Active-Active database
- PersistentVolume (PV)
-
A piece of storage in the cluster that has been provisioned by an administrator or dynamically provisioned using storage classes.
More info: Persistent Volumes
- PersistentVolumeClaims (PVC)
-
A request for storage by a user that serves as an abstract representation of PersistentVolume (PV) resources. PVCs consume PV resources and can request specific size and access modes.
More info: Persistent Volumes
- pods
-
The smallest deployable units of computing that you can create and manage in Kubernetes. A pod represents a single instance of a running process in your cluster.
More info: Pods
- provisioning
-
Deciding where shards will be created and placed within a cluster.
More info: Database operations, Create databases
- proxy policy
-
Determines the number and location of active proxies tied to a single endpoint that receive incoming traffic for a database.
For more info, see Proxy policy.
- quorum node
-
Node provisioned only for cluster operations that can be elected as a master node. The quorum node participates in the cluster quorum and must be explicitly assigned this role via the
rladmin
command.More info: Redis Enterprise cluster architecture, rladmin command reference
- Redis Stack
-
A collection of Redis modules that extends Redis with modern data models and processing engines. Includes capabilities for document databases, graph databases, time series, and more.
More info: Redis Stack, Redis Stack features
- rack-zone awareness
-
Redis Enterprise feature that helps to ensure high availability in the event of a rack or zone failure. In the event of a rack or zone failure, the replicas and endpoints in the remaining racks/zones will be promoted.
- replication backlog
-
Databases using replication or Active-Active maintain a backlog to synchronize the primary and replica shards.
More info: Database replication, Active-Active databases
- re-sharding
-
Distributing keys and their values among new shards to optimize performance and resource utilization.
More info: Database clustering, Database operations
- rebalancing
-
Moving shards to nodes where more resources are available.
More info: Database operations, Cluster management
- Redis Cloud
-
The cloud version of Redis Enterprise.
More info: Redis Cloud, Redis Cloud quick start
- Redis Enterprise cluster
-
Collection of Redis Enterprise nodes. A cluster pools system resources across nodes in the cluster and supports multi-tenant database instances.
More info: Redis Enterprise cluster architecture, Cluster management
- Redis Enterprise database
-
Logical entity that manages your entire dataset across multiple Redis instances. It segments the data into shards and distributes them among nodes.
More info: Database operations, Create databases
- Redis Enterprise nodes
-
Physical or virtual machines or containers that runs a collection of Redis Enterprise services within a cluster.
More info: Redis Enterprise cluster architecture, Install and setup
- Redis Enterprise Software
-
The on-premises version of Redis Enterprise.
More info: Redis Enterprise Software, Install Redis Enterprise Software
- Redis instance
-
Single-threaded Redis Open Source database. Redis OSS was renamed Redis Open Source with the Redis 8 in Redis Open Source release.
More info: Redis Open Source, Database clustering
- Auto Tiering
-
Previously known as Redis on Flash. Enables your Redis databases to span both RAM and dedicated flash memory (SSD). Auto Tiering manages the location of key values (RAM vs Flash) in the database via a LRU-based (least-recently-used) mechanism.
More info: Auto Tiering, Auto Tiering quick start
- replica high availability (replicaHA)
-
High availability feature of Redis Enterprise Software. After a node failure, the cluster automatically migrates remaining replica shards to available nodes. Previously known as "Slave HA" or
slave_ha
.More info: High availability for replica shards
- Replica Of
-
The Redis Enterprise implementation of active-passive database replication.
More info: Replica Of
- ReplicaSet
-
A ReplicaSet is a type of Kubernetes resource that (aims to) maintain a set of replica pods running at any given time.
More info: ReplicaSet
- replication
-
Database replication provides a mechanism to ensure high availability. When replication is enabled, your dataset is replicated to a replica shard, which is constantly synchronized with the primary shard. If the primary shard fails, an automatic failover happens and the replica shard is promoted.
More info: Database replication
- role bindings
-
Kubernetes objects that grant the permissions defined in a role to a user or set of users, including service accounts.
More info: RoleBinding and ClusterRoleBinding
- role-based access control (RBAC)
-
A security approach that restricts system access to authorized users.
More info: RBAC wikipedia; Database access control; Role-based access control
- roles
-
Kubernetes objects that contain rules representing a set of permissions. Roles define what actions can be performed on which resources.
More info: Role and ClusterRole
- search
-
The ability to query and retrieve data using various search methods including full-text search, vector search, and secondary indexing. Redis provides search capabilities through its Search and Query features.
More info: Search and query, RedisSearch
- secondary indexing
-
Creating additional data structures to enable fast lookups on fields other than the primary key. Redis supports secondary indexing for JSON documents, hashes, and other data types.
More info: Search and query, Indexing concepts
- secret
-
Kubernetes term for object that stores sensitive information, such as passwords, OAuth tokens, and ssh keys.
More info: Secrets
- service account
-
Provides an identity for processes that run in a pod, allowing them to access the Kubernetes API and other resources.
More info: Service Accounts
- services
-
An abstract way to expose an application running on a set of pods as a network service in Kubernetes.
More info: Services
-
Redis process that is part of the Redis clustered database.
More info: Database clustering, terminology
-
Technique that has been used to scale larger data storage and processing loads. Sharding take your data, partitions it into smaller pieces and then send the data to different locations depending on which partition the data has been assigned to. Related to hash slots and shards.
More info: Database clustering, Shards
- Simple Authentication and Security Layer (SASL)
-
Framework for adding authentication support and data security to connection-based protocols via replaceable mechanisms.
More info: SASL wikipedia
- snapshot (RDB)
-
Data persistence file that performs a data dump every one, six, or twelve hours. Used alongside append-only file (AoF) for data persistence.
More info: Data persistence, Append-only file (AoF)
- storage class
-
A way for administrators to describe the classes of storage they offer in Kubernetes, including different quality-of-service levels, backup policies, or arbitrary policies.
More info: Storage Classes
- syncer
-
Process on each node hosting an Active-Active database instance that synchronizes a backlog of operations between participating clusters.
More info: Syncer process
- throughput
-
The number of operations or requests that can be processed per unit of time. Redis is designed for high throughput, capable of handling hundreds of thousands to millions of operations per second.
More info: Redis benchmarks, Performance optimization
- time series
-
A sequence of data points indexed in time order. Redis provides native time series support through RedisTimeSeries for storing and querying time-stamped data.
More info: Time series data type, RedisTimeSeries
- tombstone
-
A key that is logically deleted but stays in memory until it is collected by the garbage collector. Common in Active-Active databases during conflict resolution.
More info: Active-Active database development, Conflict-free replicated data types (CRDT)
- Transport Layer Security (TLS)
-
Protocols that provide communications security over a computer network.
More info: TLS wikipedia, Cloud database TLS, Redis Enterprise TLS
- vector search
-
A search method that finds similar items by comparing high-dimensional vectors representing data features. Redis supports vector search for AI applications, machine learning, and similarity matching.
More info: Vector search, Vector indexing
- VPC peering
-
Networking connection between two VPCs that enables you to route traffic between them using private IP addresses. Instances in either VPC can communicate with each other as if they are within the same network.
More info: VPC wikipedia, Enable VPC peering