This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 25e482e03bdab7ff65dc61c43333e6868a13f7ae Author: Arun Kumar <[email protected]> AuthorDate: Fri Feb 19 16:25:26 2021 +0530 Fix misleading statement on sqlite (#14317) The statement ``` By default, Airflow uses **SQLite**, which is *not* intended for development purposes only. ``` is confusing. If `postgres/mysql` are production worthy db backends, and `sqlite` as default db for `airflow` is for development purposes only, this statement is not correct. If I'm mistaken and `sqlite` is for both `production` and `development` purposes, please ignore this PR (cherry picked from commit 0d366c1f297ec25b5f8e01c6d72a312e2ee64d4d) --- docs/apache-airflow/howto/set-up-database.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apache-airflow/howto/set-up-database.rst b/docs/apache-airflow/howto/set-up-database.rst index 54657db..153ca80 100644 --- a/docs/apache-airflow/howto/set-up-database.rst +++ b/docs/apache-airflow/howto/set-up-database.rst @@ -28,7 +28,7 @@ Choosing database backend ------------------------- If you want to take a real test drive of Airflow, you should consider setting up a database backend to **MySQL** and **PostgresSQL**. -By default, Airflow uses **SQLite**, which is not intended for development purposes only. +By default, Airflow uses **SQLite**, which is intended for development purposes only. Airflow supports the following database engine versions, so make sure which version you have. Old versions may not support all SQL statements.
