GlacierJobOperationSensor
AmazonGlacier sensor for checking job state. This operator runs only in reschedule mode.
Access Instructions
Install the Amazon provider package into your Airflow environment.
Import the module into your DAG file and instantiate it with your desired params.
Parameters
aws_conn_idThe reference to the AWS connection details
vault_nameRequiredname of Glacier vault on which job is executed
job_idRequiredthe job ID was returned by retrieve_inventory()
poke_intervalTime in seconds that the job should wait in between each tries
modeHow the sensor operates. Options are: { poke | reschedule }, default is poke. When set to poke the sensor is taking up a worker slot for its whole execution time and sleeps between pokes. Use this mode if the expected runtime of the sensor is short or if a short poke interval is required. Note that the sensor will hold onto a worker slot and a pool slot for the duration of the sensor’s runtime in this mode. When set to reschedule the sensor task frees the worker slot when the criteria is not yet met and it’s rescheduled at a later time. Use this mode if the time before the criteria is met is expected to be quite long. The poke interval should be more than one minute to prevent too much load on the scheduler.
Documentation
Glacier sensor for checking job state. This operator runs only in reschedule mode.
See also
For more information on how to use this sensor, take a look at the guide: Wait on an Amazon Glacier job state