> ## Documentation Index
> Fetch the complete documentation index at: https://docs.falkordb.com/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> FalkorDB is a graph database that speaks the Redis protocol. Queries are issued as OpenCypher through the GRAPH.QUERY and GRAPH.RO_QUERY commands, not over Bolt or a SQL connection.
> FalkorDB implements a subset of OpenCypher with proprietary extensions. Do not assume Neo4j-only syntax or procedures are available — check /cypher/cypher-support and /cypher/known-limitations before using a clause.
> FalkorDB is the successor to RedisGraph, but they are separate products. Do not present RedisGraph commands, versions, or limitations as current FalkorDB behavior.
> Use the official clients listed in /getting-started/clients rather than generic Redis or Neo4j drivers, and prefer the language the user is already working in.
> Configuration parameters are set with GRAPH.CONFIG SET or at startup; cite the exact parameter name from /getting-started/configuration rather than inventing one.
> This site covers four products: FalkorDB (core), FalkorDB Cloud, FalkorDB Enterprise, and the GraphRAG SDK. Name which one an answer applies to, since setup and operations differ.

# Sharded deployment

> Create a sharded FalkorDB deployment for horizontal data distribution.

## When to use this

Use sharded topology for workloads that need to distribute data and traffic across multiple shards.

The Admin UI maps this flow to:

* `spec.topology: cluster`
* `spec.replicas` as replicas per shard
* `spec.sharding.enabled: true`
* `spec.sharding.shardCount` from the shard count field
* `spec.sharding.replicas` as replicas per shard

## Create with quick create

1. Open **Deployments** > **Create Deployment**.
2. Choose **Sharded**.
3. Choose **Dev**, **QA**, or **Prod**.
4. Choose **Quick Create**.
5. Enter name, namespace, and FalkorDB version.
6. Submit.

## Create with full setup

1. Open **Deployments** > **Create Deployment**.
2. Choose **Sharded**.
3. Choose **Full Setup**.
4. Complete the wizard:
   * **General**: name, namespace, version, termination policy, labels.
   * **Component**: shard count, replicas per shard, CPU, memory, storage class, storage size, node affinity.
   * **Configuration**: optional FalkorDB runtime parameters.
   * **Authentication**: ACL username/password or LDAP where supported.
   * **Encryption**: optional TLS configuration.
   * **Networking**: optional service for the sharding component, and an optional external domain for stable per-pod DNS names outside the cluster. See [Networking](/enterprise/databases/networking).
   * **Backup**: optional backup repository and cron schedule.
   * **Review**: submit.

## Verified defaults and constraints

| Field                      | Default or constraint              |
| -------------------------- | ---------------------------------- |
| Shard count                | `3`                                |
| Replicas per shard         | `1` for Dev, `2` for QA/Prod       |
| Storage                    | `10Gi`                             |
| Backup schedule            | `0 2 * * *` when backup is enabled |
| CPU minimum sent to API    | `250m` for shard resources         |
| Memory minimum sent to API | `100Mi` for shard resources        |

Prod enforces at least `2` replicas per shard.

## Validate

```bash theme={null}
kubectl get clusters.apps.kubeblocks.io -n <namespace>
kubectl get pods -n <namespace>
```

In the Admin UI, open **General** to confirm shard count and replicas per shard, then review **Pods**, **Metrics**, and **Operations**.
