Skip to content
This repository has been archived by the owner on Jun 4, 2021. It is now read-only.

Commit

Permalink
Kafka Channel retries sending events
Browse files Browse the repository at this point in the history
- Add retry support to KafkaChannel
- Add e2e test for Broker redelivery backed by KafkaChannel

Signed-off-by: Pierangelo Di Pilato <[email protected]>
  • Loading branch information
pierDipi committed Jul 29, 2020
1 parent ce2db16 commit f424b23
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 2 deletions.
4 changes: 3 additions & 1 deletion kafka/channel/pkg/dispatcher/dispatcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,14 @@ func (c consumerMessageHandler) Handle(ctx context.Context, consumerMessage *sar
DLS = (*url.URL)(c.sub.Delivery.DeadLetterSink.URI)
}

err := c.dispatcher.DispatchMessage(ctx,
err := c.dispatcher.DispatchMessageWithRetries(
ctx,
message,
nil,
(*url.URL)(c.sub.SubscriberURI),
(*url.URL)(c.sub.ReplyURI),
DLS,
c.sub.RetryConfig,
)

// NOTE: only return `true` here if DispatchMessage actually delivered the message.
Expand Down
2 changes: 1 addition & 1 deletion test/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var ChannelFeatureMap = map[metav1.TypeMeta][]testlib.Feature{
Kind: NatssChannelKind,
}: {
testlib.FeatureBasic,
testlib.FeatureRedelivery,
// testlib.FeatureRedelivery,
testlib.FeaturePersistence,
},
}
70 changes: 70 additions & 0 deletions test/e2e/broker_redelivery_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
// +build e2e

/*
* 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 e2e

import (
"strings"
"testing"

metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/utils/pointer"
eventingduckv1beta1 "knative.dev/eventing/pkg/apis/duck/v1beta1"
"knative.dev/eventing/pkg/apis/eventing"
"knative.dev/eventing/pkg/apis/eventing/v1beta1"
"knative.dev/eventing/test/e2e/helpers"
testlib "knative.dev/eventing/test/lib"
"knative.dev/eventing/test/lib/resources"
)

// ChannelBasedBrokerCreator creates a BrokerCreator that creates a broker based on the channel parameter.
func ChannelBasedBrokerCreator(channel metav1.TypeMeta, brokerClass string) helpers.BrokerCreatorWithRetries {
return func(client *testlib.Client, numRetries int32) string {
brokerName := strings.ToLower(channel.Kind)

// create a ConfigMap used by the broker.
config := client.CreateBrokerConfigMapOrFail("config-"+brokerName, &channel)

backoff := eventingduckv1beta1.BackoffPolicyLinear

// create a new broker.
client.CreateBrokerV1Beta1OrFail(brokerName,
resources.WithBrokerClassForBrokerV1Beta1(brokerClass),
resources.WithConfigForBrokerV1Beta1(config),
func(broker *v1beta1.Broker) {
broker.Spec.Delivery = &eventingduckv1beta1.DeliverySpec{
Retry: &numRetries,
BackoffPolicy: &backoff,
BackoffDelay: pointer.StringPtr("PT1S"),
}
},
)

return brokerName
}
}

func TestBrokerRedelivery(t *testing.T) {

channelTestRunner.RunTests(t, testlib.FeatureRedelivery, func(t *testing.T, component metav1.TypeMeta) {

brokerCreator := ChannelBasedBrokerCreator(component, eventing.MTChannelBrokerClassValue)

helpers.BrokerRedelivery(t, brokerCreator)
})
}

0 comments on commit f424b23

Please sign in to comment.