I cant find a dbt plugin for clickhouse. I already...
# plugins-general
a
I cant find a dbt plugin for clickhouse. I already have a dbt project though, can I still use meltano to schedule it to run?
e
Hi @andy_smith! You can use dbt-clickhouse as a _custom plugin_:
Copy code
plugins:
  transformers:
  - name: dbt
    pip_url: dbt-core dbt-clickhouse
    variant: clickhouse
    namespace: dbt
    commands:
      build:
        args: build
      clean:
        args: clean
      compile:
        args: compile
      debug:
        args: debug
      deps:
        args: deps
      docs-generate:
        args: docs generate
      docs-serve:
        args: docs serve
      freshness:
        args: source freshness
      run:
        args: run
      seed:
        args: seed
      snapshot:
        args: snapshot
      test:
        args: test
    settings: {<settings for dbt-clickhouse>}
The missing Hub wrapper would let you run an
initialize
command to get your dbt project started, but with the raw form above you'll have to do that manually.
a
Ah amazing, that's a relief.