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 2020/04/26 05:57:36 UTC

[GitHub] [airflow] gwind opened a new issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

gwind opened a new issue #8564:
URL: https://github.com/apache/airflow/issues/8564


   **Description**
   
   Add configable debug settings for delay pod delete when there is a `Error` state of pods.
   
   **Use case / motivation**
   
   In `apache/airflow:1.10.10` image.
   
   I'm deploy a airflow in k8s, want to use Kubernetes Executor for task excute.
   If the pod got Error state, airflow scheduler would delete pod immediately.
   So we can not see what happend, pod is deleted in some seconds.
   
   When I add `time.sleep()` in `kubernetes_executor.py:896` , like this:
   
   ```python
       def _change_state(self, key, state, pod_id, namespace):
           if state != State.RUNNING:
               if self.kube_config.delete_worker_pods:
                   for x in range(120):
                       self.log.info(str(x) + ": sleep 1s for...")
                       time.sleep(1)
                   self.kube_scheduler.delete_pod(pod_id, namespace)
                   self.log.info('Deleted pod: %s in namespace %s', str(key), str(namespace))
               try:
                   self.running.pop(key)
               except KeyError:
                   self.log.debug('Could not find key: %s', str(key))
           self.event_buffer[key] = state
   ```
   
   When trigger execute manully, I can see pod got `Error` state soon.
   
   ```
   ➜  ~ kubectl get po
   NAME                                                         READY   STATUS    RESTARTS   AGE
   airflow-564c84ff46-tn5mg                                     2/2     Running   0          67s
   examplebashoperatorrunme0-76fd68aa96d64e8c93c7c87904f3312a   0/1     Error     0          24s
   ```
   
   Watch pod's log:
   
   ```
   ➜  ~ kubectl logs -f examplebashoperatorrunme0-76fd68aa96d64e8c93c7c87904f3312a
   Traceback (most recent call last):
     File "/home/airflow/.local/bin/airflow", line 23, in <module>
       import argcomplete
   ModuleNotFoundError: No module named 'argcomplete'
   ```
   
   It's a error in container. It's easy to debug now.
   


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua commented on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua commented on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636700944


   I see airflow-dev-env variables:
   AIRFLOW__KUBERNETES__RUN_AS_USER 50000


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua edited a comment on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua edited a comment on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636699572


   Hi!
   Thanks!
   
   I've setup it as proposed:
   AIRFLOW__KUBERNETES__RUN_AS_USER: "50000"
   
   And it worked. :)


----------------------------------------------------------------
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



[GitHub] [airflow] ashb edited a comment on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ashb edited a comment on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-642517814


   This has already been added to master via https://github.com/apache/airflow/pull/7507 (and then renamed in https://github.com/apache/airflow/pull/8312/) -- we're hoping to include this in the 1.10.11 release.
   
   @gwind Are you happy that the above two PRs would give you the behaviour you are after (once they are released of course)


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua removed a comment on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua removed a comment on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636700944






----------------------------------------------------------------
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



[GitHub] [airflow] gwind commented on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
gwind commented on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636585115


   > Hi guys!
   > 
   > How did you solve the problem ?
   > 
   > > > ModuleNotFoundError: No module named 'argcomplete'
   > 
   > is there any setting etc to fix it???
   
   This bug caused by wrong user environment in the airflow POD mostly.
   
   You can use `kubectl exec -it ${THE_POD} bash` go to the inside of the airflow POD, then exec airflow command for testing. You would be found that which user is working then.


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua edited a comment on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua edited a comment on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636815318


   My config is next:
   
   `  AIRFLOW__KUBERNETES__GIT_REPO: "https://github.com/repo/airflow-dags.git"
       AIRFLOW__KUBERNETES__GIT_BRANCH: "master"
       AIRFLOW__KUBERNETES__GIT_SYNC_DEPTH: 1
       AIRFLOW__KUBERNETES__GIT_DAGS_FOLDER_MOUNT_POINT: "/opt/airflow/dags"
       AIRFLOW__KUBERNETES__GIT_SYNC_CONTAINER_REPOSITORY: "k8s.gcr.io/git-sync"
       AIRFLOW__KUBERNETES__GIT_SYNC_CONTAINER_TAG: "v3.1.2"
       AIRFLOW__KUBERNETES__GIT_SYNC_INIT_CONTAINER_NAME: "git-sync-clone"
       #AIRFLOW__KUBERNETES__GIT_SYNC_ONE_TIME: "True"
       AIRFLOW__KUBERNETES__DAGS_VOLUME_MOUNT_POINT: "/opt/airflow/dags"
       AIRFLOW__KUBERNETES__GIT_SYNC_RUN_AS_USER: 0`
   
   When I run dag I have executed git-sync container on worker pod, after that worker tries to load dag by path /opt/airflow/dags and cannot find it by id.... Everything work ok when I use loaded examples:
   AIRFLOW__CORE__LOAD_EXAMPLES: "True"


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua edited a comment on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua edited a comment on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636815318


   Do you have it workable? Please help me...
   My config is next:
   
   `  AIRFLOW__KUBERNETES__GIT_REPO: "https://github.com/repo/airflow-dags.git"
       AIRFLOW__KUBERNETES__GIT_BRANCH: "master"
       AIRFLOW__KUBERNETES__GIT_SYNC_DEPTH: 1
       AIRFLOW__KUBERNETES__GIT_DAGS_FOLDER_MOUNT_POINT: "/opt/airflow/dags"
       AIRFLOW__KUBERNETES__GIT_SYNC_CONTAINER_REPOSITORY: "k8s.gcr.io/git-sync"
       AIRFLOW__KUBERNETES__GIT_SYNC_CONTAINER_TAG: "v3.1.2"
       AIRFLOW__KUBERNETES__GIT_SYNC_INIT_CONTAINER_NAME: "git-sync-clone"
       #AIRFLOW__KUBERNETES__GIT_SYNC_ONE_TIME: "True"
       AIRFLOW__KUBERNETES__DAGS_VOLUME_MOUNT_POINT: "/opt/airflow/dags"
       AIRFLOW__KUBERNETES__GIT_SYNC_RUN_AS_USER: 0`
   
   When I run dag I have executed git-sync container on worker pod, after that worker tries to load dag by path /opt/airflow/dags and cannot find it by id.... Everything work ok when I use loaded examples:
   `AIRFLOW__CORE__LOAD_EXAMPLES: "True"`
   
   I have 
   `AIRFLOW__KUBERNETES__DAGS_IN_IMAGE: 'False'`
   
   Here are logs of pod:
   
   git-sync container
   `I0601 12:06:42.798468 1 main.go:270] starting up: ["/git-sync"]
   I0601 12:06:43.069084 1 main.go:487] cloned https://github.com/repo/airflow-dags.git
   I0601 12:06:43.069969 1 main.go:407] syncing to HEAD (ef310c9d9bfc2f7730eac3d90a0fedb427b0020b)
   I0601 12:06:43.268166 1 main.go:431] added worktree /git/rev-ef310c9d9bfc2f7730eac3d90a0fedb427b0020b for origin/master
   I0601 12:06:43.269662 1 main.go:451] reset worktree /git/rev-ef310c9d9bfc2f7730eac3d90a0fedb427b0020b to ef310c9d9bfc2f7730eac3d90a0fedb427b0020b`
   
   base:
   `[2020-06-01 12:06:47,684] {__init__.py:51} INFO - Using executor LocalExecutor
   [2020-06-01 12:06:47,685] {dagbag.py:396} INFO - Filling up the DagBag from /opt/airflow/dags/hello_world.py
   Traceback (most recent call last):
    File "/home/airflow/.local/bin/airflow", line 37, in <module>
    args.func(args)
    File "/home/airflow/.local/lib/python3.6/site-packages/airflow/utils/cli.py", line 75, in wrapper
    return f(*args, **kwargs)
    File "/home/airflow/.local/lib/python3.6/site-packages/airflow/bin/cli.py", line 523, in run
    dag = get_dag(args)
    File "/home/airflow/.local/lib/python3.6/site-packages/airflow/bin/cli.py", line 149, in get_dag
    'parse.'.format(args.dag_id))
   airflow.exceptions.AirflowException: dag_id could not be found: hello_world. Either the dag did not exist or it failed to parse.`


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua commented on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua commented on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636700617


   Can you please post env variables for your airflow-dev-web?


----------------------------------------------------------------
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



[GitHub] [airflow] kaxil closed issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
kaxil closed issue #8564:
URL: https://github.com/apache/airflow/issues/8564


   


----------------------------------------------------------------
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



[GitHub] [airflow] gwind edited a comment on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
gwind edited a comment on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636585115


   > Hi guys!
   > 
   > How did you solve the problem ?
   > 
   > > > ModuleNotFoundError: No module named 'argcomplete'
   > 
   > is there any setting etc to fix it???
   
   This bug caused by wrong user environment in the airflow POD mostly.
   
   You can use `kubectl exec -it ${THE_POD} bash` go to inside of the airflow POD, then run airflow command for testing. You would be found that which user is working then.


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua removed a comment on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua removed a comment on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636706213






----------------------------------------------------------------
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



[GitHub] [airflow] boring-cyborg[bot] commented on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
boring-cyborg[bot] commented on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-619488048


   Thanks for opening your first issue here! Be sure to follow the issue template!
   


----------------------------------------------------------------
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



[GitHub] [airflow] gwind edited a comment on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
gwind edited a comment on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636585115


   > Hi guys!
   > 
   > How did you solve the problem ?
   > 
   > > > ModuleNotFoundError: No module named 'argcomplete'
   > 
   > is there any setting etc to fix it???
   
   This bug caused by wrong user environment in the airflow POD mostly.
   
   You can use `kubectl exec -it ${THE_POD} bash` go to inside of the airflow POD, then exec airflow command for testing. You would be found that which user is working then.


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua edited a comment on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua edited a comment on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636815318


   Do you have it workable? Please help me...
   My config is next:
   
   `  AIRFLOW__KUBERNETES__GIT_REPO: "https://github.com/repo/airflow-dags.git"
       AIRFLOW__KUBERNETES__GIT_BRANCH: "master"
       AIRFLOW__KUBERNETES__GIT_SYNC_DEPTH: 1
       AIRFLOW__KUBERNETES__GIT_DAGS_FOLDER_MOUNT_POINT: "/opt/airflow/dags"
       AIRFLOW__KUBERNETES__GIT_SYNC_CONTAINER_REPOSITORY: "k8s.gcr.io/git-sync"
       AIRFLOW__KUBERNETES__GIT_SYNC_CONTAINER_TAG: "v3.1.2"
       AIRFLOW__KUBERNETES__GIT_SYNC_INIT_CONTAINER_NAME: "git-sync-clone"
       #AIRFLOW__KUBERNETES__GIT_SYNC_ONE_TIME: "True"
       AIRFLOW__KUBERNETES__DAGS_VOLUME_MOUNT_POINT: "/opt/airflow/dags"
       AIRFLOW__KUBERNETES__GIT_SYNC_RUN_AS_USER: 0`
   
   When I run dag I have executed git-sync container on worker pod, after that worker tries to load dag by path /opt/airflow/dags and cannot find it by id.... Everything work ok when I use loaded examples:
   `AIRFLOW__CORE__LOAD_EXAMPLES: "True"`
   
   I have 
   `AIRFLOW__KUBERNETES__DAGS_IN_IMAGE: 'False'`


----------------------------------------------------------------
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



[GitHub] [airflow] ashb commented on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ashb commented on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-642517814


   This has already been added to master via https://github.com/apache/airflow/pull/7507 (and then renamed in https://github.com/apache/airflow/pull/8312/) -- we're hoping to include this in the 1.10.11 release.


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua edited a comment on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua edited a comment on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636700944


   I see airflow-dev-env variables:
   AIRFLOW__KUBERNETES__RUN_AS_USER 50000
   
   It works.


----------------------------------------------------------------
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



[GitHub] [airflow] kaxil commented on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
kaxil commented on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-786979304


   Looks like the issues was fixed by  #7507 (and then renamed in #8312)


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua commented on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua commented on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636551393


   Hi guys!
   
   How did you solve the problem ?
   
   >> ModuleNotFoundError: No module named 'argcomplete'
   
   is there any setting etc to fix it???


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua edited a comment on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua edited a comment on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636815318


   Do you have it workable? Please help me...
   My config is next:
   
   `  AIRFLOW__KUBERNETES__GIT_REPO: "https://github.com/repo/airflow-dags.git"
       AIRFLOW__KUBERNETES__GIT_BRANCH: "master"
       AIRFLOW__KUBERNETES__GIT_SYNC_DEPTH: 1
       AIRFLOW__KUBERNETES__GIT_DAGS_FOLDER_MOUNT_POINT: "/opt/airflow/dags"
       AIRFLOW__KUBERNETES__GIT_SYNC_CONTAINER_REPOSITORY: "k8s.gcr.io/git-sync"
       AIRFLOW__KUBERNETES__GIT_SYNC_CONTAINER_TAG: "v3.1.2"
       AIRFLOW__KUBERNETES__GIT_SYNC_INIT_CONTAINER_NAME: "git-sync-clone"
       #AIRFLOW__KUBERNETES__GIT_SYNC_ONE_TIME: "True"
       AIRFLOW__KUBERNETES__DAGS_VOLUME_MOUNT_POINT: "/opt/airflow/dags"
       AIRFLOW__KUBERNETES__GIT_SYNC_RUN_AS_USER: 0`
   
   When I run dag I have executed git-sync container on worker pod, after that worker tries to load dag by path /opt/airflow/dags and cannot find it by id.... Everything work ok when I use loaded examples:
   AIRFLOW__CORE__LOAD_EXAMPLES: "True"


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua commented on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua commented on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636706213


   Ah no! Seems like I have another exception now :)) Dag is not found.


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua commented on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua commented on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636815318


   My config is next:
   
   `AIRFLOW__KUBERNETES__GIT_REPO: "https://github.com/repo/airflow-dags.git"
       AIRFLOW__KUBERNETES__GIT_BRANCH: "master"
       AIRFLOW__KUBERNETES__GIT_SYNC_DEPTH: 1
       AIRFLOW__KUBERNETES__GIT_DAGS_FOLDER_MOUNT_POINT: "/opt/airflow/dags"
       AIRFLOW__KUBERNETES__GIT_SYNC_CONTAINER_REPOSITORY: "k8s.gcr.io/git-sync"
       AIRFLOW__KUBERNETES__GIT_SYNC_CONTAINER_TAG: "v3.1.2"
       AIRFLOW__KUBERNETES__GIT_SYNC_INIT_CONTAINER_NAME: "git-sync-clone"
       #AIRFLOW__KUBERNETES__GIT_SYNC_ONE_TIME: "True"
   
       #AIRFLOW__KUBERNETES__DAGS_VOLUME_SUBPATH
       AIRFLOW__KUBERNETES__DAGS_VOLUME_MOUNT_POINT: "/opt/airflow/dags"
   
       AIRFLOW__KUBERNETES__GIT_SYNC_RUN_AS_USER: 0`
   
   When I run dag I have executed git-sync container on worker pod, after that worker tries to load dag by path /opt/airflow/dags and cannot find it by id.... Everything work ok when I use loaded examples:
   AIRFLOW__CORE__LOAD_EXAMPLES: "True"


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua edited a comment on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua edited a comment on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636706213


   Ah no! Seems like I have another exception now :)) Dag is not found.
   
   I'm using git sync... Why this does not work for KubernetesExecutor?


----------------------------------------------------------------
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



[GitHub] [airflow] ousatov-ua commented on issue #8564: Can we add configable debug settings for delay pod delete when there is a `Error` state of pods ?

Posted by GitBox <gi...@apache.org>.
ousatov-ua commented on issue #8564:
URL: https://github.com/apache/airflow/issues/8564#issuecomment-636699572


   Hi!
   Thanks!
   
   I've setup it as proposed:
   AIRFLOW__KUBERNETES__RUN_AS_USER: "50000"
   
   And it did not help.... :((


----------------------------------------------------------------
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