This dbt package contains macros that:
- can be (re)used across dbt projects running on Athena
- define Athena-specific implementations of dispatched macros from other packages
Add to your packages.yml
packages:
- git: https://github.com/Project-J/athena-facebook-ads
revision: 0.1.0
For dbt < v0.19.2, add the following lines to your dbt_project.yml
:
vars:
dbt_utils_dispatch_list: ["athena_facebook_ads"]
For dbt >= v0.19.2, , add the following lines to your dbt_project.yml
:
dispatch:
- macro_namespace: facebook_ads
search_order: [athena_facebook_ads, facebook_ads]
This package provides "shims" for facebook_ads
.
In the future more shims could be added to this repository.
We welcome contributions to this repo! To contribute a new feature or a fix,
please open a Pull Request with 1) your changes and 2) updated documentation for
the README.md
file.