Skip to content

caretdev/dbt-iris

Folders and files

NameName
Last commit message
Last commit date

Latest commit

02a5bff · Feb 3, 2025

History

60 Commits
Feb 3, 2025
Feb 3, 2025
Feb 6, 2023
Feb 3, 2025
Dec 15, 2022
Sep 26, 2023
Apr 14, 2023
Sep 26, 2023
Feb 3, 2025
Nov 22, 2024
Aug 22, 2023
Nov 30, 2022
Dec 15, 2022
Feb 6, 2023
Nov 30, 2022
Feb 6, 2023
Feb 3, 2025
Feb 3, 2025
Dec 15, 2022
Feb 3, 2025
Feb 3, 2025

Repository files navigation

dbt logo

dbt enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications.

dbt is the T in ELT. Organize, cleanse, denormalize, filter, rename, and pre-aggregate the raw data in your warehouse so that it's ready for analysis.

InterSystems IRIS

InterSystems IRIS is a data platform that provides advanced technologies for building and deploying data-intensive applications. It is a high-performance, multidimensional database that is optimized for complex data and real-time analytics. It is designed to support a wide range of data management, analysis, and integration tasks, and provides features such as a high-performance database engine, a powerful analytics engine, and support for building and deploying microservices. InterSystems IRIS is used by organizations in a variety of industries, including healthcare, finance, and government, to support their data-intensive applications and business processes.

Start InterSystems IRIS Locally with Docker Compose

docker-compose.yml

version: '3'
services:
  iris:
    image: intersystemsdc/iris-community
    command:
      - -a
      # by default it starts with a requirement to change passwords for system users
      - iris session iris -U %SYS '##class(Security.Users).UnExpireUserPasswords("*")'
    ports:
      - 1972:1972
      - 52773:52773

Ports:

docker-compose up -d

Default login and password _SYSTEM and SYS

Configure dbt

.dbt/profiles.yml

...
    iris:
      type: iris
      host: localhost
      port: 1972
      user: _SYSTEM
      pass: SYS
      namespace: USER
      schema: dbt

Required parameters:

  • type = iris
  • host | hostname | server
  • port
  • namespace | database
  • user | username
  • pass | password
  • schema

Useful Links