I am trying to write an etl pipeline using luigi . As far as I understand from the documentation, a task in luigi can generate a target, which can be either a type of file storage or a database. To reduce processing time, I would like to have a list in memory as output. Is it possible? Do I need to create a custom goal?
source
share