Skip to content
Closed
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
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ jobs:
!:trino-raptor-legacy,
!:trino-accumulo,
!:trino-cassandra,
!:trino-scylla,
!:trino-clickhouse,
!:trino-delta-lake,
!:trino-hive,
Expand Down Expand Up @@ -386,6 +387,7 @@ jobs:
- { modules: plugin/trino-raptor-legacy }
- { modules: plugin/trino-accumulo }
- { modules: plugin/trino-cassandra }
- { modules: plugin/trino-scylla }
- { modules: plugin/trino-clickhouse }
- { modules: plugin/trino-delta-lake }
- { modules: plugin/trino-delta-lake, profile: test-failure-recovery }
Expand Down
6 changes: 6 additions & 0 deletions core/trino-server/src/main/provisio/trino.xml
Original file line number Diff line number Diff line change
Expand Up @@ -288,4 +288,10 @@
<unpack />
</artifact>
</artifactSet>

<artifactSet to="plugin/scylla">
<artifact id="${project.groupId}:trino-scylla:zip:${project.version}">
<unpack />
</artifact>
</artifactSet>
</runtime>
1 change: 1 addition & 0 deletions docs/src/main/sphinx/connector.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ from different data sources.
Prometheus <connector/prometheus>
Redis <connector/redis>
Redshift <connector/redshift>
Scylla <connector/scylla>
SingleStore (MemSQL) <connector/memsql>
SQL Server <connector/sqlserver>
System <connector/system>
Expand Down
38 changes: 38 additions & 0 deletions docs/src/main/sphinx/connector/scylla.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
================
Scylla connector
================

The Scylla connector allows querying data stored in
`Scylla <https://www.scylladb.com//>`_.

Requirements
------------

To connect to Scylla, you need:

* Scylla version 3.0.0 or higher.
* Network access from the Trino coordinator and workers to Scylla.
Port 9042 is the default port.

Configuration
-------------

To configure the Scylla connector, create a catalog properties file
``etc/catalog/scylla.properties`` with the following contents,
replacing ``host1,host2`` with a comma-separated list of the Scylla
nodes, used to discovery the cluster topology:

.. code-block:: text

connector.name=scylla
cassandra.contact-points=host1,host2

You also need to set ``cassandra.native-protocol-port``, if your
Scylla nodes are not using the default port 9042.

Compatibility with Cassandra connector
--------------------------------------

The Scylla connector is very similar to the Cassandra connector with the
only difference being the underlying driver.
See :doc:`Cassandra connector <cassandra>` for more details.
Loading