Documentation ¶
Overview ¶
- Copyright (c) 2018 VMware, 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.
The implementation is derived from https://github.com/patrobinson/gokini
Copyright 2018 Patrick robinson ¶
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.
- Copyright (c) 2018 VMware, 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.
The implementation is derived from https://github.com/patrobinson/gokini
Copyright 2018 Patrick robinson ¶
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.
Index ¶
- Constants
- Variables
- type Checkpointer
- type DynamoCheckpoint
- func (checkpointer *DynamoCheckpoint) CheckpointSequence(shard *par.ShardStatus) error
- func (checkpointer *DynamoCheckpoint) FetchCheckpoint(shard *par.ShardStatus) error
- func (checkpointer *DynamoCheckpoint) GetLease(shard *par.ShardStatus, newAssignTo string) error
- func (checkpointer *DynamoCheckpoint) Init() error
- func (checkpointer *DynamoCheckpoint) RemoveLeaseInfo(shardID string) error
- func (checkpointer *DynamoCheckpoint) RemoveLeaseOwner(shardID string) error
- func (checkpointer *DynamoCheckpoint) WithDynamoDB(svc dynamodbiface.DynamoDBAPI) *DynamoCheckpoint
Constants ¶
const ( LeaseKeyKey = "ShardID" LeaseOwnerKey = "AssignedTo" LeaseTimeoutKey = "LeaseTimeout" SequenceNumberKey = "Checkpoint" ParentShardIdKey = "ParentShardId" // We've completely processed all records in this shard. ShardEnd = "SHARD_END" // ErrLeaseNotAcquired is returned when we failed to get a lock on the shard ErrLeaseNotAcquired = "lease is already held by another node" )
const ( // ErrInvalidDynamoDBSchema is returned when there are one or more fields missing from the table ErrInvalidDynamoDBSchema = "The DynamoDB schema is invalid and may need to be re-created" // NumMaxRetries is the max times of doing retry NumMaxRetries = 10 )
Variables ¶
var ErrSequenceIDNotFound = errors.New("SequenceIDNotFoundForShard")
ErrSequenceIDNotFound is returned by FetchCheckpoint when no SequenceID is found
Functions ¶
This section is empty.
Types ¶
type Checkpointer ¶
type Checkpointer interface { // Init initialises the Checkpoint Init() error // GetLease attempts to gain a lock on the given shard GetLease(*par.ShardStatus, string) error // CheckpointSequence writes a checkpoint at the designated sequence ID CheckpointSequence(*par.ShardStatus) error // FetchCheckpoint retrieves the checkpoint for the given shard FetchCheckpoint(*par.ShardStatus) error // RemoveLeaseInfo to remove lease info for shard entry because the shard no longer exists RemoveLeaseInfo(string) error // RemoveLeaseOwner to remove lease owner for the shard entry to make the shard available for reassignment RemoveLeaseOwner(string) error }
Checkpointer handles checkpointing when a record has been processed
type DynamoCheckpoint ¶
type DynamoCheckpoint struct { TableName string LeaseDuration int Retries int // contains filtered or unexported fields }
DynamoCheckpoint implements the Checkpoint interface using DynamoDB as a backend
func NewDynamoCheckpoint ¶
func NewDynamoCheckpoint(kclConfig *config.KinesisClientLibConfiguration) *DynamoCheckpoint
func (*DynamoCheckpoint) CheckpointSequence ¶
func (checkpointer *DynamoCheckpoint) CheckpointSequence(shard *par.ShardStatus) error
CheckpointSequence writes a checkpoint at the designated sequence ID
func (*DynamoCheckpoint) FetchCheckpoint ¶
func (checkpointer *DynamoCheckpoint) FetchCheckpoint(shard *par.ShardStatus) error
FetchCheckpoint retrieves the checkpoint for the given shard
func (*DynamoCheckpoint) GetLease ¶
func (checkpointer *DynamoCheckpoint) GetLease(shard *par.ShardStatus, newAssignTo string) error
GetLease attempts to gain a lock on the given shard
func (*DynamoCheckpoint) Init ¶
func (checkpointer *DynamoCheckpoint) Init() error
Init initialises the DynamoDB Checkpoint
func (*DynamoCheckpoint) RemoveLeaseInfo ¶
func (checkpointer *DynamoCheckpoint) RemoveLeaseInfo(shardID string) error
RemoveLeaseInfo to remove lease info for shard entry in dynamoDB because the shard no longer exists in Kinesis
func (*DynamoCheckpoint) RemoveLeaseOwner ¶
func (checkpointer *DynamoCheckpoint) RemoveLeaseOwner(shardID string) error
RemoveLeaseOwner to remove lease owner for the shard entry
func (*DynamoCheckpoint) WithDynamoDB ¶
func (checkpointer *DynamoCheckpoint) WithDynamoDB(svc dynamodbiface.DynamoDBAPI) *DynamoCheckpoint
WithDynamoDB is used to provide DynamoDB service