Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,6 @@ UDFs
UI
unaliased
undirected
UNIQIE
unnormalized
unparseable
unserializable
Expand Down
2 changes: 1 addition & 1 deletion operations/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ docker-compose config
q3="How do I configure FalkorDB module parameters like thread count?"
a3="Use the `FALKORDB_ARGS` environment variable: `-e FALKORDB_ARGS='THREAD_COUNT 8 CACHE_SIZE 50 TIMEOUT_MAX 60000'`. See the Configuration page for all available parameters."
q4="Why is my data lost when I restart the container?"
a4="You need to mount a persistent volume. Use `-v falkordb_data:/var/lib/falkordb/data` to attach a Docker volume to the default data directory, and enable AOF for durability."
a4="You need to mount a persistent volume. Use `-v falkordb_data:/data` to attach a Docker volume to the default data directory, and enable AOF for durability."
q5="How do I check if FalkorDB is healthy in Docker Compose?"
a5="Add a healthcheck using `redis-cli ping`: `test: ['CMD', 'redis-cli', 'ping']`. With authentication, include `-a yourpassword` in the test command."
%}
2 changes: 1 addition & 1 deletion operations/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Build custom FalkorDB Docker containers from source with platform-specific examp
q1="What Docker image should I use for production?"
a1="Use `falkordb/falkordb-server` for production deployments. It excludes the browser UI, making it lighter and more efficient. Use `falkordb/falkordb` for development when you need the built-in browser."
q2="How do I ensure my data survives container restarts?"
a2="Mount a persistent volume to `/var/lib/falkordb/data` using Docker volumes or bind mounts, and enable AOF persistence. See the [Data Durability](/operations/durability) guide for full details."
a2="Mount a persistent volume to `/data` using Docker volumes or bind mounts, and enable AOF persistence. See the [Data Durability](/operations/durability) guide for full details."
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Line 69 links to contradictory persistence docs.

This answer now says mount to /data, but it also sends users to Data Durability “for full details,” where docs still show /var/lib/falkordb/data (see operations/durability/persistence.md lines 43-49 and 105-109, plus operations/durability/index.md lines 45-52). Please sync those pages (or temporarily remove this “full details” pointer) to avoid conflicting instructions that can break persistence setups.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@operations/index.md` at line 69, The sentence "Mount a persistent volume to
`/data` using Docker volumes or bind mounts, and enable AOF persistence" in
operations/index.md conflicts with the Data Durability docs that reference
`/var/lib/falkordb/data`; update operations/index.md and the durability pages
(operations/durability/persistence.md and operations/durability/index.md) so
they use the same data directory path across all pages, or temporarily remove
the "See the [Data Durability](/operations/durability) guide for full details"
link from operations/index.md until the paths are synchronized; ensure the shown
mount path and any examples (AOF/config snippets) in functions/pages referencing
the data directory all match the chosen canonical path.

q3="Can FalkorDB scale horizontally?"
a3="Yes. FalkorDB supports clustering via Redis Cluster, distributing graphs across multiple shards using hash slots. Each graph resides on one shard. See [Setting Up a Cluster](/operations/cluster) for setup instructions."
q4="What is the easiest way to deploy FalkorDB to the cloud?"
Expand Down
Loading