At present (0.2.7) MesosSchedulerDriver.on_update always calls acknowledgeStatusUpdate, and unlike the old official bindings, there is no option for the scheduler to decide when to acknowledge status updates. This is necessary if, for example, status updates are posted to an asyncio event loop, and will only be fully processed after statusUpdate returns. At the moment I'm working around this by subclassing MesosSchedulerDriver and reimplementing on_update, but that's fragile.
Please provide a constructor argument to allow implicit acknowledgements to be turned off, similar to this.
At present (0.2.7)
MesosSchedulerDriver.on_update
always callsacknowledgeStatusUpdate
, and unlike the old official bindings, there is no option for the scheduler to decide when to acknowledge status updates. This is necessary if, for example, status updates are posted to an asyncio event loop, and will only be fully processed afterstatusUpdate
returns. At the moment I'm working around this by subclassingMesosSchedulerDriver
and reimplementingon_update
, but that's fragile.Please provide a constructor argument to allow implicit acknowledgements to be turned off, similar to this.