Conversation
Create cloud/connecting.md with step-by-step instructions for connecting to FalkorDB Cloud using: - Python, Node.js, Java, Rust, Go, and redis-cli - TLS connection details for paid tiers - Bolt protocol connection info - Troubleshooting table for common connection issues Also links the new page from cloud/index.md. Addresses audit item P2.7. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
Warning Rate limit exceeded
To keep reviews running without waiting, you can enable usage-based add-on for your organization. This allows additional reviews beyond the hourly cap. Account admins can enable it under billing. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Review rate limit: 0/1 reviews remaining, refill in 52 minutes and 28 seconds.Comment |
There was a problem hiding this comment.
Pull request overview
Adds a new Cloud Connection Guide to the Cloud DBaaS docs to help users retrieve their endpoint details and connect from common clients, and links it from the Cloud landing page.
Changes:
- Added
cloud/connecting.mdwith connection instructions/examples across multiple languages and redis-cli, plus TLS and Bolt notes. - Updated
cloud/index.mdto link to the new connection guide.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| cloud/index.md | Adds a new “Connecting to FalkorDB Cloud” section linking to the new guide. |
| cloud/connecting.md | New step-by-step connection guide including TLS tier notes, client examples, Bolt info, and troubleshooting. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| | `Authentication failed` | Double-check username and password; reset credentials in the dashboard if needed | | ||
| | `Timeout` | Check network connectivity; ensure your firewall allows outbound connections on port 6379 | | ||
|
|
||
| For more help, see the [Troubleshooting guide](/operations/troubleshooting) or contact [FalkorDB Support](https://www.falkordb.com/contact-us/). |
| Your connection URL follows this format: | ||
|
|
||
| ``` | ||
| falkordb://<username>:<password>@<host>:<port> | ||
| ``` |
| <dependency> | ||
| <groupId>com.falkordb</groupId> | ||
| <artifactId>jfalkordb</artifactId> | ||
| <version>0.5.0</version> |
| import com.falkordb.FalkorDB; | ||
| import com.falkordb.Graph; | ||
|
|
||
| FalkorDB db = FalkorDB.driver() | ||
| .host("my-instance.falkordb.cloud") | ||
| .port(6379) | ||
| .user("default") | ||
| .password("your-password") | ||
| .ssl(true) | ||
| .build(); | ||
|
|
||
| Graph graph = db.selectGraph("myGraph"); |
Summary
Create a Cloud Connection Guide covering how to obtain the endpoint, configure TLS, and connect via each supported client library.
Changes
cloud/connecting.mdwith:cloud/index.md: Added link to the new connection guideTesting
parent: "Cloud DBaaS")Memory / Performance Impact
N/A — documentation only
Related Issues
Addresses audit item P2.7 (Audit-Report.md)