mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Use strings.Index instead of strings.Split
Since we don't need the actual split values, instead of calling `strings.Split`, which allocates new slices on each call, use `strings.Index`. This significantly reduces the allocations required when doing env value replacements. Additionally, pre-allocate the env var slice, even if we allocate a little more than we need, it keeps us from having to do multiple allocations while appending. ``` benchmark old ns/op new ns/op delta BenchmarkReplaceOrAppendEnvValues/0-8 486 313 -35.60% BenchmarkReplaceOrAppendEnvValues/100-8 10553 1535 -85.45% BenchmarkReplaceOrAppendEnvValues/1000-8 94275 12758 -86.47% BenchmarkReplaceOrAppendEnvValues/10000-8 1161268 129269 -88.87% benchmark old allocs new allocs delta BenchmarkReplaceOrAppendEnvValues/0-8 5 2 -60.00% BenchmarkReplaceOrAppendEnvValues/100-8 110 0 -100.00% BenchmarkReplaceOrAppendEnvValues/1000-8 1013 0 -100.00% BenchmarkReplaceOrAppendEnvValues/10000-8 10022 0 -100.00% benchmark old bytes new bytes delta BenchmarkReplaceOrAppendEnvValues/0-8 192 24 -87.50% BenchmarkReplaceOrAppendEnvValues/100-8 7360 0 -100.00% BenchmarkReplaceOrAppendEnvValues/1000-8 64832 0 -100.00% BenchmarkReplaceOrAppendEnvValues/10000-8 1146049 0 -100.00% ``` Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
parent
f6a5ccf492
commit
5702a89db6
3 changed files with 69 additions and 12 deletions
|
@ -723,12 +723,20 @@ func (container *Container) CreateDaemonEnvironment(tty bool, linkedEnv []string
|
||||||
if os == "" {
|
if os == "" {
|
||||||
os = runtime.GOOS
|
os = runtime.GOOS
|
||||||
}
|
}
|
||||||
env := []string{}
|
|
||||||
|
// Figure out what size slice we need so we can allocate this all at once.
|
||||||
|
envSize := len(container.Config.Env)
|
||||||
if runtime.GOOS != "windows" || (runtime.GOOS == "windows" && os == "linux") {
|
if runtime.GOOS != "windows" || (runtime.GOOS == "windows" && os == "linux") {
|
||||||
env = []string{
|
envSize += 2 + len(linkedEnv)
|
||||||
"PATH=" + system.DefaultPathEnv(os),
|
}
|
||||||
"HOSTNAME=" + container.Config.Hostname,
|
if tty {
|
||||||
}
|
envSize++
|
||||||
|
}
|
||||||
|
|
||||||
|
env := make([]string, 0, envSize)
|
||||||
|
if runtime.GOOS != "windows" || (runtime.GOOS == "windows" && os == "linux") {
|
||||||
|
env = append(env, "PATH="+system.DefaultPathEnv(os))
|
||||||
|
env = append(env, "HOSTNAME="+container.Config.Hostname)
|
||||||
if tty {
|
if tty {
|
||||||
env = append(env, "TERM=xterm")
|
env = append(env, "TERM=xterm")
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,22 +9,22 @@ import (
|
||||||
func ReplaceOrAppendEnvValues(defaults, overrides []string) []string {
|
func ReplaceOrAppendEnvValues(defaults, overrides []string) []string {
|
||||||
cache := make(map[string]int, len(defaults))
|
cache := make(map[string]int, len(defaults))
|
||||||
for i, e := range defaults {
|
for i, e := range defaults {
|
||||||
parts := strings.SplitN(e, "=", 2)
|
index := strings.Index(e, "=")
|
||||||
cache[parts[0]] = i
|
cache[e[:index]] = i
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, value := range overrides {
|
for _, value := range overrides {
|
||||||
// Values w/o = means they want this env to be removed/unset.
|
// Values w/o = means they want this env to be removed/unset.
|
||||||
if !strings.Contains(value, "=") {
|
index := strings.Index(value, "=")
|
||||||
|
if index < 0 {
|
||||||
|
// no "=" in value
|
||||||
if i, exists := cache[value]; exists {
|
if i, exists := cache[value]; exists {
|
||||||
defaults[i] = "" // Used to indicate it should be removed
|
defaults[i] = "" // Used to indicate it should be removed
|
||||||
}
|
}
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
// Just do a normal set/update
|
if i, exists := cache[value[:index]]; exists {
|
||||||
parts := strings.SplitN(value, "=", 2)
|
|
||||||
if i, exists := cache[parts[0]]; exists {
|
|
||||||
defaults[i] = value
|
defaults[i] = value
|
||||||
} else {
|
} else {
|
||||||
defaults = append(defaults, value)
|
defaults = append(defaults, value)
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
package container // import "github.com/docker/docker/container"
|
package container // import "github.com/docker/docker/container"
|
||||||
|
|
||||||
import "testing"
|
import (
|
||||||
|
"crypto/rand"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"gotest.tools/v3/assert"
|
||||||
|
)
|
||||||
|
|
||||||
func TestReplaceAndAppendEnvVars(t *testing.T) {
|
func TestReplaceAndAppendEnvVars(t *testing.T) {
|
||||||
var (
|
var (
|
||||||
|
@ -22,3 +27,47 @@ func TestReplaceAndAppendEnvVars(t *testing.T) {
|
||||||
t.Fatalf("expected TERM=xterm got '%s'", env[1])
|
t.Fatalf("expected TERM=xterm got '%s'", env[1])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func BenchmarkReplaceOrAppendEnvValues(b *testing.B) {
|
||||||
|
b.Run("0", func(b *testing.B) {
|
||||||
|
benchmarkReplaceOrAppendEnvValues(b, 0)
|
||||||
|
})
|
||||||
|
b.Run("100", func(b *testing.B) {
|
||||||
|
benchmarkReplaceOrAppendEnvValues(b, 100)
|
||||||
|
})
|
||||||
|
b.Run("1000", func(b *testing.B) {
|
||||||
|
benchmarkReplaceOrAppendEnvValues(b, 1000)
|
||||||
|
})
|
||||||
|
b.Run("10000", func(b *testing.B) {
|
||||||
|
benchmarkReplaceOrAppendEnvValues(b, 10000)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func benchmarkReplaceOrAppendEnvValues(b *testing.B, extraEnv int) {
|
||||||
|
b.StopTimer()
|
||||||
|
// remove FOO from env
|
||||||
|
// remove BAR from env (nop)
|
||||||
|
o := []string{"HOME=/root", "TERM=xterm", "FOO", "BAR"}
|
||||||
|
|
||||||
|
if extraEnv > 0 {
|
||||||
|
buf := make([]byte, 5)
|
||||||
|
for i := 0; i < extraEnv; i++ {
|
||||||
|
n, err := rand.Read(buf)
|
||||||
|
assert.NilError(b, err)
|
||||||
|
key := string(buf[:n])
|
||||||
|
|
||||||
|
n, err = rand.Read(buf)
|
||||||
|
assert.NilError(b, err)
|
||||||
|
val := string(buf[:n])
|
||||||
|
|
||||||
|
o = append(o, key+"="+val)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
d := make([]string, 0, len(o)+2)
|
||||||
|
d = append(d, []string{"HOME=/", "FOO=foo_default"}...)
|
||||||
|
|
||||||
|
b.StartTimer()
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
_ = ReplaceOrAppendEnvValues(d, o)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue