if I have an op that requests a step launcher as a...
# ask-community
z
if I have an op that requests a step launcher as a resource (I've been building custom step launchers to run on different platforms), is there a Dagster default step launcher I can use for job configurations where I want it to just run using the regular Dagster step launcher?
o
@Zach the classic way to do this is passing in a
ResourceDefinition.none_resource()
basically the step launcher behavior is contingent on there being an instantiated resource that's a subclass of StepLauncher, so as long as you pass in something that is not a subclass of that, you're good 🙂
z
perfect, thanks!
a
Hello, I'm new to Dagster. While searching for writing custom step launchers, there is info how to write them, but no information on how to invoke them with op or assets. Maybe someone here can share this. Thank you.