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

Kafka Channel retries sending events #1409

Merged
merged 1 commit into from
Jul 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
})
}