-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathmain.go
131 lines (112 loc) · 4.4 KB
/
main.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
123
124
125
126
127
128
129
130
131
/*
Copyright 2020 The Knative Authors
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 main
import (
"context"
"errors"
"time"
"go.uber.org/zap"
"github.com/google/uuid"
"github.com/kelseyhightower/envconfig"
dispatcherstats "knative.dev/eventing-rabbitmq/pkg/broker/dispatcher"
"knative.dev/eventing-rabbitmq/pkg/dispatcher"
"knative.dev/eventing-rabbitmq/pkg/rabbit"
"knative.dev/eventing-rabbitmq/pkg/utils"
eventingduckv1 "knative.dev/eventing/pkg/apis/duck/v1"
"knative.dev/pkg/kmeta"
"knative.dev/pkg/logging"
"knative.dev/pkg/metrics"
"knative.dev/pkg/signals"
)
type envConfig struct {
utils.EnvConfig
QueueName string `envconfig:"QUEUE_NAME" required:"true"`
RabbitURL string `envconfig:"RABBIT_URL" required:"true"`
RabbitMQVhost string `envconfig:"RABBITMQ_VHOST" required:"false"`
BrokerIngressURL string `envconfig:"BROKER_INGRESS_URL" required:"true"`
SubscriberURL string `envconfig:"SUBSCRIBER" required:"true"`
SubscriberCACerts string `envconfig:"SUBSCRIBER_CACERTS" required:"false"`
DLX bool `envconfig:"DLX" required:"false"`
DLXName string `envconfig:"DLX_NAME" required:"false"`
// Number of concurrent messages in flight
Parallelism int `envconfig:"PARALLELISM" default:"1" required:"false"`
Retry int `envconfig:"RETRY" required:"false"`
BackoffPolicy string `envconfig:"BACKOFF_POLICY" required:"false"`
BackoffDelay time.Duration `envconfig:"BACKOFF_DELAY" default:"50ms" required:"false"`
Timeout time.Duration `envconfig:"TIMEOUT" default:"0s" required:"false"`
ContainerName string `envconfig:"CONTAINER_NAME"`
PodName string `envconfig:"POD_NAME"`
Namespace string `envconfig:"NAMESPACE"`
}
func main() {
ctx := signals.NewContext()
// Report stats on Go memory usage every 30 seconds.
metrics.MemStatsOrDie(ctx)
var env envConfig
if err := envconfig.Process("", &env); err != nil {
logging.FromContext(ctx).Fatal("Failed to process env var: ", err)
}
env.SetComponent(dispatcher.ComponentName)
logger := env.GetLogger()
ctx = logging.WithLogger(ctx, logger)
if err := env.SetupTracing(); err != nil {
logger.Errorw("Failed setting up trace publishing", zap.Error(err))
}
if err := env.SetupMetrics(ctx); err != nil {
logger.Errorw("Failed to create the metrics exporter", zap.Error(err))
}
backoffPolicy := utils.SetBackoffPolicy(ctx, env.BackoffPolicy)
if backoffPolicy == "" {
logging.FromContext(ctx).Fatalf("Invalid BACKOFF_POLICY specified: must be %q or %q", eventingduckv1.BackoffPolicyExponential, eventingduckv1.BackoffPolicyLinear)
}
backoffDelay := env.BackoffDelay
logging.FromContext(ctx).Infow("Setting BackoffDelay", zap.Any("backoffDelay", backoffDelay))
reporter := dispatcherstats.NewStatsReporter(env.ContainerName, kmeta.ChildName(env.PodName, uuid.New().String()), env.Namespace)
d := &dispatcher.Dispatcher{
BrokerIngressURL: env.BrokerIngressURL,
SubscriberURL: env.SubscriberURL,
SubscriberCACerts: env.SubscriberCACerts,
MaxRetries: env.Retry,
BackoffDelay: backoffDelay,
Timeout: env.Timeout,
BackoffPolicy: backoffPolicy,
WorkerCount: env.Parallelism,
Reporter: reporter,
DLX: env.DLX,
DLXName: env.DLXName,
}
var err error
rmqHelper := rabbit.NewRabbitMQConnectionHandler(5, 1000, logger)
rmqHelper.Setup(ctx, rabbit.VHostHandler(
env.RabbitURL,
env.RabbitMQVhost),
func(c rabbit.RabbitMQConnectionInterface, ch rabbit.RabbitMQChannelInterface) error {
if err := rabbit.ChannelQoS(c, ch); err != nil {
return err
}
if err := rabbit.ChannelConfirm(c, ch); err != nil {
return err
}
return nil
},
rabbit.DialWrapper)
for {
if err = d.ConsumeFromQueue(ctx, rmqHelper.GetConnection(), rmqHelper.GetChannel(), env.QueueName); err != nil {
if errors.Is(err, context.Canceled) {
return
}
logger.Error(err)
time.Sleep(time.Second)
}
}
}