Skip to content
Advertisement

Luigi – Unfulfilled %s at run time

I am trying to learn in a very simple way how luigi works. Just as a newbie I came up with this code

JavaScript

Running this in command prompt gives error saying

JavaScript

which is:

JavaScript

Advertisement

Answer

This happens because you define an output for class2 but never create it.

Let’s break it down…

When running

JavaScript

luigi will ask:

  • is the output of class2 already on disk? NO
  • check dependencies of class2: NONE
  • execute the run method (by default it’s and empty method pass)
  • run method didn’t return errors, so job finishes successfully.

However, when running

JavaScript

luigi will:

  • is the output of class1 already on disk? NO
  • check task dependencies: YES: class2
  • pause to check status of class2
    • is the output of class2 on disk? NO
    • run class2 -> running -> done without errors
    • is the output of class2 on disk? NO -> raise error

luigi never runs a task unless all of its previous dependencies are met. (i.e. their output is on the file system)

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement