2023-04-17 16:45:47 +02:00
---
title: SingleStore
2023-05-04 12:37:18 -07:00
slug: /connectors/database/singlestore
2023-04-17 16:45:47 +02:00
---
# Singlestore
{% multiTablesWrapper %}
| Feature | Status |
| :----------------- | :--------------------------- |
| Stage | PROD |
| Metadata | {% icon iconName="check" /%} |
| Query Usage | {% icon iconName="cross" /%} |
| Data Profiler | {% icon iconName="check" /%} |
| Data Quality | {% icon iconName="check" /%} |
| Lineage | Partially via Views |
| DBT | {% icon iconName="cross" /%} |
| Supported Versions | -- |
| Feature | Status |
| :----------- | :--------------------------- |
| Lineage | Partially via Views |
| Table-level | {% icon iconName="check" /%} |
| Column-level | {% icon iconName="check" /%} |
{% /multiTablesWrapper %}
In this section, we provide guides and references to use the Singlestore connector.
Configure and schedule Singlestore metadata and profiler workflows from the OpenMetadata UI:
- [Requirements ](#requirements )
- [Metadata Ingestion ](#metadata-ingestion )
2023-04-28 07:09:12 -07:00
- [Data Profiler ](/connectors/ingestion/workflows/profiler )
- [Data Quality ](/connectors/ingestion/workflows/data-quality )
- [dbt Integration ](/connectors/ingestion/workflows/dbt )
2023-04-17 16:45:47 +02:00
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/ingestion-modes-tiles.md" variables={yamlPath: "/connectors/database/singlestore/yaml"} /%}
2023-04-17 16:45:47 +02:00
## Requirements
Fixes #10805 - Documentation for Profiler, Nifi, MLflow, Trino, Presto, Redshift, Hive, SingleStore, MariaDB, MySQL (#11135)
* feat: profiler workflow documentation
* feat: Added MySQL connection information
* doc: connector requirements for MySQL, MariaDB, and SingleStore
* doc: added requirements to main documentation for MariaDB, SingleStore and MySQL
* doc: added new profiler metric definitions
* doc: Added new table test documentation
* doc: added connector requirements for Hive
* doc: Added Redshift documentation
* doc: Added Presto & Trino documentation
* doc: added MLflow documentation
* doc: Added Nifi documentation
* Move requirements to H2
* doc: add links/queries to grant permissions
2023-04-19 14:12:47 +02:00
### Metadata
To extract metadata the user used in the connection needs to have access to the `INFORMATION_SCHEMA` . By default a user can see only the rows in the `INFORMATION_SCHEMA` that correspond to objects for which the user has the proper access privileges.
```SQL
-- Create user.
-- More details https://docs.singlestore.com/managed-service/en/reference/sql-reference/security-management-commands/create-user.html
CREATE USER < username > [@< hostName > ] IDENTIFIED BY '< password > ';
-- Grant select on a database
GRANT SELECT ON world.* TO '< username > ';
-- Grant select on a database
GRANT SELECT ON world.* TO '< username > ';
-- Grant select on a specific object
GRANT SELECT ON world.hello TO '< username > ';
```
### Profiler & Data Quality
2023-07-06 15:11:13 +02:00
Executing the profiler workflow or data quality tests, will require the user to have `SELECT` permission on the tables/schemas where the profiler/tests will be executed. More information on the profiler workflow setup can be found [here ](/connectors/ingestion/workflows/profiler ) and data quality tests [here ](/connectors/ingestion/workflows/data-quality ).
Fixes #10805 - Documentation for Profiler, Nifi, MLflow, Trino, Presto, Redshift, Hive, SingleStore, MariaDB, MySQL (#11135)
* feat: profiler workflow documentation
* feat: Added MySQL connection information
* doc: connector requirements for MySQL, MariaDB, and SingleStore
* doc: added requirements to main documentation for MariaDB, SingleStore and MySQL
* doc: added new profiler metric definitions
* doc: Added new table test documentation
* doc: added connector requirements for Hive
* doc: Added Redshift documentation
* doc: Added Presto & Trino documentation
* doc: added MLflow documentation
* doc: Added Nifi documentation
* Move requirements to H2
* doc: add links/queries to grant permissions
2023-04-19 14:12:47 +02:00
2023-04-17 16:45:47 +02:00
## Metadata Ingestion
2023-07-06 15:11:13 +02:00
{% partial
file="/v1.1.0/connectors/metadata-ingestion-ui.md"
variables={
connector: "Singlestore",
selectServicePath: "/images/v1.1.0/connectors/singlestore/select-service.png",
addNewServicePath: "/images/v1.1.0/connectors/singlestore/add-new-service.png",
serviceConnectionPath: "/images/v1.1.0/connectors/singlestore/service-connection.png",
}
/%}
2023-04-17 16:45:47 +02:00
2023-07-06 15:11:13 +02:00
{% stepsContainer %}
2023-04-17 16:45:47 +02:00
{% extraContent parentTagName="stepsContainer" %}
2023-07-06 15:11:13 +02:00
#### Connection Details
2023-04-17 16:45:47 +02:00
- **Username**: Specify the User to connect to SingleStore. It should have enough privileges to read all the metadata.
- **Password**: Password to connect to SingleStore.
- **Host and Port**: Enter the fully qualified hostname and port number for your SingleStore deployment in the Host and Port field.
- **databaseName**: Optional name to give to the database in OpenMetadata. If left blank, we will use default as the database name.
2023-06-28 20:31:50 +05:30
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/database/advanced-configuration.md" /%}
2023-04-17 16:45:47 +02:00
{% /extraContent %}
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/test-connection.md" /%}
2023-04-17 16:45:47 +02:00
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/database/configure-ingestion.md" /%}
2023-04-17 16:45:47 +02:00
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/ingestion-schedule-and-deploy.md" /%}
2023-04-17 16:45:47 +02:00
{% /stepsContainer %}
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/troubleshooting.md" /%}
2023-04-17 16:45:47 +02:00
2023-07-06 15:11:13 +02:00
{% partial file="/v1.1.0/connectors/database/related.md" /%}