forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.go
122 lines (105 loc) · 2.9 KB
/
env.go
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package search
import (
"context"
"errors"
"os"
"strconv"
"strings"
"sync"
"github.com/google/zoekt/query"
"github.com/google/zoekt/rpc"
"github.com/sourcegraph/sourcegraph/internal/conf"
"github.com/sourcegraph/sourcegraph/internal/endpoint"
"github.com/sourcegraph/sourcegraph/internal/env"
"github.com/sourcegraph/sourcegraph/internal/search/backend"
)
var (
searcherURL = env.Get("SEARCHER_URL", "k8s+http://searcher:3181", "searcher server URL")
searcherURLsOnce sync.Once
searcherURLs *endpoint.Map
indexedSearchOnce sync.Once
indexedSearch *backend.Zoekt
indexersOnce sync.Once
indexers *backend.Indexers
)
func SearcherURLs() *endpoint.Map {
searcherURLsOnce.Do(func() {
if len(strings.Fields(searcherURL)) == 0 {
searcherURLs = endpoint.Empty(errors.New("a searcher service has not been configured"))
} else {
searcherURLs = endpoint.New(searcherURL)
}
})
return searcherURLs
}
func Indexed() *backend.Zoekt {
indexedSearchOnce.Do(func() {
indexedSearch = &backend.Zoekt{}
if indexers := Indexers(); indexers.Enabled() {
indexedSearch.Client = backend.NewMeteredSearcher(&backend.HorizontalSearcher{
Map: indexers.Map,
Dial: rpc.Client,
})
} else if addr := zoektAddr(os.Environ()); addr != "" {
indexedSearch.Client = backend.NewMeteredSearcher(rpc.Client(addr))
}
conf.Watch(func() {
indexedSearch.SetEnabled(conf.SearchIndexEnabled())
})
})
return indexedSearch
}
func Indexers() *backend.Indexers {
indexersOnce.Do(func() {
if addr := zoektAddr(os.Environ()); addr != "" && !disableHorizontalSearch() {
indexers = &backend.Indexers{
Map: endpoint.New(addr),
Indexed: reposAtEndpoint,
}
} else {
indexers = &backend.Indexers{
Map: nil,
}
}
})
return indexers
}
// escape hatch to disable new indexed-search code path. Can remove in 3.11
func disableHorizontalSearch() bool {
v, _ := strconv.ParseBool(os.Getenv("DISABLE_HORIZONTAL_INDEXED_SEARCH"))
return v
}
func zoektAddr(environ []string) string {
if addr, ok := getEnv(environ, "INDEXED_SEARCH_SERVERS"); ok {
return addr
}
// Backwards compatibility: We used to call this variable ZOEKT_HOST
if addr, ok := getEnv(environ, "ZOEKT_HOST"); ok {
return addr
}
// Not set, use the default (service discovery on the indexed-search
// statefulset)
return "k8s+rpc://indexed-search:6070"
}
func getEnv(environ []string, key string) (string, bool) {
key = key + "="
for _, env := range environ {
if strings.HasPrefix(env, key) {
return env[len(key):], true
}
}
return "", false
}
func reposAtEndpoint(ctx context.Context, endpoint string) map[string]struct{} {
cl := rpc.Client(endpoint)
defer cl.Close()
resp, err := cl.List(ctx, &query.Const{Value: true})
if err != nil {
return map[string]struct{}{}
}
set := make(map[string]struct{}, len(resp.Repos))
for _, r := range resp.Repos {
set[r.Repository.Name] = struct{}{}
}
return set
}