Important
The SingleStore 9.0 release candidate (RC) gives you the opportunity to preview, evaluate, and provide feedback on new and upcoming features prior to their general availability. In the interim, SingleStore 8.9 is recommended for production workloads, which can later be upgraded to SingleStore 9.0.
Connect with Collibra Platform
On this page
Collibra is a data intelligence platform that helps organizations streamline data management, governance, and collaboration.
You can connect your SingleStore deployments to Collibra Platform using the SingleStore JDBC driver ("the driver").
-
Schemas
-
Tables
-
Views
-
Columns
-
Primary keys
Prerequisites
-
Access to an Edge site or a Collibra Cloud site.
-
Global System administration and Manage connections and capabilities permissions.
-
An active SingleStore deployment.
-
SingleStore JDBC driver version 1.
2. 6+ .
file.jar
Configure the Connection to SingleStore
To connect using the SingleStore JDBC driver, perform the following tasks:
-
Create a JDBC connection.
-
Register a data source.
1. Create a JDBC Connection
Refer to Create a JDBC connection for information on creating a JDBC connection to SingleStore in Collibra Platform.
Specify the following connection settings while configuring the JDBC connection:
-
Name: Specify SingleStore.
-
Driver class name: Specify
com.
.singlestore. jdbc. Driver -
Driver jar: Download the SingleStore JDBC driver
.
file from its GitHub repository, and upload the JAR file.jar -
Connection String: Enter
jdbc:singlestore://{host}:{port}/{db}
, where:-
host
: IP address or the hostname of the SingleStore deployment. -
port
: Default is3306
. -
db
: Name of the SingleStore database to connect with.
-
Specify the following connection properties to configure the connection to your SingleStore deployment:
-
User: Username of the SingleStore database user with which to access the database.
-
Password: Password for the SingleStore database user.
Note
SingleStore does not support foreign keys.foreign-keys-strategy
property to SKIP
under Catalog JDBC Ingestion Edge capability.
2. Register a Data Source
Use the JDBC connection created earlier to register a data source.
View Technical Lineage
You can also view the technical lineage graph for SingleStore to visualize the journey of the data objects in your data sources and data transformation details.
Here are a few sample queries:
-
Visualize pipeline metadata for external functions:
SELECT PIPELINE_NAME, CONFIG_JSON, STATE, CREATE_TIMEFROM information_schema.PIPELINESWHERE DATABASE_NAME = '<database_name>'; -
Select and parse executed queries from history for internal relations:
SELECT QUERY_TEXT FROM information_schema.MV_QUERIESWHERE ACTIVITY_NAME LIKE 'InsertSelect%';
References
Last modified: August 26, 2025