2018-08-17 13:03:25 +00:00
/ *
* 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.
2019-04-22 20:55:39 +00:00
package checkpoint
2018-04-17 16:25:41 +00:00
import (
"errors"
2019-06-28 04:56:44 +00:00
"github.com/aws/aws-sdk-go/aws/client"
"github.com/aws/aws-sdk-go/aws/session"
2018-04-17 16:25:41 +00:00
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbiface"
log "github.com/sirupsen/logrus"
2018-09-08 16:46:02 +00:00
"github.com/vmware/vmware-go-kcl/clientlibrary/config"
2019-04-22 20:55:39 +00:00
par "github.com/vmware/vmware-go-kcl/clientlibrary/partition"
2018-04-17 16:25:41 +00:00
)
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"
2019-06-28 04:56:44 +00:00
// NumMaxRetries is the max times of doing retry
NumMaxRetries = 5
2018-04-17 16:25:41 +00:00
)
// DynamoCheckpoint implements the Checkpoint interface using DynamoDB as a backend
type DynamoCheckpoint struct {
TableName string
leaseTableReadCapacity int64
leaseTableWriteCapacity int64
2019-06-28 04:56:44 +00:00
LeaseDuration int
svc dynamodbiface . DynamoDBAPI
kclConfig * config . KinesisClientLibConfiguration
Retries int
skipTableCheck bool
2018-04-17 16:25:41 +00:00
}
2019-06-28 04:56:44 +00:00
func NewDynamoCheckpoint ( kclConfig * config . KinesisClientLibConfiguration ) * DynamoCheckpoint {
2018-04-17 16:25:41 +00:00
checkpointer := & DynamoCheckpoint {
TableName : kclConfig . TableName ,
leaseTableReadCapacity : int64 ( kclConfig . InitialLeaseTableReadCapacity ) ,
leaseTableWriteCapacity : int64 ( kclConfig . InitialLeaseTableWriteCapacity ) ,
LeaseDuration : kclConfig . FailoverTimeMillis ,
kclConfig : kclConfig ,
2019-06-28 04:56:44 +00:00
Retries : NumMaxRetries ,
2018-04-17 16:25:41 +00:00
}
2019-06-28 04:56:44 +00:00
return checkpointer
}
// WithDynamoDB is used to provide DynamoDB service
func ( checkpointer * DynamoCheckpoint ) WithDynamoDB ( svc dynamodbiface . DynamoDBAPI ) * DynamoCheckpoint {
checkpointer . svc = svc
2018-04-17 16:25:41 +00:00
return checkpointer
}
// Init initialises the DynamoDB Checkpoint
func ( checkpointer * DynamoCheckpoint ) Init ( ) error {
2019-06-28 04:56:44 +00:00
log . Info ( "Creating DynamoDB session" )
s , err := session . NewSession ( & aws . Config {
Region : aws . String ( checkpointer . kclConfig . RegionName ) ,
Endpoint : & checkpointer . kclConfig . DynamoDBEndpoint ,
Credentials : checkpointer . kclConfig . DynamoDBCredentials ,
Retryer : client . DefaultRetryer { NumMaxRetries : checkpointer . Retries } ,
} )
if err != nil {
// no need to move forward
log . Fatalf ( "Failed in getting DynamoDB session for creating Worker: %+v" , err )
}
if checkpointer . svc == nil {
checkpointer . svc = dynamodb . New ( s )
}
if ! checkpointer . skipTableCheck && ! checkpointer . doesTableExist ( ) {
2018-04-17 16:25:41 +00:00
return checkpointer . createTable ( )
}
return nil
}
// GetLease attempts to gain a lock on the given shard
2019-04-22 20:55:39 +00:00
func ( checkpointer * DynamoCheckpoint ) GetLease ( shard * par . ShardStatus , newAssignTo string ) error {
2018-04-17 16:25:41 +00:00
newLeaseTimeout := time . Now ( ) . Add ( time . Duration ( checkpointer . LeaseDuration ) * time . Millisecond ) . UTC ( )
newLeaseTimeoutString := newLeaseTimeout . Format ( time . RFC3339 )
currentCheckpoint , err := checkpointer . getItem ( shard . ID )
if err != nil {
return err
}
2018-04-18 22:50:15 +00:00
assignedVar , assignedToOk := currentCheckpoint [ LEASE_OWNER_KEY ]
leaseVar , leaseTimeoutOk := currentCheckpoint [ LEASE_TIMEOUT_KEY ]
2018-04-17 16:25:41 +00:00
var conditionalExpression string
var expressionAttributeValues map [ string ] * dynamodb . AttributeValue
if ! leaseTimeoutOk || ! assignedToOk {
conditionalExpression = "attribute_not_exists(AssignedTo)"
} else {
assignedTo := * assignedVar . S
leaseTimeout := * leaseVar . S
currentLeaseTimeout , err := time . Parse ( time . RFC3339 , leaseTimeout )
if err != nil {
return err
}
if ! time . Now ( ) . UTC ( ) . After ( currentLeaseTimeout ) && assignedTo != newAssignTo {
return errors . New ( ErrLeaseNotAquired )
}
log . Debugf ( "Attempting to get a lock for shard: %s, leaseTimeout: %s, assignedTo: %s" , shard . ID , currentLeaseTimeout , assignedTo )
conditionalExpression = "ShardID = :id AND AssignedTo = :assigned_to AND LeaseTimeout = :lease_timeout"
expressionAttributeValues = map [ string ] * dynamodb . AttributeValue {
":id" : {
S : & shard . ID ,
} ,
":assigned_to" : {
S : & assignedTo ,
} ,
":lease_timeout" : {
S : & leaseTimeout ,
} ,
}
}
marshalledCheckpoint := map [ string ] * dynamodb . AttributeValue {
2018-04-18 22:50:15 +00:00
LEASE_KEY_KEY : {
2018-04-17 16:25:41 +00:00
S : & shard . ID ,
} ,
2018-04-18 22:50:15 +00:00
LEASE_OWNER_KEY : {
2018-04-17 16:25:41 +00:00
S : & newAssignTo ,
} ,
2018-04-18 22:50:15 +00:00
LEASE_TIMEOUT_KEY : {
2018-04-17 16:25:41 +00:00
S : & newLeaseTimeoutString ,
} ,
}
2018-04-19 03:09:52 +00:00
if len ( shard . ParentShardId ) > 0 {
marshalledCheckpoint [ PARENT_SHARD_ID_KEY ] = & dynamodb . AttributeValue { S : & shard . ParentShardId }
}
2018-04-17 16:25:41 +00:00
if shard . Checkpoint != "" {
2018-04-18 22:50:15 +00:00
marshalledCheckpoint [ CHECKPOINT_SEQUENCE_NUMBER_KEY ] = & dynamodb . AttributeValue {
2018-04-17 16:25:41 +00:00
S : & shard . Checkpoint ,
}
}
err = checkpointer . conditionalUpdate ( conditionalExpression , expressionAttributeValues , marshalledCheckpoint )
if err != nil {
if awsErr , ok := err . ( awserr . Error ) ; ok {
if awsErr . Code ( ) == dynamodb . ErrCodeConditionalCheckFailedException {
return errors . New ( ErrLeaseNotAquired )
}
}
return err
}
2019-04-22 20:55:39 +00:00
shard . Mux . Lock ( )
2018-04-17 16:25:41 +00:00
shard . AssignedTo = newAssignTo
shard . LeaseTimeout = newLeaseTimeout
2019-04-22 20:55:39 +00:00
shard . Mux . Unlock ( )
2018-04-17 16:25:41 +00:00
return nil
}
// CheckpointSequence writes a checkpoint at the designated sequence ID
2019-04-22 20:55:39 +00:00
func ( checkpointer * DynamoCheckpoint ) CheckpointSequence ( shard * par . ShardStatus ) error {
2018-04-17 16:25:41 +00:00
leaseTimeout := shard . LeaseTimeout . UTC ( ) . Format ( time . RFC3339 )
marshalledCheckpoint := map [ string ] * dynamodb . AttributeValue {
2018-04-18 22:50:15 +00:00
LEASE_KEY_KEY : {
2018-04-17 16:25:41 +00:00
S : & shard . ID ,
} ,
2018-04-18 22:50:15 +00:00
CHECKPOINT_SEQUENCE_NUMBER_KEY : {
2018-04-17 16:25:41 +00:00
S : & shard . Checkpoint ,
} ,
2018-04-18 22:50:15 +00:00
LEASE_OWNER_KEY : {
2018-04-17 16:25:41 +00:00
S : & shard . AssignedTo ,
} ,
2018-04-18 22:50:15 +00:00
LEASE_TIMEOUT_KEY : {
2018-04-17 16:25:41 +00:00
S : & leaseTimeout ,
} ,
}
2018-04-19 03:09:52 +00:00
if len ( shard . ParentShardId ) > 0 {
marshalledCheckpoint [ PARENT_SHARD_ID_KEY ] = & dynamodb . AttributeValue { S : & shard . ParentShardId }
}
2018-04-17 16:25:41 +00:00
return checkpointer . saveItem ( marshalledCheckpoint )
}
// FetchCheckpoint retrieves the checkpoint for the given shard
2019-04-22 20:55:39 +00:00
func ( checkpointer * DynamoCheckpoint ) FetchCheckpoint ( shard * par . ShardStatus ) error {
2018-04-17 16:25:41 +00:00
checkpoint , err := checkpointer . getItem ( shard . ID )
if err != nil {
return err
}
2018-04-18 22:50:15 +00:00
sequenceID , ok := checkpoint [ CHECKPOINT_SEQUENCE_NUMBER_KEY ]
2018-04-17 16:25:41 +00:00
if ! ok {
return ErrSequenceIDNotFound
}
log . Debugf ( "Retrieved Shard Iterator %s" , * sequenceID . S )
2019-04-22 20:55:39 +00:00
shard . Mux . Lock ( )
defer shard . Mux . Unlock ( )
2018-04-17 16:25:41 +00:00
shard . Checkpoint = * sequenceID . S
2018-04-18 22:50:15 +00:00
if assignedTo , ok := checkpoint [ LEASE_OWNER_KEY ] ; ok {
2018-04-17 16:25:41 +00:00
shard . AssignedTo = * assignedTo . S
}
return nil
}
2018-04-23 19:40:39 +00:00
// RemoveLeaseInfo to remove lease info for shard entry in dynamoDB because the shard no longer exists in Kinesis
func ( checkpointer * DynamoCheckpoint ) RemoveLeaseInfo ( shardID string ) error {
err := checkpointer . removeItem ( shardID )
if err != nil {
log . Errorf ( "Error in removing lease info for shard: %s, Error: %+v" , shardID , err )
} else {
log . Infof ( "Lease info for shard: %s has been removed." , shardID )
}
return err
}
2018-04-17 16:25:41 +00:00
func ( checkpointer * DynamoCheckpoint ) createTable ( ) error {
input := & dynamodb . CreateTableInput {
AttributeDefinitions : [ ] * dynamodb . AttributeDefinition {
{
2018-04-18 22:50:15 +00:00
AttributeName : aws . String ( LEASE_KEY_KEY ) ,
2018-04-17 16:25:41 +00:00
AttributeType : aws . String ( "S" ) ,
} ,
} ,
KeySchema : [ ] * dynamodb . KeySchemaElement {
{
2018-04-18 22:50:15 +00:00
AttributeName : aws . String ( LEASE_KEY_KEY ) ,
2018-04-17 16:25:41 +00:00
KeyType : aws . String ( "HASH" ) ,
} ,
} ,
ProvisionedThroughput : & dynamodb . ProvisionedThroughput {
ReadCapacityUnits : aws . Int64 ( checkpointer . leaseTableReadCapacity ) ,
WriteCapacityUnits : aws . Int64 ( checkpointer . leaseTableWriteCapacity ) ,
} ,
TableName : aws . String ( checkpointer . TableName ) ,
}
_ , err := checkpointer . svc . CreateTable ( input )
return err
}
func ( checkpointer * DynamoCheckpoint ) doesTableExist ( ) bool {
input := & dynamodb . DescribeTableInput {
TableName : aws . String ( checkpointer . TableName ) ,
}
_ , err := checkpointer . svc . DescribeTable ( input )
2018-08-07 03:49:15 +00:00
return err == nil
2018-04-17 16:25:41 +00:00
}
func ( checkpointer * DynamoCheckpoint ) saveItem ( item map [ string ] * dynamodb . AttributeValue ) error {
return checkpointer . putItem ( & dynamodb . PutItemInput {
TableName : aws . String ( checkpointer . TableName ) ,
Item : item ,
} )
}
func ( checkpointer * DynamoCheckpoint ) conditionalUpdate ( conditionExpression string , expressionAttributeValues map [ string ] * dynamodb . AttributeValue , item map [ string ] * dynamodb . AttributeValue ) error {
return checkpointer . putItem ( & dynamodb . PutItemInput {
2019-02-09 16:23:54 +00:00
ConditionExpression : aws . String ( conditionExpression ) ,
TableName : aws . String ( checkpointer . TableName ) ,
Item : item ,
2018-04-17 16:25:41 +00:00
ExpressionAttributeValues : expressionAttributeValues ,
} )
}
func ( checkpointer * DynamoCheckpoint ) putItem ( input * dynamodb . PutItemInput ) error {
2019-06-28 04:56:44 +00:00
_ , err := checkpointer . svc . PutItem ( input )
return err
2018-04-17 16:25:41 +00:00
}
func ( checkpointer * DynamoCheckpoint ) getItem ( shardID string ) ( map [ string ] * dynamodb . AttributeValue , error ) {
2019-06-28 04:56:44 +00:00
item , err := checkpointer . svc . GetItem ( & dynamodb . GetItemInput {
TableName : aws . String ( checkpointer . TableName ) ,
Key : map [ string ] * dynamodb . AttributeValue {
LEASE_KEY_KEY : {
S : aws . String ( shardID ) ,
2018-04-17 16:25:41 +00:00
} ,
2019-06-28 04:56:44 +00:00
} ,
2018-04-17 16:25:41 +00:00
} )
return item . Item , err
}
2018-04-23 19:40:39 +00:00
func ( checkpointer * DynamoCheckpoint ) removeItem ( shardID string ) error {
2019-06-28 04:56:44 +00:00
_ , err := checkpointer . svc . DeleteItem ( & dynamodb . DeleteItemInput {
TableName : aws . String ( checkpointer . TableName ) ,
Key : map [ string ] * dynamodb . AttributeValue {
LEASE_KEY_KEY : {
S : aws . String ( shardID ) ,
2018-04-23 19:40:39 +00:00
} ,
2019-06-28 04:56:44 +00:00
} ,
2018-04-23 19:40:39 +00:00
} )
return err
}