-
Notifications
You must be signed in to change notification settings - Fork 529
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding support to mesos-role #770
base: master
Are you sure you want to change the base?
Conversation
@brndnmtthws could you please review this? |
@@ -73,7 +73,7 @@ class MesosJobFramework @Inject()( | |||
|
|||
def getReservedResources(offer: Offer): (Double, Double) = { | |||
val resources = offer.getResourcesList.asScala | |||
val reservedResources = resources.filter({ x => x.hasRole && x.getRole != "*" }) | |||
val reservedResources = resources.filter({ x => x.hasRole && x.getRole != config.mesosRole()}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is actually the reverse logic. The original version of this method was correct.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can double check to see if this rejects * role offers, my cluster currently does not have any agents with * role
@@ -36,7 +36,7 @@ class MesosTaskBuilder @Inject()(val conf: SchedulerConfiguration) { | |||
.setName(name) | |||
.setType(Value.Type.SCALAR) | |||
.setScalar(Value.Scalar.newBuilder.setValue(value)) | |||
.setRole("*") | |||
.setRole(conf.mesosRole()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't look right either.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@brndnmtthws Resource was taking * as the hardcoded value. Now the conf value set in --mesos-role is used. I have tested in mesos using multiple chronos frameworks and various roles. My cluster now does not have * roles. Also using Resource.newBuilder we can only setRole. Its's not possible to add multiple roles.
Adding support to single role. Default is still * role