1.0.4 • Published 3 years ago

projectn-bolt-nodejs-lambda-sample v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

AWS Lambda Function in Node.js for Bolt

Sample AWS Lambda Function in Node.js that utilizes TypeScript SDK for Bolt

Requirements

Three ways to build a Node.js AWS Lambda app to consume the Bolt SDK

  1. Install Bolt SDK NPM package directly into your existing Node.js project

    npm i projectn-bolt-aws-typescript-sdk 
  2. Clone the Projec N Bolt Node.js Lambda sample app repository into your local directory

  3. Install Projec N Bolt Node.js Lambda sample app NPM package (which is built on top of the Bolt SDK) directly into your existing Node.js project

    npm i projectn-bolt-nodejs-lambda-sample
  • Create bolt-typescript-sdk-nodejs-lambda directory, and pick one of the above three options.

  • Create deployment package

cd bolt-typescript-sdk-nodejs-lambda

zip -r bolt-typescript-sdk-nodejs-lambda-demo.zip .

Deploy

  • Deploy the function to AWS Lambda by uploading the deployment package (bolt-typescript-sdk-nodejs-lambda-demo.zip)
aws lambda create-function \
    --function-name <function-name> \
    --runtime nodejs14.x \
    --zip-file fileb://bolt-typescript-sdk-nodejs-lambda-demo.zip \
    --handler dist/BoltS3OpsClientHandler.lambdaHandler \
    --role <function-execution-role-ARN> \
    --environment "Variables={BOLT_URL=<Bolt-Service-Url>}" \
    --memory-size 128 \
    --timeout 20

Usage

The Sample AWS Lambda Function in Node.js illustrates the usage and various operations, via separate handlers, that can be performed using TypeScript SDK for Bolt. The deployed AWS lambda function can be tested from the AWS Management Console by creating a test event and specifying its inputs in JSON format.

Please ensure that Bolt is deployed before testing the sample AWS lambda function. If you haven't deployed Bolt, follow the instructions given here to deploy Bolt.

Testing Bolt or S3 Operations

BoltS3OpsClientHandler is the handler that enables the user to perform Bolt or S3 operations. It sends a Bucket or Object request to Bolt or S3 and returns an appropriate response based on the parameters passed in as input.

  • BoltS3OpsHandler is the handler that is invoked by AWS Lambda to process an incoming event.
  • BoltS3OpsHandler accepts the following input parameters as part of the event:
    • sdkType - Endpoint to which request is sent. The following values are supported:
      • S3 - The Request is sent to S3.
      • Bolt - The Request is sent to Bolt, whose endpoint is configured via 'BOLT_URL' environment variable

    • requestType - type of request / operation to be performed. The following requests are supported:
      • list_objects_v2 - list objects
      • list_buckets - list buckets
      • head_object - head object
      • head_bucket - head bucket
      • get_object - get object (md5 hash)
      • put_object - upload object
      • delete_object - delete object

    • bucket - bucket name

    • key - key name

  • Following are examples of events, for various requests, that can be used to invoke the handler.
    • Listing first 1000 objects from Bolt bucket:
        {"requestType": "list_objects_v2", "sdkType": "BOLT", "bucket": "<bucket>"}
    • Listing buckets from S3:
      {"requestType": "list_buckets", "sdkType": "S3"}
    • Get Bolt object metadata (HeadObject):
      {"requestType": "head_object", "sdkType": "BOLT", "bucket": "<bucket>", "key": "<key>"}
    • Check if S3 bucket exists (HeadBucket):
      {"requestType": "head_bucket","sdkType": "S3", "bucket": "<bucket>"}
    • Retrieve object (its MD5 Hash) from Bolt:
      {"requestType": "get_object", "sdkType": "BOLT", "bucket": "<bucket>", "key": "<key>"}
    • Upload object to Bolt:
      {"requestType": "put_object", "sdkType": "BOLT", "bucket": "<bucket>", "key": "<key>", "value": "<value>"}
    • Delete object from Bolt:

      {"requestType": "delete_object", "sdkType": "BOLT", "bucket": "<bucket>", "key": "<key>"}

Data Validation Tests

BoltS3ValidateObjHandler is the handler that enables the user to perform data validation tests. It retrieves the object from Bolt and S3 (Bucket Cleaning is disabled), computes and returns their corresponding MD5 hash. If the object is gzip encoded, object is decompressed before computing its MD5.

  • BoltS3ValidateObjHandler is a handler that is invoked by AWS Lambda to process an incoming event for performing data validation tests. To use this handler, change the handler of the Lambda function to BoltS3ValidateObjHandler.lambda_handler
  • BoltS3ValidateObjHandler accepts the following input parameters as part of the event:

    • bucket - bucket name

    • key - key name

  • Following is an example of an event that can be used to invoke the handler.
    • Retrieve object(its MD5 hash) from Bolt and S3:

      If the object is gzip encoded, object is decompressed before computing its MD5.

      {"bucket": "<bucket>", "key": "<key>"}

Performance Tests

BoltS3PerfHandler is the handler that enables the user to run Bolt or S3 Performance tests. It measures the performance of Bolt or S3 Operations and returns statistics based on the operation. Before using this handler, ensure that a source bucket has been crunched by Bolt with cleaner turned OFF. Get, List Objects tests are run using the first 1000 objects in the bucket and Put Object tests are run using objects of size 100 bytes. Delete Object tests are run on objects that were created by the Put Object test.

  • BoltS3PerfHandler is a handler function that is invoked by AWS Lambda to process an incoming event for Bolt/S3 Performance testing. To use this handler, change the handler of the Lambda function to BoltS3PerfHandler.lambda_handler

  • BoltS3PerfHandler accepts the following input parameters as part of the event:
    • requestType - type of request / operation to be performed. The following requests are supported:
      • list_objects_v2 - list objects
      • get_object - get object
      • get_object_ttfb - get object (first byte)
      • get_object_passthrough - get object (via passthrough) of unmonitored bucket
      • get_object_passthrough_ttfb - get object (first byte via passthrough) of unmonitored bucket
      • put_object - upload object
      • delete_object - delete object
      • all - put, get, delete, list objects (default request if none specified)

    • bucket - bucket name

  • Following are examples of events, for various requests, that can be used to invoke the handler.
    • Measure List objects performance of Bolt / S3.
      {"requestType": "list_objects_v2", "bucket": "<bucket>"}
    • Measure Get object performance of Bolt / S3.
      {"requestType": "get_object", "bucket": "<bucket>"}
    • Measure Get object (first byte) performance of Bolt / S3.
      {"requestType": "get_object_ttfb", "bucket": "<bucket>"}
    • Measure Get object passthrough performance of Bolt.
      {"requestType": "get_object_passthrough", "bucket": "<unmonitored-bucket>"}
    • Measure Get object passthrough (first byte) performance of Bolt.
      {"requestType": "get_object_passthrough_ttfb", "bucket": "<unmonitored-bucket>"}
    • Measure Put object performance of Bolt / S3.
      {"requestType": "put_object", "bucket": "<bucket>"}
    • Measure Delete object performance of Bolt / S3.
      {"requestType": "delete_object", "bucket": "<bucket>"}
    • Measure Put, Delete, Get, List objects performance of Bolt / S3.

      {"requestType": "all", "bucket": "<bucket>"}

Auto Heal Tests

BoltAutoHealHandler is the handler that enables the user to run auto heal tests. Before running this handler, modify data-cruncher to use standard tier-class and set backupduration and recoveryscannerperiod to 1 minute to ensure that the auto-healing duration is within the lambda execution timeout interval. Crunch a sample bucket having a single object. Then delete the single fragment object from the n-databucket. Now run this handler, passing the name of the crunched bucket along with the single object as input parameters to the handler. The handler attempts to retrieve object repeatedly until it succeeds, which would indicate successful auto-healing of the object and returns the time taken to do so.

  • BoltAutoHealHandler is a handler function that is invoked by AWS Lambda to process an incoming event for performing Auto-Heal testing. To use this handler, change the handler of the Lambda function to BoltAutoHealHandler.lambda_handler.

  • BoltAutoHealHandler accepts the following input parameters as part of the event:

    • bucket - bucket name

    • key - key name

  • Following is an example of an event that can be used to invoke the handler.
    • Measure Auto-Heal time of an object in Bolt.
      {"bucket": "<bucket>", "key": "<key>"}

Getting Help

For additional assistance, please refer to Project N Docs or contact us directly here

1.0.2

3 years ago

1.0.4

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

1.0.0-beta.26

3 years ago

1.0.0-beta.25

3 years ago

1.0.0-beta.24

3 years ago