victorious-dream-46349
10/27/2021, 4:27 PMterraform provider for datahub (and yes, we will opensource once it is matured). Something like below will add dataset for bigquery with schemas defined.
resource "datahub_dataset" "test" {
platform = "bigquery"
name = "testdataset"
origin = "DEV"
owner = "dinesh"
schema_name = "test"
field {
field_path = "name"
native_datatype = "String()"
recursive = false
nullable = true
}
field {
field_path = "address"
native_datatype = "String()"
recursive = true
nullable = false
}
tags = ["tag1", "tag2"]
upstreams = [
datahub_dataset.gcs.id,
"urn:li:dataset:(urn:li:dataPlatform:gcs,testgcs,DEV)"
]
}
Question: For this terraform provider, we are using rest-api based results. Will it scale ? Should we use graphql based apis ?mammoth-bear-12532
mammoth-bear-12532
victorious-dream-46349
10/28/2021, 5:40 AMmammoth-bear-12532
early-airline-85277
12/20/2022, 4:08 PM