I have a task placement strategy of
- binpack(memory)
- spread(InstanceId)
I understand that binpack(memory) tries to cram as much tasks into an instance to use as much memory as possible, while spread(InstanceId) spreads the tasks among instances.
Is the task placement strategy above then conflicting and nonsensical? Would there be some scenario where it makes sense?
