mirror of
https://github.com/dbeaver/cloudbeaver.git
synced 2026-04-25 05:36:14 +03:00
[GH-ISSUE #3356] Does the Community Edition support manually adding the Redis JDBC driver? #1241
Labels
No labels
AS
can't reproduce
can't reproduce
deployment
development
documentation
duplicate
duplicate
ee
enhancement
external
new driver
performance
pull-request
third party issue
wait for response
wait for review
wontfix
x:Oracle
x:cassandra
x:clickhouse
x:db2
x:duckdb
x:greenplum
x:h2
x:h2gis
x:hana
x:hive
x:intersystems
x:kyuubi
x:maria
x:mongo
x:mysql
x:postgresql
x:presto
x:sql server
x:sqlite
x:teradata
x:trino
xf:accessibility
xf:administration
xf:ai
xf:authentication
xf:aws
xf:commit-mode
xf:connection
xf:dark theme
xf:data editor
xf:datatransfer
xf:dba
xf:driver management
xf:erd
xf:filters
xf:i18n
xf:i18n
xf:installer
xf:json
xf:kerberos
xf:ldap
xf:local config
xf:log viewer
xf:metadata
xf:metadata editor
xf:navigator
xf:okta
xf:query manager
xf:resource manager
xf:scripts
xf:sql editor
xf:tasks
xf:ui/uix
xo: Firefox
xo:eclipse
xo:internet explorer
xo:macos
xp:major
xrn:internal
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/cloudbeaver#1241
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hf43hf on GitHub (Apr 2, 2025).
Original GitHub issue: https://github.com/dbeaver/cloudbeaver/issues/3356
Originally assigned to: @HocKu7 on GitHub.
I tried adding DataGrip's Redis JDBC driver by self-compiling it, but after compiling and starting, I didn’t see the Redis connection option. What could be the issue?
Here is my configuration::
@LonwoLonwo commented on GitHub (Apr 2, 2025):
Hello @hf43hf
I do not see the part of your configuration that requires adding to the DBeaver plugin.xml file.
https://github.com/dbeaver/cloudbeaver/wiki/Adding-new-database-drivers#configuring-drivers-in-dbeaver
We support the Redis database only in PRO versions; for this reason, we do not have a Redis driver description in the DBeaver CE plugin.xml file.
You can put it close to the fake Reids description with your own ID here
github.com/dbeaver/dbeaver@f0cf2a11e4/plugins/org.jkiss.dbeaver.ext.generic/plugin.xml (L1488-L1496)But, again, all features support (https://github.com/dbeaver/dbeaver/wiki/Redis) is in our PRO versions.
You can try it for free: https://dbeaver.com/cloudbeaver-enterprise/
@hf43hf commented on GitHub (Apr 3, 2025):
Thank you for your reply. I previously thought that I only needed to configure CloudBeaver, but now I understand that I need to configure DBeaver first before configuring CloudBeaver.
@hf43hf commented on GitHub (Apr 3, 2025):
Could you please tell me if I can use custom variables in the sampleURL configuration item for the driver?like this:
sampleURL="jdbc:redis:{mode}://{host}:{port}/{database}"
@HocKu7 commented on GitHub (Apr 3, 2025):
Hi @hf43hf. The answer to your question is kind of yes. You can find examples of it in dbeaver project like
sampleURL="jdbc:postgresql://{host}[:{port}]/[{database}]"While it looks like a template with variables (e.g. {host}, {port}, {database}), it's actually parsed manually by DBeaver — not interpreted as a real regex or placeholder engine. You can look at it closely inorg.jkiss.dbeaver.model.DatabaseURL#parseSampleURL@hf43hf commented on GitHub (Apr 4, 2025):
感谢你的解答