You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/04/14 05:25:10 UTC

[GitHub] [airflow] gen16k edited a comment on issue #15340: helm install airflow in namespace get error: File "", line 32, in TimeoutError: There are still unapplied migrations after 60 seconds

gen16k edited a comment on issue #15340:
URL: https://github.com/apache/airflow/issues/15340#issuecomment-819236137


   I faced this problem some days ago.
   However, I tried install airflow using scripts shown below today and it seems working .
   
   
   ```bash
   #!/bin/bash -x
   rm -rf airflow
   git clone https://github.com/apache/airflow.git
   cd airflow/chart
   helm dependency update
   helm install airflow . -n airflow
   ```
   
   - results
   ```
   $ kubectl get pod
   NAME                                READY   STATUS    RESTARTS   AGE
   airflow-postgresql-0                1/1     Running   0          88s
   airflow-scheduler-db9d85f4d-5nx6j   2/2     Running   0          88s
   airflow-statsd-5556dc96bc-c24f5     1/1     Running   0          88s
   airflow-webserver-f4f4cb77f-xwgcn   1/1     Running   0          88s
   ```
   
   - Logs of wait-for-airflow-maigrations container
   ```
   (⎈ |fuji-k8s:airflow)❯ k logs -f airflow-scheduler-db9d85f4d-5nx6j wait-for-airflow-migrations
   DB_BACKEND=postgresql
   DB_HOST=airflow-postgresql.airflow.svc.cluster.local
   DB_PORT=5432
   ........
   [2021-04-14 05:16:38,136] {migration.py:155} INFO - Context impl PostgresqlImpl.
   [2021-04-14 05:16:38,137] {migration.py:162} INFO - Will assume transactional DDL.
   [2021-04-14 05:16:42,390] {opentelemetry_tracing.py:29} INFO - This service is instrumented using OpenTelemetry. OpenTelemetry could not be imported; please add opentelemetry-api and opentelemetry-instrumentation packages in order to get BigQuery Tracing data.
   [2021-04-14 05:16:44,341] {<string>:35} INFO - Waiting for migrations... 1 second(s)
   [2021-04-14 05:16:45,348] {<string>:35} INFO - Waiting for migrations... 2 second(s)
   [2021-04-14 05:16:46,351] {<string>:35} INFO - Waiting for migrations... 3 second(s)
   [2021-04-14 05:16:47,355] {<string>:35} INFO - Waiting for migrations... 4 second(s)
   [2021-04-14 05:16:48,367] {<string>:35} INFO - Waiting for migrations... 5 second(s)
   [2021-04-14 05:16:49,371] {<string>:35} INFO - Waiting for migrations... 6 second(s)
   [2021-04-14 05:16:50,375] {<string>:35} INFO - Waiting for migrations... 7 second(s)
   [2021-04-14 05:16:51,380] {<string>:35} INFO - Waiting for migrations... 8 second(s)
   ```
   - My environemnt
     - OS: ubuntu 20.04
     - Kuberentes: v1.20.2 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org