10000 How to isolate tasks in their own directory? · Issue #87 · insitro/redun · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
How to isolate tasks in their own directory? #87
Open
@Asutu

Description

@Asutu

I'm trying to isolate a task in its own directory because it can generate a large number of files. I saw tempdir and thought that it could serve this purpose, but when I run the task with tempdir=True it returns an empty list, whereas by omitting this switch it does return all files.

The task:

@task(tempdir=True)
def splitter(data: File) -> List[File]:
    return script(
        f'''
        split -d -l 2 mydata.txt part.
        ''',
        inputs = [data.stage('mydata.txt')],
        outputs = [File(f).stage(str(f)) for f in glob_file('part.*')],
    )

Maybe tempdir=True has a different purpose? In any case, what is the recommended approach to isolate tasks in their own directory. (I'm running redun locally in my own laptop)

Thanks.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0