aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/internal/admin/vespa-wrapper/services/env.go
blob: 9a7ba40c73ea7a5935a7d53c2e9385486ee6e8aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Author: arnej

package services

import (
	"fmt"
	"os"

	"github.com/vespa-engine/vespa/client/go/internal/admin/envvars"
	"github.com/vespa-engine/vespa/client/go/internal/util"
)

func exportSettings(vespaHome string) {
	vlt := fmt.Sprintf("file:%s/logs/vespa/vespa.log", vespaHome)
	lcd := fmt.Sprintf("%s/var/db/vespa/logcontrol", vespaHome)
	dlp := fmt.Sprintf("%s/lib64:/opt/vespa-deps/lib64", vespaHome)
	os.Setenv(envvars.VESPA_LOG_TARGET, vlt)
	os.Setenv(envvars.VESPA_LOG_CONTROL_DIR, lcd)
	os.Setenv(envvars.LD_LIBRARY_PATH, dlp)
	os.Setenv(envvars.JAVAVM_LD_PRELOAD, "")
	os.Setenv(envvars.LD_PRELOAD, "")
	os.Setenv(envvars.MALLOC_ARENA_MAX, "1")
	util.OptionallyReduceTimerFrequency()
}