-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from hoverinc/update-airflow-example
Updated the Airflow example for tableau_datasource_update DAG
- Loading branch information
Showing
10 changed files
with
815 additions
and
602 deletions.
There are no files selected for viewing
19 changes: 0 additions & 19 deletions
19
airflow_example/dags/tableau_datasource_update/configs/column_config.json
This file was deleted.
Oops, something went wrong.
72 changes: 0 additions & 72 deletions
72
airflow_example/dags/tableau_datasource_update/configs/column_persona_config.json
This file was deleted.
Oops, something went wrong.
123 changes: 123 additions & 0 deletions
123
airflow_example/dags/tableau_datasource_update/configs/column_personas.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
boolean_dimension: | ||
datatype: boolean | ||
role: dimension | ||
role_type: nominal | ||
metadata: | ||
remote_type: 11 | ||
aggregation: Count | ||
|
||
continuous_decimal_dimension: | ||
datatype: real | ||
role: dimension | ||
role_type: quantitative | ||
metadata: | ||
remote_type: 5 | ||
precision: 15 | ||
aggregation: Sum | ||
|
||
continuous_decimal_measure: | ||
datatype: real | ||
role: measure | ||
role_type: quantitative | ||
metadata: | ||
remote_type: 5 | ||
precision: 15 | ||
aggregation: Sum | ||
|
||
continuous_number_dimension: | ||
datatype: integer | ||
role: dimension | ||
role_type: quantitative | ||
metadata: | ||
remote_type: 131 | ||
scale: 0 | ||
precision: 38 | ||
aggregation: Sum | ||
|
||
continuous_number_measure: | ||
datatype: integer | ||
role: measure | ||
role_type: quantitative | ||
metadata: | ||
remote_type: 131 | ||
scale: 0 | ||
precision: 38 | ||
aggregation: Sum | ||
|
||
date_dimension: | ||
datatype: date | ||
role: dimension | ||
role_type: ordinal | ||
metadata: | ||
remote_type: 7 | ||
aggregation: Year | ||
|
||
date_measure: | ||
datatype: date | ||
role: measure | ||
role_type: ordinal | ||
metadata: | ||
remote_type: 7 | ||
aggregation: Year | ||
|
||
datetime_dimension: | ||
datatype: datetime | ||
role: dimension | ||
role_type: ordinal | ||
metadata: | ||
remote_type: 7 | ||
aggregation: Year | ||
|
||
datetime_measure: | ||
datatype: datetime | ||
role: measure | ||
role_type: ordinal | ||
metadata: | ||
remote_type: 7 | ||
aggregation: Year | ||
|
||
discrete_decimal_dimension: | ||
datatype: real | ||
role: dimension | ||
role_type: ordinal | ||
metadata: | ||
remote_type: 5 | ||
precision: 15 | ||
aggregation: Sum | ||
|
||
discrete_decimal_measure: | ||
datatype: real | ||
role: measure | ||
role_type: ordinal | ||
metadata: | ||
remote_type: 5 | ||
precision: 15 | ||
aggregation: Sum | ||
|
||
discrete_number_dimension: | ||
datatype: integer | ||
role: dimension | ||
role_type: ordinal | ||
metadata: | ||
remote_type: 131 | ||
scale: 0 | ||
precision: 38 | ||
aggregation: Sum | ||
|
||
discrete_number_measure: | ||
datatype: integer | ||
role: measure | ||
role_type: ordinal | ||
metadata: | ||
remote_type: 131 | ||
scale: 0 | ||
precision: 38 | ||
aggregation: Sum | ||
|
||
string_dimension: | ||
datatype: string | ||
role: dimension | ||
role_type: nominal | ||
metadata: | ||
remote_type: 129 | ||
aggregation: Count |
Oops, something went wrong.