Software Alternatives & Reviews

Giving away free APIs without going broke.

Amazon SQS Amazon S3 AWS Lambda AWS CodePipeline Amazon CloudFront Amazon API Gateway
  1. Automatically distribute incoming traffic across multiple targets using an Application Load Balancer.
    The architecture diagram above shows a user making a request to the MediumToMarkDown/Convert endpoint on the load balancer. The Application Load Balancer (ALB) sends this event to the API Lambda, which responds immediately with a URL for the location of the MarkDown article result. The API Lambda also puts the Medium-To-MarkDown job into a SQS queue to be consumed by the Processing Lambda.

    #Cloud Computing #Cloud Hosting #CDN 23 social mentions

  2. Amazon Simple Queue Service is a fully managed message queuing service.
    Pricing:
    • Open Source
    The architecture diagram above shows a user making a request to the MediumToMarkDown/Convert endpoint on the load balancer. The Application Load Balancer (ALB) sends this event to the API Lambda, which responds immediately with a URL for the location of the MarkDown article result. The API Lambda also puts the Medium-To-MarkDown job into a SQS queue to be consumed by the Processing Lambda.

    #Stream Processing #Data Integration #Web Service Automation 65 social mentions

  3. Amazon S3 is an object storage where users can store data from their business on a safe, cloud-based platform. Amazon S3 operates in 54 availability zones within 18 graphic regions and 1 local region.
    The Processing Lambda is where all the work is done, and the result is written to an S3 Bucket which is attached to a CloudFront distribution. This has a lifecycle policy set to delete after one day.

    #Cloud Hosting #Object Storage #Cloud Storage 172 social mentions

  4. Automatic, event-driven compute service
    Pricing:
    • Open Source
    The architecture diagram above shows a user making a request to the MediumToMarkDown/Convert endpoint on the load balancer. The Application Load Balancer (ALB) sends this event to the API Lambda, which responds immediately with a URL for the location of the MarkDown article result. The API Lambda also puts the Medium-To-MarkDown job into a SQS queue to be consumed by the Processing Lambda.

    #Cloud Computing #Cloud Hosting #Backend As A Service 249 social mentions

  5. Continuous delivery service for fast and reliable application updates
    We used AWS CodePipeline to orchestrate this entire service.

    #Continuous Integration #DevOps Tools #Continuous Deployment 28 social mentions

  6. Amazon CloudFront is a content delivery web service.
    The Processing Lambda is where all the work is done, and the result is written to an S3 Bucket which is attached to a CloudFront distribution. This has a lifecycle policy set to delete after one day.

    #CDN #Cloud Computing #Content Distribution 68 social mentions

  7. Create, publish, maintain, monitor, and secure APIs at any scale
    A cheaper alternative given the predicted rate of requests is the API Gateway service. However, many services can share the same ALB, and since we can share this across many of our projects, so will the cost, meaning we can assume it to be zero.

    #API Tools #APIs #Web Service Automation 95 social mentions

Discuss: Giving away free APIs without going broke.

Log in or Post with