-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
database.go
95 lines (84 loc) · 2.74 KB
/
database.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
// Copyright (c) 2017 Uber Technologies, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package customer
import (
"context"
"errors"
"go.uber.org/zap"
"github.com/opentracing/opentracing-go"
tags "github.com/opentracing/opentracing-go/ext"
"github.com/jaegertracing/jaeger/examples/hotrod/pkg/delay"
"github.com/jaegertracing/jaeger/examples/hotrod/pkg/log"
"github.com/jaegertracing/jaeger/examples/hotrod/pkg/tracing"
"github.com/jaegertracing/jaeger/examples/hotrod/services/config"
)
// database simulates Customer repository implemented on top of an SQL database
type database struct {
tracer opentracing.Tracer
logger log.Factory
customers map[string]*Customer
lock *tracing.Mutex
}
func newDatabase(tracer opentracing.Tracer, logger log.Factory) *database {
return &database{
tracer: tracer,
logger: logger,
lock: &tracing.Mutex{
SessionBaggageKey: "request",
},
customers: map[string]*Customer{
"123": {
ID: "123",
Name: "Rachel's Floral Designs",
Location: "115,277",
},
"567": {
ID: "567",
Name: "Amazing Coffee Roasters",
Location: "211,653",
},
"392": {
ID: "392",
Name: "Trom Chocolatier",
Location: "577,322",
},
"731": {
ID: "731",
Name: "Japanese Deserts",
Location: "728,326",
},
},
}
}
func (d *database) Get(ctx context.Context, customerID string) (*Customer, error) {
d.logger.For(ctx).Info("Loading customer", zap.String("customer_id", customerID))
// simulate opentracing instrumentation of an SQL query
if span := opentracing.SpanFromContext(ctx); span != nil {
span := d.tracer.StartSpan("SQL SELECT", opentracing.ChildOf(span.Context()))
tags.SpanKindRPCClient.Set(span)
tags.PeerService.Set(span, "mysql")
span.SetTag("sql.query", "SELECT * FROM customer WHERE customer_id="+customerID)
defer span.Finish()
ctx = opentracing.ContextWithSpan(ctx, span)
}
// simulate misconfigured connection pool that only gives one connection at a time
d.lock.Lock(ctx)
defer d.lock.Unlock()
// simulate RPC delay
delay.Sleep(config.MySQLGetDelay, config.MySQLGetDelayStdDev)
if customer, ok := d.customers[customerID]; ok {
return customer, nil
}
return nil, errors.New("invalid customer ID")
}