Connection files define database connections and schemas for the repository. These are required to import fact and dimension datasets into your repository.
Each connection file should define a single database connection and its schema. If you need to use additional schemas for the same database, each must be defined in a separate connection file.
Sample connection
file:
unique_name: Connection - TPCDS
label: Connection - TPCDS
object_type: connection
as_connection: Snowflake
database: tutorial_data
schema: tpcds
classDiagram
class Connection{
String unique_name
String label
const object_type
String as_connection
String database
String schema
}
- Type: string
- Required: Y
A unique name for the database and the schema. This must be unique across all repositories and subrepositories.
- Type: const
- Required: Y
The type of object defined by this file. For connections, this value
must be connection
.
- Type: string
- Required: Y
The name of the database connection as it appears in the consumption tool. This value does not need to be unique.
- Type: string
- Required: Y
The name of the database connection itself, excluding the schema.
- Type: string
- Required: Y
The source database used for this connection.
- Type: string
- Required: Y
The source schema used for this connection.