chris-aeviator
chris-aeviator
> if we can get something to render the graphs(roughly) within the terminal and not require x11 the pi could run just headless and guiless fully which would be awesome!...
> ``` > build: { > extend(config, ctx) { > config.output.globalObject = 'this' > config.module.rules.push( > { > test: /\.pdf$/, > loader: 'url-loader' > } > ) > }, >...
@jerrychico this is an issue with the source of your PDF - it seems like cdn.filestackcontent.com does not allow you to access their files directly in a browser. You could...
take a look at https://github.com/puckel/docker-airflow/issues/135
usually you should do that in a docker file while building the container. That means whenever you need more dependencies inside your airflow container(s), you'll edit your docker file and...
Try to rebuild the airflow Dockerfile (not FROM) and set `ADDITIONAL_DEV_APT_DEPS`…airflow is a pain to setup for new use cases…
I'm using airflow with dask scheduler + workers. I'm experiencing the same issue, the message get's printed in the **dask** workers logs: ``` sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) no such table: task_instance [SQL:...
having this with celery as well as dask – local is not working for me EDIT: I have a af scheduler, a dask scheduler (3 dask workers) and a af...
@tooptoop4 The trick is to create the same env on the airflow side and on the dask side and then use the dask executor (https://airflow.apache.org/howto/executor/use-dask.html) . When pip installing airflow...
@vasinata did you check the steps described in my last comment? Both the worker and the scheduler need to have the same python packages, the same dags (at least the...