Configuring asset creation
Configuring asset creation is not specific to sensors, but when materializing assets, you may want to customize some parts of the logic depending on how it’s run. For example, you may want to customize an email to address the reader by their name and send it to their address.
In this context, you will want to customize the asset materialization based on the borough and date range that the stakeholder requested.
These configurations are most commonly added at the run-level and can be passed into schedules and sensors. In addition, runs can be customized in the Dagster UI when manually launching runs.
Let’s write a new configuration that we can use to customize the asset materialization.
In the
assets
directory, create arequests.py
file.Add the following import to the top of the file:
from dagster import Config
This is used as the base class when making custom configurations.
Next, define a new subclass called
AdhocRequestsConfig
that takes in the followingstr
attributes:filename
: the name of the request’s JSON fileborough
: the New York City borough to be analyzed. The value should be one ofManhattan
,Brooklyn
,Queens
,Bronx
, orStaten Island
start_date
: The beginning of the date range of the request, in the formatYYYY-MM-DD
end_date
: The end of the date range of the request, in the formatYYYY-MM-DD
The requests.py
file should look like the code snippet below:
from dagster import Config
class AdhocRequestConfig(Config):
filename: str
borough: str
start_date: str
end_date: str