Open seanadkinson opened 7 years ago
Hi there, thanks for creating this product.
I'd like to re-use the same SQL command across different pipelines, providing a simple variable to change how it works. Take for example:
- step_type: extract-rds host_name: db database: mydb sql: | SELECT id, firstName, lastName FROM user u WHERE customer = '$CUSTOMER';
Is there a way for me to share this step across pipelines, and to provide $CUSTOMER?
$CUSTOMER
Thank you!
We solved this in our ETL framework with Ruby. https://github.com/wunderlist/night-shift/
Hi there, thanks for creating this product.
I'd like to re-use the same SQL command across different pipelines, providing a simple variable to change how it works. Take for example:
Is there a way for me to share this step across pipelines, and to provide
$CUSTOMER
?Thank you!