Hi everyone, I have manual run elt from mysql to ...
# getting-started
e
Hi everyone, I have manual run elt from mysql to redshift in meltano elt command. It was a success. Then I tried to run it periodically by schedule run it through Meltano's Airflow by this command
Copy code
meltano --environment=prod schedule mysql-to-redshift-prod tap-mysql target-redshift "38 9 * * *"
Then, I open airflow webserver to force run it. However, it happens that the task is failed. What do I miss here? Here is the airflow webserver browser view:
p
@edi_wijaya is this using a local airflow instance? Usually on the command line I'd recommend putting it in debug mode to get more details. I think dropping
MELTANO_CLI_LOG_LEVEL=debug
into your .env temporarily will make Airflow run Meltano in debug mode then you'll see more details
e
Thank you. I am now know a better hints 😃