hi all,I want to create a sensor job to sync an ar...
# ask-community
đ
hi all,I want to create a sensor job to sync an array of data returned by another job then iterate through each element of the array and run sensor until the data array is exhausted. thanks, i need example code
c
How large are your data arrays? If large, I don’t think sensors are the best fit for what you want here - sensors are usually for triggering runs of jobs based on data, but running through large arrays of data is best handled within an actual dagster job
regarding sample code, it’s hard to provide an example without knowing more about your use case