Skip to content

KFP Pipeline run debugging information

Patrick Titzler edited this page Feb 4, 2021 · 2 revisions

How to identify the pod that embodies a pipeline node

  1. In the KFP UI open the experiment that embodies the pipeline run
  2. Open the graph and select the desired node
  3. Open the ML Metadata tab
  4. Locate the kfp_pod_name under Custom Properties

How to access the node's log file using kubectl

  1. Complete the steps in How to identify the pod that embodies a pipeline node
  2. Run this command, replacing <...> as appropriate
$ kubectl logs <KFP-POD-NAME> main --namespace <NAMESPACE>

How to inspect the node's pod

  1. Complete the steps in How to identify the pod that embodies a pipeline node
  2. Run this command, replacing <...> as appropriate
$ kubectl describe pod <KFP-POD-NAME> --namespace <NAMESPACE>