github.com/pachyderm/pachyderm@v1.13.4/doc/docs/1.9.x/troubleshooting/pipeline_troubleshooting.md (about)

     1  # Troubleshooting Pipelines
     2  
     3  ## Introduction
     4  
     5  Job failures can occur for a variety of reasons, but they generally categorize into 3 failure types: 
     6  
     7  1. [User-code-related](#user-code-failures): An error in the user code running inside the container or the json pipeline config.
     8  1. [Data-related](#data-failures): A problem with the input data such as incorrect file type or file name.
     9  1. [System- or infrastructure-related](#system-level-failures): An error in Pachyderm or Kubernetes such as missing credentials, transient network errors, or resource constraints (for example, out-of-memory--OOM--killed).
    10  
    11  In this document, we'll show you the tools for determining what kind of failure it is.  For each of the failure modes, we’ll describe Pachyderm’s and Kubernetes’s specific retry and error-reporting behaviors as well as typical user triaging methodologies. 
    12  
    13  Failed jobs in a pipeline will propagate information to downstream pipelines with empty commits to preserve provenance and make tracing the failed job easier.  A failed job is no longer running.
    14  
    15  In this document, we'll describe what you'll see, how Pachyderm will respond, and techniques for triaging each of those three categories of failure. 
    16  
    17  At the bottom of the document, we'll provide specific troubleshooting steps for [specific scenarios](#specific-scenarios).
    18  
    19  - [Pipeline exists but never runs](#pipeline-exists-but-never-runs) 
    20  - [All your pods or jobs get evicted](#all-your-pods-or-jobs-get-evicted)
    21  
    22  ### Determining the kind of failure
    23  
    24  First off, you can see the status of Pachyderm's jobs with `pachctl list job`, which will show you the status of all jobs.  For a failed job, use `pachctl inspect job <job-id>` to find out more about the failure.  The different categories of failures are addressed below.
    25  
    26  ### User Code Failures
    27  
    28  When there’s an error in user code, the typical error message you’ll see is 
    29  
    30  ```
    31  failed to process datum <UUID> with error: <user code error>
    32  ```
    33  
    34  This means pachyderm successfully got to the point where it was running user code, but that code exited with a non-zero error code. If any datum in a pipeline fails, the entire job will be marked as failed, but datums that did not fail will not need to be reprocessed on future jobs.   You can use `pachctl inspect datum <job-id> <datum-id>` or `pachctl logs` with the `--pipeline`, `--job` or `--datum` flags to get more details.
    35  
    36  There are some cases where users may want mark a datum as successful even for a non-zero error code by setting the `transform.accept_return_code` field in the pipeline config .
    37  
    38  #### Retries
    39  Pachyderm will automatically retry user code three (3) times before marking the datum as failed. This mitigates datums failing for transient connection reasons.
    40  
    41  #### Triage
    42  `pachctl logs --job=<job_ID>` or `pachctl logs --pipeline=<pipeline_name>` will print out any logs from your user code to help you triage the issue. Kubernetes will rotate logs occasionally so if nothing is being returned, you’ll need to make sure that you have a persistent log collection tool running in your cluster. If you set `enable_stats:true` in your pachyderm pipeline, pachyderm will persist the user logs for you. 
    43  
    44  In cases where user code is failing, changes first need to be made to the code and followed by updating the pachyderm pipeline. This involves building a new docker container with the corrected code, modifying the pachyderm pipeline config to use the new image, and then calling `pachctl update pipeline -f updated_pipeline_config.json`. Depending on the issue/error, user may or may not want to also include the `--reprocess` flag with `update pipeline`. 
    45  
    46  ### Data Failures
    47  
    48  When there’s an error in the data, this will typically manifest in a user code error such as 
    49  
    50  ```
    51  failed to process datum <UUID> with error: <user code error>
    52  ```
    53  
    54  This means pachyderm successfully got to the point where it was running user code, but that code exited with a non-zero error code, usually due to being unable to find a file or a path, a misformatted file, or incorrect fields/data within a file. If any datum in a pipeline fails, the entire job will be marked as failed. Datums that did not fail will not need to be reprocessed on future jobs.
    55  
    56  #### Retries
    57  Just like with user code failures, Pachyderm will automatically retry running a datum 3 times before marking the datum as failed. This mitigates datums failing for transient connection reasons.
    58  
    59  #### Triage
    60  Data failures can be triaged in a few different way depending on the nature of the failure and design of the pipeline. 
    61  
    62  In some cases, where malformed datums are expected to happen occasionally, they can be “swallowed” (e.g. marked as successful using `transform.accept_return_codes` or written out to a “failed_datums” directory and handled within user code). This would simply require the necessary updates to the user code and pipeline config as described above.  For cases where your code detects bad input data, a "dead letter queue" design pattern may be needed.  Many pachyderm developers use a special directory in each output repo for "bad data" and pipelines with globs for detecting bad data direct that data for automated and manual intervention.
    63  
    64  Pachyderm's engineering team is working on changes to the Pachyderm Pipeline System in a future release that may make implementation of design patterns like this easier.   [Take a look at the pipeline design changes for pachyderm 1.9](https://github.com/pachyderm/pachyderm/issues/3345)
    65  
    66  If a few files as part of the input commit are causing the failure, they can simply be removed from the HEAD commit with `start commit`, `delete file`, `finish commit`. The files can also be corrected in this manner as well. This method is similar to a revert in Git -- the “bad” data will still live in the older commits in Pachyderm, but will not be part of the HEAD commit and therefore not processed by the pipeline.
    67  
    68  If the entire commit is bad and you just want to remove it forever as if it never happened, `delete commit` will both remove that commit and all downstream commits and jobs that were created as downstream effects of that input data. 
    69  
    70  ### System-level Failures
    71  
    72  System-level failures are the most varied and often hardest to debug. We’ll outline a few common patterns and triage steps. Generally, you’ll need to look at deeper logs to find these errors using `pachctl logs --pipeline=<pipeline_name> --raw` and/or `--master` and `kubectl logs pod <pod_name>`.
    73  
    74  Here are some of the most common system-level failures:
    75  
    76  - Malformed or missing credentials such that a pipeline cannot connect to object storage, registry, or other external service. In the best case, you’ll see `permission denied` errors, but in some cases you’ll only see “does not exist” errors (this is common reading from object stores)
    77  - Out-of-memory (OOM) killed or other resource constraint issues such as not being able to schedule pods on available cluster resources. 
    78  - Network issues trying to connect Pachd, etcd, or other internal or external resources
    79  - Failure to find or pull a docker image from the registry
    80  
    81  #### Retries
    82  For system-level failures, Pachyderm or Kubernetes will generally continually retry the operation with exponential backoff. If a job is stuck in a given state (e.g. starting, merging) or a pod is in `CrashLoopBackoff`, those are common signs of a system-level failure mode.
    83  
    84  
    85  #### Triage
    86  Triaging system failures varies as widely as the issues do themselves. Here are options for the common issues mentioned previously.
    87  - Credentials: check your secrets in k8s, make sure they’re added correctly to the pipeline config, and double check your roles/perms within the cluster
    88  - OOM: Increase the memory limit/request or node size for your pipeline. If you are very resource constrained, making your datums smaller to require less resources may be necessary. 
    89  - Network: Check to make sure etcd and pachd are up and running, that k8s DNS is correctly configured for pods to resolve each other and outside resources, firewalls and other networking configurations allow k8s components to reach each other, and ingress controllers are configured correctly
    90  - Check your container image name in the pipeline config and image_pull_secret.
    91  
    92  ## Specific scenarios
    93  
    94  ### All your pods or jobs get evicted
    95  
    96  #### Symptom
    97  
    98  Running:
    99  
   100  ```
   101  $ kubectl get all
   102  ```
   103  
   104  shows a bunch of pods that are marked `Evicted`. If you `kubectl describe ...` one of those evicted pods, you see an error saying that it was evicted due to disk pressure.
   105  
   106  
   107  #### Recourse
   108  
   109  Your nodes are not configured with a big enough root volume size.  You need to make sure that each node's root volume is big enough to store the biggest datum you expect to process anywhere on your DAG plus the size of the output files that will be written for that datum.
   110  
   111  Let's say you have a repo with 100 folders. You have a single pipeline with this repo as an input, and the glob pattern is `/*`. That means each folder will be processed as a single datum. If the biggest folder is 50GB and your pipeline's output is about 3 times as big, then your root volume size needs to be bigger than:
   112  
   113  ```
   114  50 GB (to accommodate the input) + 50 GB x 3 (to accommodate the output) = 200GB
   115  ```
   116  
   117  In this case we would recommend 250GB to be safe. If your root volume size is less than 50GB (many defaults are 20GB), this pipeline will fail when downloading the input. The pod may get evicted and rescheduled to a different node, where the same thing will happen.
   118  
   119  ### Pipeline exists but never runs
   120  
   121  #### Symptom
   122  
   123  You can see the pipeline via:
   124  
   125  ```
   126  $ pachctl list pipeline
   127  ```
   128  
   129  But if you look at the job via:
   130  
   131  ```
   132  $ pachctl list job
   133  ```
   134  
   135  It's marked as running with `0/0` datums having been processed.  If you inspect the job via:
   136  
   137  ```
   138  $ pachctl inspect job
   139  ```
   140  
   141  You don't see any worker set. E.g:
   142  
   143  ```
   144  Worker Status:
   145  WORKER              JOB                 DATUM               STARTED             
   146  ...
   147  ```
   148  
   149  If you do `kubectl get pod` you see the worker pod for your pipeline, e.g:
   150  
   151  ```
   152  po/pipeline-foo-5-v1-273zc
   153  ```
   154  
   155  But it's state is `Pending` or `CrashLoopBackoff`.
   156  
   157  #### Recourse
   158  
   159  First make sure that there is no parent job still running. Do `pachctl list job | grep yourPipelineName` to see if there are pending jobs on this pipeline that were kicked off prior to your job. A parent job is the job that corresponds to the parent output commit of this pipeline. A job will block until all parent jobs complete.
   160  
   161  If there are no parent jobs that are still running, then continue debugging:
   162  
   163  Describe the pod via:
   164  
   165  ```
   166  $kubectl describe po/pipeline-foo-5-v1-273zc
   167  ```
   168  
   169  If the state is `CrashLoopBackoff`, you're looking for a descriptive error message. One such cause for this behavior might be if you specified an image for your pipeline that does not exist.
   170  
   171  If the state is `Pending` it's likely the cluster doesn't have enough resources. In this case, you'll see a `could not schedule` type of error message which should describe which resource you're low on. This is more likely to happen if you've set resource requests (cpu/mem/gpu) for your pipelines.  In this case, you'll just need to scale up your resources. If you deployed using `kops`, you'll want to do edit the instance group, e.g. `kops edit ig nodes ...` and up the number of nodes. If you didn't use `kops` to deploy, you can use your cloud provider's auto scaling groups to increase the size of your instance group. Either way, it can take up to 10 minutes for the changes to go into effect. 
   172  
   173  For more information, see [Autoscale Your Cluster](../deploy-manage/manage/autoscaling.md).
   174  
   175  ### Cannot Delete Pipelines with an etcd Error
   176  
   177  Failed to delete a pipeline with an `etcdserver` error.
   178  
   179  ### Symptoms
   180  
   181  Deleting pipelines fails with the following error:
   182  
   183  ```shell
   184  $ pachctl delete pipeline pipeline-name
   185  etcdserver: too many operations in txn request (XXXXXX comparisons, YYYYYYY writes: hint: set --max-txn-ops on the ETCD cluster to at least the largest of those values)
   186  ```
   187  
   188  ### Recourse
   189  
   190  When a Pachyderm cluster reaches a certain scale, you need to adjust
   191  the default parameters provided for certain `etcd` flags.
   192  Depending on how you deployed Pachyderm,
   193  you need to either edit the `etcd` `Deployment` or `StatefulSet`.
   194  
   195  ```shell
   196  $ kubectl edit deploy etcd
   197  ```
   198  
   199  or
   200  
   201  ```shell
   202  $ kubectl edit statefulset etcd
   203  ```
   204  
   205  In the `spec/template/containers/command` path, set the value for
   206  `max-txn-ops` to a value appropriate for your cluster, in line
   207  with the advice in the error above: *larger than the greater of XXXXXX or YYYYYYY*.