user
11/28/2019, 1:10 AMmax
11/28/2019, 1:12 AMschrockn
11/29/2019, 6:55 PMRich Schiavi
12/02/2019, 8:33 PMBrad
12/04/2019, 7:22 PMAmanda Crawford
12/06/2019, 5:09 PMalex
12/06/2019, 5:11 PMAmanda Crawford
12/06/2019, 5:17 PMalex
12/06/2019, 5:18 PM$DAGSTER_HOME
is not set we use a temp folder that should get cleaned up on exitAmanda Crawford
12/06/2019, 5:19 PMabhi
12/06/2019, 5:51 PMDAGSTER_HOME
(I'm new, so I had to do it for the first time last week, so I wanna make it as seamless as possible since it's still fresh in my head)user
12/06/2019, 6:55 PMmax
12/06/2019, 6:59 PMJames Green
12/09/2019, 8:50 AMJames Green
12/09/2019, 8:53 AMJames Green
12/09/2019, 8:53 AMMartin Thoma
12/10/2019, 4:21 PMTerry J. Leach
12/10/2019, 7:35 PMEric
12/11/2019, 6:48 PMachintamiri
12/13/2019, 3:22 PMachintamiri
12/13/2019, 3:25 PMcwlVersion: v1.0
class: Workflow
inputs:
Input1:
type: File?
extract: string
Input2:
type: File?
extract: string
outputs:
task3_output:
type: File
outputSource: task3/outfile
steps:
task1:
in:
files:
source: Input1
out: [task1out]
task2:
in:
files:
source: Input2
out: [task2out]
task3:
in:
files:
source: [task1out, task2out]
linkMerge: merge_flattened
out: [outfile]
Ben Fogelson
12/17/2019, 7:49 PMexecute_pipeline
. I posted about it on StackOverflow, was wondering if anyone can help. https://stackoverflow.com/questions/59379523/dagster-pipeline-executes-successfully-when-run-with-execute-pipeline-but-notaqm
12/18/2019, 3:05 AMdagit -f hello_world.py -n define_hello_world_repo
I get a RecursionError: maximum recursion depth exceeded in __instancecheck__
error, in this file: /usr/lib/python3.5/typing.py
was wondering if you think this is a compatibility issue with python 3.5.3. the docs say dagster is tested against 3.5.7Ben Fogelson
12/18/2019, 11:20 PMsolid
to have a default value? e.g.
@solid
def some_solid(context, x, y=1.0):
do_something(x, y)
Related question, is there a way to set the value for a solid in config so that aliases of the solid inherit that value?Alexander Verbitsky
12/20/2019, 5:23 PMTomas Vykruta (DeepFraud AI)
12/21/2019, 4:20 PMTomas Vykruta (DeepFraud AI)
12/22/2019, 8:04 PMschrockn
12/25/2019, 4:10 PMDave W
12/27/2019, 7:03 PMDave W
12/27/2019, 7:03 PM