-
Notifications
You must be signed in to change notification settings - Fork 800
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a layer to ignore reapplied events (#2787)
* Adding logic to handle duplicate reapply events
- Loading branch information
Showing
15 changed files
with
400 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
// Copyright (c) 2019 Uber Technologies, Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
package definition | ||
|
||
import ( | ||
"fmt" | ||
) | ||
|
||
const ( | ||
resourceIDTemplate = "%v::%v" | ||
eventReappliedIDTemplate = "%v::%v::%v" | ||
) | ||
|
||
type ( | ||
// DeduplicationID uses to generate id for deduplication | ||
DeduplicationID interface { | ||
GetID() string | ||
} | ||
) | ||
|
||
// Deduplication id type | ||
const ( | ||
eventReappliedID = iota | ||
) | ||
|
||
// Deduplication resource struct | ||
type ( | ||
// EventReappliedID is the deduplication resource for reapply event | ||
EventReappliedID struct { | ||
id string | ||
} | ||
) | ||
|
||
// NewEventReappliedID returns EventReappliedID resource | ||
func NewEventReappliedID( | ||
runID string, | ||
eventID int64, | ||
version int64, | ||
) EventReappliedID { | ||
|
||
newID := fmt.Sprintf( | ||
eventReappliedIDTemplate, | ||
runID, | ||
eventID, | ||
version, | ||
) | ||
return EventReappliedID{ | ||
id: newID, | ||
} | ||
} | ||
|
||
// GetID returns id of EventReappliedID | ||
func (e EventReappliedID) GetID() string { | ||
return e.id | ||
} | ||
|
||
// GenerateDeduplicationKey generates deduplication key | ||
func GenerateDeduplicationKey( | ||
resource DeduplicationID, | ||
) string { | ||
|
||
switch resource.(type) { | ||
case EventReappliedID: | ||
return generateKey(eventReappliedID, resource.GetID()) | ||
default: | ||
panic("unsupported deduplication key") | ||
} | ||
} | ||
|
||
func generateKey(resourceType int32, id string) string { | ||
return fmt.Sprintf(resourceIDTemplate, resourceType, id) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
// Copyright (c) 2019 Uber Technologies, Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
package definition | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/golang/mock/gomock" | ||
"github.com/stretchr/testify/suite" | ||
) | ||
|
||
type ( | ||
resourceDeduplicationSuite struct { | ||
suite.Suite | ||
controller *gomock.Controller | ||
} | ||
) | ||
|
||
func TestResourceDeduplicationSuite(t *testing.T) { | ||
s := new(resourceDeduplicationSuite) | ||
suite.Run(t, s) | ||
} | ||
|
||
func (s *resourceDeduplicationSuite) TestGenerateKey() { | ||
resourceType := int32(1) | ||
id := "id" | ||
key := generateKey(resourceType, id) | ||
s.Equal(fmt.Sprintf("%v::%v", resourceType, id), key) | ||
} | ||
|
||
func (s *resourceDeduplicationSuite) TestGenerateDeduplicationKey() { | ||
runID := "runID" | ||
eventID := int64(1) | ||
version := int64(2) | ||
resource := NewEventReappliedID(runID, eventID, version) | ||
key := GenerateDeduplicationKey(resource) | ||
s.Equal(fmt.Sprintf("%v::%v::%v::%v", eventReappliedID, runID, eventID, version), key) | ||
} | ||
|
||
func (s *resourceDeduplicationSuite) TestEventReappliedID() { | ||
runID := "runID" | ||
eventID := int64(1) | ||
version := int64(2) | ||
resource := NewEventReappliedID(runID, eventID, version) | ||
s.Equal(fmt.Sprintf("%v::%v::%v", runID, eventID, version), resource.GetID()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.