-
Data arrives from an external source every day, but it's hard to make guarantees about the time it arrives. We'd like to run a job to process the data (and likely materialize some asset partitions) as soon as the data arrives. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Here's an implementation of a sensor that checks for some external condition to be true (like a file arriving in a filesystem) for a particular date. Note that, if a file never arrives for a particular date, this sensor won't move past that date. This is desirable for some applications, but undesirable for other applications. It's also possible to write the sensor in a way that it will move past dates.
|
Beta Was this translation helpful? Give feedback.
Here's an implementation of a sensor that checks for some external condition to be true (like a file arriving in a filesystem) for a particular date.
Note that, if a file never arrives for a particular date, this sensor won't move past that date. This is desirable for some applications, but undesirable for other applications. It's also possible to write the sensor in a way that it will move past dates.