Noah K
10/12/2020, 10:16 AMalex
10/13/2020, 3:17 PMYichen
10/13/2020, 3:50 PMYichen
10/13/2020, 4:58 PMTobias Macey
10/13/2020, 5:09 PMTobias Macey
10/13/2020, 5:10 PMdwall
10/13/2020, 5:16 PMEmanuel
10/13/2020, 6:03 PMDavid Krysl
10/13/2020, 7:35 PMdhume
10/13/2020, 8:16 PMBasil V
10/13/2020, 8:19 PMModuleNotFoundError: No module named '<my_module>'
error when I try to run Dagit. I recently upgraded my project to use the workspace.yaml
structure. I can provide more details but does anyone have an idea what may be causing the issue?Noah K
10/13/2020, 8:34 PMNoah K
10/13/2020, 8:34 PMWarren Marriott
10/13/2020, 10:37 PMBasil V
10/14/2020, 6:13 PMdagster-dbt
? It looks like the library has changed quite a bit since I used it previously. Tx!dwall
10/15/2020, 4:49 PMdwall
10/15/2020, 4:50 PMKing Chung Huang
10/15/2020, 4:56 PMdagster_type_materializer
to receive multiple materialization configs all at once, instead of being called once per config? For example, the following solid config materializes the Dask DataFrame facets_df
to both JSON files and a database. This config works (when given real values), but I can’t construct an optimal Dask graph because the Dask dataframe_materializer()
is called for each config separately. I’d ideally like to be called with both configs, and then compute a Dask graph for them together at the same time.
solids:
extract_info:
outputs:
- facets_df:
to:
json:
path: <s3://bucket/key>
- facets_df:
to:
sql:
name: table
uri: <postgresql://server:5432/postgres>
schrockn
10/15/2020, 5:45 PMschrockn
10/15/2020, 6:01 PMuser
10/15/2020, 10:22 PMdish
10/15/2020, 10:33 PMBrentT
10/16/2020, 1:36 PMIgnacio Funke
10/16/2020, 4:24 PMdef test_my_test(monkeypatch):
@solid
def mock_my_solid(_):
yield Output(pd.DataFrame({
"date": pd.to_datetime(["2020-05-01", datetime.today()]),
"name": ["One", "Two"]
}))
monkeypatch.setattr("mymodule.my_solid", mock_my_solid)
result = execute_solid(my_composite_solid_using_my_solid)
out = result.output_for_solid("my_solid") # This returns the original output from my_solid
Lior Shkiller
10/18/2020, 11:49 AMNoah K
10/18/2020, 11:55 AMNoah K
10/18/2020, 11:55 AMStijn Van Der Spiegel
10/18/2020, 9:01 PMIlya Lozhkin
10/19/2020, 1:40 PMEmanuel
10/20/2020, 9:25 AM