Hi all, when I tried to ingest bigquery metadata, ...
# getting-started
s
Hi all, when I tried to ingest bigquery metadata, how do I put table info of bigquery(ex, Last modified) into “Properties” of the dataset? I would like to use this information to tag datasets which are ‘out-of-date’.
b
A custom transformer that queries Bigquery and populate the properties tab for each dataset would work. Or you could try submitting a PR that modifies the existing ingestion behavior for Bigquery
m
last modified is automatically ingested when you use the bigquery-usage connector, and have the default setting for
include_operational_stats
which is True
s
@mammoth-bear-12532 I tried to use
bigquery-usage
to ingest data. but I still can not have any properties in the properties tab… Do you know the reason? Thanks.
Copy code
source:
    type: bigquery-usage
    config:
        projects:
            - xxx
        credential:
            project_id: xxx
            private_key_id: '${BQ_KEY_ID}'
            private_key: '${BQ_KEY}'
            client_email: '${BQ_EMAIL}'
            client_id: '${BQ_CLIENT_ID}'
        include_operational_stats: true