agreeable-hamburger-38305
10/27/2021, 11:34 PM>> helm install datahub datahub/datahub --set-string datahub-ingestion-cron.enabled=true --dry-run
>> dependencies.go:49: Warning: Condition path 'datahub-ingestion-cron.enabled' for chart datahub-ingestion-cron returned non-bool valueearly-lamp-41924
10/28/2021, 1:57 AMagreeable-hamburger-38305
10/28/2021, 3:23 AMearly-lamp-41924
10/28/2021, 4:13 AMearly-lamp-41924
10/28/2021, 4:13 AMearly-lamp-41924
10/28/2021, 4:18 AMdatahub-ingestion-cron:
enabled: true
crons:
sample:
schedule: "0 * * * *" # Every hour
recipe:
configmapName: sample-recipe
fileName: sample_recipe.ymlearly-lamp-41924
10/28/2021, 4:19 AMearly-lamp-41924
10/28/2021, 4:19 AMkubectl create configmap sample-recipe --from-file=sample_recipe.yml -n <<namespace>>early-lamp-41924
10/28/2021, 4:22 AMearly-lamp-41924
10/28/2021, 4:22 AMsource:
type: "file"
config:
filename: "/datahub-ingestion/examples/mce_files/bootstrap_mce.json"
sink:
type: "datahub-rest"
config:
server: '<http://datahub-datahub-gms:8080>'agreeable-hamburger-38305
10/28/2021, 4:25 AMearly-lamp-41924
10/28/2021, 4:28 AMearly-lamp-41924
10/28/2021, 4:29 AMearly-lamp-41924
10/28/2021, 4:29 AMearly-lamp-41924
10/28/2021, 4:29 AMagreeable-hamburger-38305
10/28/2021, 4:52 AMsample_recipe.yml to create the sample-recipe configmap, why do I still need to specify in values.yml both the configmapName and fileName ? Can a configmap actually have multiple files in it?early-lamp-41924
10/28/2021, 4:53 AMearly-lamp-41924
10/28/2021, 4:53 AMearly-lamp-41924
10/28/2021, 4:54 AMagreeable-hamburger-38305
10/28/2021, 4:56 AMlittle-breakfast-38102
09/06/2022, 4:09 AMrecipe:
configmapName: recipes
filename: hive.ymlI need help with Syntax on how to run multiple yml files. Appreciate any help!
little-breakfast-38102
09/07/2022, 4:09 PMincalculable-ocean-74010
09/07/2022, 4:17 PMcrons is a yaml dictionary
datahub-ingestion-cron:
enabled: true
crons:
hive:
schedule: "0 * * * *" # Every hour
recipe:
configmapName: recipe-config
fileName: hive_recipe.yml
druid:
schedule: "0 * * * *" # Every hour
recipe:
configmapName: recipe-config
fileName: druid_recipe.yml
snowflake:
schedule: "0 * * * *" # Every hour
recipe:
configmapName: recipe-config
fileName: snowflake_recipe.ymllittle-breakfast-38102
09/07/2022, 5:26 PM