-
Notifications
You must be signed in to change notification settings - Fork 22
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
Added resource limit worker for IIS webserver #33
Open
iamabhishek-dubey
wants to merge
4
commits into
Roblox:master
Choose a base branch
from
iamabhishek-dubey:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+91
−4
Open
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,6 +114,12 @@ type iisAppPoolIdentity struct { | |
Username string `codec:"username"` | ||
} | ||
|
||
// IIS ResourceLimit used for Application pool worker process | ||
type iisResourceLimit struct { | ||
CPULimit int `codec:"cpu_limit"` | ||
MemoryLimit int `codec:"memory_limit"` | ||
} | ||
|
||
// IIS Binding struct to match | ||
type iisBinding struct { | ||
CertHash string `codec:"cert_hash"` | ||
|
@@ -259,6 +265,42 @@ func applyAppPoolIdentity(appPoolName string, appPoolIdentity iisAppPoolIdentity | |
return nil | ||
} | ||
|
||
// Applies the Application Pool resource limit | ||
func applyAppPoolResourceLimit(appPoolName string, appPoolResource iisResourceLimit) error { | ||
properties := []string{"set", "config", "-section:system.applicationHost/applicationPools"} | ||
|
||
if appPoolResource.CPULimit != 0 { | ||
|
||
cpuLimitSize := appPoolResource.CPULimit * 1000 | ||
|
||
properties = append(properties, fmt.Sprintf("/[name='%s'].cpu.limit:%s", appPoolName, strconv.Itoa(cpuLimitSize))) | ||
properties = append(properties, fmt.Sprintf("/commit:apphost")) | ||
|
||
if _, err := executeAppCmd(properties...); err != nil { | ||
return fmt.Errorf("Failed to set Application Pool Resources: %v", err) | ||
} | ||
} | ||
properties = []string{"set", "config", "-section:system.applicationHost/applicationPools"} | ||
|
||
properties = append(properties, fmt.Sprintf("/[name='%s'].cpu.action:%s", appPoolName, "KillW3wp")) | ||
properties = append(properties, fmt.Sprintf("/commit:apphost")) | ||
if _, err := executeAppCmd(properties...); err != nil { | ||
return fmt.Errorf("Failed to set Application Pool Resources: %v", err) | ||
} | ||
Comment on lines
+283
to
+289
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would prefer this be a part of the CPULimit scope above as this pertains to configuring the CPU. Does applying this settings cause a noop if the CPULimit is left at 0? |
||
|
||
properties = []string{"set", "config", "-section:system.applicationHost/applicationPools"} | ||
|
||
if appPoolResource.MemoryLimit != 0 { | ||
memoryLimitSize := appPoolResource.MemoryLimit * 1000 | ||
properties = append(properties, fmt.Sprintf("/[name='%s'].recycling.periodicRestart.privateMemory:%s", appPoolName, strconv.Itoa(memoryLimitSize))) | ||
properties = append(properties, fmt.Sprintf("/commit:apphost")) | ||
if _, err := executeAppCmd(properties...); err != nil { | ||
return fmt.Errorf("Failed to set Application Pool Resources: %v", err) | ||
} | ||
} | ||
return nil | ||
} | ||
|
||
// Creates an Application Pool with the given name and applies an IIS exported Application Pool xml if a path is provided | ||
func createAppPool(appPoolName string, configPath string) error { | ||
if exists, err := doesAppPoolExist(appPoolName); err != nil || exists { | ||
|
@@ -593,6 +635,9 @@ func createWebsite(websiteName string, config *TaskConfig) error { | |
if err := applyAppPoolIdentity(websiteName, config.AppPoolIdentity); err != nil { | ||
return err | ||
} | ||
if err := applyAppPoolResourceLimit(websiteName, config.AppPoolResources); err != nil { | ||
return err | ||
} | ||
if err := createSite(websiteName, config.Path, config.SiteConfigPath); err != nil { | ||
return err | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
For this feature, I would prefer we use the
resources
stanza from Nomad and apply said values to IIS rather than configuring it within the driver config stanza.https://www.nomadproject.io/docs/job-specification/resources
The
resources
stanza is a required setting for a nomad job spec, so we shouldn't have to worry about the value not being set. There might be a bit of conversion needed between nomad's value and types to what IIS is expecting, but this will facilitate a better UX for users who use other drivers and their settings.