pbacsko commented on a change in pull request #353:
URL:
https://github.com/apache/incubator-yunikorn-core/pull/353#discussion_r778808531
##########
File path: pkg/scheduler/usergroupmanagement/group.go
##########
@@ -0,0 +1,44 @@
+package usergroupmanagement
+
+import (
+ "sync/atomic"
+
+ "github.com/apache/incubator-yunikorn-core/pkg/common/resources"
+)
+
+type Group struct {
+ name string // Name of the group
+ maxResources *resources.Resource // Max Resource configured per group
+ maxApplications int32 // Max Applications configured per group
+ runningApplications *int32 // Running Applications
Review comment:
Comments can be removed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]