According to https://airflow.apache.org/docs/apache-airflow/stable/administration-and-deployment/priority-weight.html (as well as a conversation I had on the airflow slack):
absolute: The effective weight is the exact priority_weight specified without additional weighting. You may want to do this when you know exactly what priority weight each task should have. Additionally, when set to absolute, there is bonus effect of significantly speeding up the task creation process as for very large DAGs.
We might benefit from setting an absolute prority_weight of 1 to each dumps tasks, as it might make the DAG DB serialization much faster.


