How to Create a New Databend Cloud Project in dbt Cloud?

Create a dbt Cloud project, connect to Snowflake, & initialize for data transformation. Learn about dbt Cloud CLI & available plans.
Published
May 10, 2024
Author

How to Create a New Project in dbt Cloud?

Setting up a new project in dbt Cloud is the first step towards integrating dbt Cloud with dbt Developer Hub. This process involves entering a project name and selecting the warehouse type. In this context, Snowflake is chosen as the warehouse.


// Steps to create a new project in dbt Cloud
1. Login to dbt Cloud
2. Click on 'New Project'
3. Enter the project name
4. Click 'Continue'
5. Select 'Snowflake' as the warehouse
6. Click 'Next'

The above code outlines the steps to create a new project in dbt Cloud. It's important to note that you need to have a dbt Cloud account with administrator access to perform these steps.

  • dbt Cloud: A web-based UI that allows users to develop, test, schedule, and investigate data models.
  • Snowflake: A cloud-based data warehousing platform used in this context as the warehouse for the dbt Cloud project.
  • Project: A specific set of data models and related files within dbt.

How to Set Up a Connection with Snowflake in dbt Cloud?

After creating a new project, the next step is to set up a connection with Snowflake. This involves entering the Snowflake settings and development credentials, and testing the connection.


// Steps to set up a connection with Snowflake in dbt Cloud
1. Enter the Snowflake settings
2. Enter the Snowflake development credentials
3. Click 'Test Connection'
4. Click 'Next' if the connection test succeeds

The above code outlines the steps to set up a connection with Snowflake in dbt Cloud. Successful connection setup allows for data transfer between the dbt Cloud project and Snowflake.

  • Snowflake Settings: The configuration details required to connect dbt Cloud with Snowflake.
  • Development Credentials: The authentication details required to access the Snowflake development environment.
  • Test Connection: A functionality in dbt Cloud to verify the successful connection with Snowflake.

How to Initialize a New Project in dbt Cloud?

Once the connection with Snowflake is set up, you can initialize a new project in dbt Cloud. This process involves creating sample model files in the project directory.


// Steps to initialize a new project in dbt Cloud
1. Click on 'Initialize Project'
2. dbt creates sample model files in the project directory

The above code outlines the steps to initialize a new project in dbt Cloud. Initialization prepares the project for further development.

  • Initialize Project: A process in dbt Cloud to prepare a new project for development.
  • Sample Model Files: Example data models created by dbt during project initialization.

What is dbt Cloud CLI?

dbt Cloud CLI is a command-line interface that natively supports developing in dbt Cloud. It allows users to perform various dbt operations directly from the command line.


// Example of using dbt Cloud CLI
1. Open the command line
2. Run 'dbt init' to set up a new project

The above code demonstrates how to use dbt Cloud CLI to initialize a new project. The 'dbt init' command sets up a new project from the command line.

  • dbt Cloud CLI: A command-line interface for dbt Cloud that supports native development.
  • dbt init: A command in dbt Cloud CLI to initialize a new project.

What are the Available Plans in dbt Cloud?

dbt Cloud offers a 14-day free trial, after which users can continue for free on the Developer plan or upgrade to the Team or Enterprise plan. The Developer plan provides dbt Cloud access for a single developer but does not include API access.


// Example of dbt Cloud plans
1. 14-day free trial
2. Developer plan (free, single developer, no API access)
3. Team plan (paid, multiple developers, includes API access)
4. Enterprise plan (paid, unlimited developers, includes API access)

The above code outlines the different plans available in dbt Cloud. Each plan offers different features and is suitable for different user needs.

  • 14-day free trial: A trial period offered by dbt Cloud for users to test the platform.
  • Developer Plan: A free plan in dbt Cloud for a single developer without API access.
  • Team Plan: A paid plan in dbt Cloud for multiple developers with API access.
  • Enterprise Plan: A paid plan in dbt Cloud for unlimited developers with API access.

Keep reading

See all