This is a brief overview of Sparta’s core concepts. Additional information regarding specific features is available from the menu.
At a high level, Sparta transforms a go binary’s registered lambda functions into a set of independently addressable AWS Lambda functions . Additionally, Sparta provides microservice authors an opportunity to satisfy other requirements such as defining the IAM Roles under which their function will execute in AWS, additional infrastructure requirements, and telemetry and alerting information (via CloudWatch).
Sparta applications are deployed as a single unit, using the ServiceName as a stable logical identifier. The ServiceName is used as your application’s CloudFormation StackName
stackName := "MyUniqueServiceName"
sparta.Main(stackName,
"Simple Sparta application",
myLambdaFunctions,
nil,
nil)
A Sparta-compatible lambda is a standard AWS Lambda Go function. The following function signatures are supported:
func ()
func () error
func (TIn), error
func () (TOut, error)
func (context.Context) error
func (context.Context, TIn) error
func (context.Context) (TOut, error)
func (context.Context, TIn) (TOut, error)
where the TIn
and TOut
parameters represent encoding/json un/marshallable types. Supplying an invalid signature will produce a run time error as in:
ERRO[0000] Lambda function (Hello World) has invalid returns: handler
returns a single value, but it does not implement error exit status 1
To support accessing other AWS resources in your go function, Sparta allows you to define and link IAM Roles with narrowly defined sparta.IAMRolePrivilege values. This allows you to define the minimal set of privileges under which your go function will execute. The Privilege.Resource
field value may also be a StringExpression referencing a dynamically provisioned CloudFormation resource.
lambdaFn.RoleDefinition.Privileges = append(lambdaFn.RoleDefinition.Privileges,
sparta.IAMRolePrivilege{
Actions: []string{"s3:GetObject", "s3:HeadObject"},
Resource: "arn:aws:s3:::MyS3Bucket",
})
To configure AWS Lambda Event Sources, Sparta provides both sparta.LambdaPermission and service-specific Permission types like sparta.CloudWatchEventsPermission. The service-specific Permission types automatically register your lambda function with the remote AWS service, using each service’s specific API.
cloudWatchEventsPermission := sparta.CloudWatchEventsPermission{}
cloudWatchEventsPermission.Rules = make(map[string]sparta.CloudWatchEventsRule, 0)
cloudWatchEventsPermission.Rules["Rate5Mins"] = sparta.CloudWatchEventsRule{
ScheduleExpression: "rate(5 minutes)",
}
lambdaFn.Permissions = append(lambdaFn.Permissions, cloudWatchEventsPermission)
Decorators are associated with either Lambda functions or the larger service workflow via WorkflowHooks. They are user-defined functions that provide an opportunity for your service to perform secondary actions such as automatically generating a CloudFormation Dashboard or automatically publish an S3 Artifact from your service.
Decorators are applied at provision
time.
Interceptors are the runtime analog to Decorators. They are user-defined functions that are executed in the context of handling an event. They provide an opportunity for you to support cross-cutting concerns such as automatically registering XRayTraces that can capture service performance and log messages in the event of an error.
Sparta applications can specify other AWS Resources (eg, SNS Topics) as part of their application. The dynamic resource outputs can be referenced by Sparta lambda functions via gocf.Ref and gocf.GetAtt functions.
snsTopicName := sparta.CloudFormationResourceName("SNSDynamicTopic")
snsTopic := &gocf.SNSTopic{
DisplayName: gocf.String("Sparta Application SNS topic"),
})
lambdaFn, _ := sparta.NewAWSLambda(sparta.LambdaName(echoDynamicSNSEvent),
echoDynamicSNSEvent,
sparta.IAMRoleDefinition{})
lambdaFn.Permissions = append(lambdaFn.Permissions, sparta.SNSPermission{
BasePermission: sparta.BasePermission{
SourceArn: gocf.Ref(snsTopicName),
},
})
To support Sparta lambda functions discovering dynamically assigned AWS resource values, Sparta provides sparta.Discover. This function returns information about resources that a given entity specifies a DependsOn relationship.
func echoS3DynamicBucketEvent(ctx context.Context,
s3Event awsLambdaEvents.S3Event) (*awsLambdaEvents.S3Event, error) {
discoveryInfo, discoveryInfoErr := sparta.Discover()
logger.Info().
Interface("Event", s3Event).
Interface("Discovery", discoveryInfo).
Interface("DiscoveryErr", discoveryInfoErr).
.Msg("Event received")
// Use discoveryInfo to determine the bucket name to which RawMessage should be stored
...
}
Given a set of registered Sparta lambda functions, a typical provision
build to create a new service follows this workflow. Items with dashed borders are opt-in user behaviors.
During provisioning, Sparta uses AWS Lambda-backed Custom Resources to support operations for which CloudFormation doesn’t yet support (eg, API Gateway creation).
Walk through a starting Sparta Application.