Warning
You're browsing the documentation for an old version of Webiny. Consider upgrading your project to Webiny 5.39.x.
What you’ll learn
  • what are the necessary cloud infrastructure resources on which the API project application relies on

Diagram
anchor

Webiny Cloud Infrastructure - API - OverviewWebiny Cloud Infrastructure - API - Overview
(click to enlarge)

For brevity, the diagram doesn’t include network-level cloud infrastructure resources, like region, VPC, availability zones, and so on. Check out the Default VPC and Custom VPC topics if you’re interested in that aspect of the deployed cloud infrastructure.

Description
anchor

The diagram gives an overview of the complete cloud infrastructure that is deployed by default Webiny applications, which together form the API project application.

  1. Security
  2. I18N
  3. File Manager
  4. Page Builder (with Prerendering Service)
  5. Form Builder
  6. Headless CMS

In the following text, we briefly cover how each of the default Webiny applications are utilizing the shown cloud infrastructure.

1. Security
anchor

Although the Security application does work with multiple identity providers, by default, it works with Amazon Cognito, hence its icon in the lower section of the diagram e. The identity checks are performed from the GraphQL Handler C and Headless CMS D Lambda functions.With Amazon Cognito, the application also extends the GraphQL schema located on the GraphQL Handler C Lambda function.For storing data, the application relies on Amazon DynamoDB F.

2. I18N
anchor

The I18N application doesn’t bring any additional cloud infrastructure resources. It just expands the GraphQL schema with its own types and resolvers, so we can say only the GraphQL Handler C Lambda function C gets affected by it.For storing data, the application relies on Amazon DynamoDB F.

3. File Manager
anchor

Besides expanding the GraphQL schema located on the GraphQL Handler Lambda function c, the File Manager application also brings a couple of dedicated Lambda functions. These perform various file-related tasks like uploading, downloading, and also image optimizations. It also brings a single Amazon S3 bucket, in which the files are ultimately stored H.For storing data and performing search queries, the application relies on Amazon DynamoDB F and Amazon ElasticSearch Service G, respectively.

4. Page Builder (With Prerendering Service)
anchor

The Page Builder application doesn’t bring any special cloud infrastructure resources, but it does utilize the Prerendering Service which is comprised of four Lambda functions and a CloudWatch event I. The prerendering HTTP requests are issued over to the public website React application that is hosted in the Website project application J.For storing data and performing search queries, the application relies on Amazon DynamoDB F and Amazon ElasticSearch Service G, respectively.

5. Form Builder
anchor

The Form Builder application doesn’t bring any additional cloud infrastructure resources. It just expands the GraphQL schema with its own types and resolvers, so we can say only the GraphQL Handler C Lambda function gets affected by it.For storing data and performing search queries, the application relies on Amazon DynamoDB F and Amazon ElasticSearch Service G, respectively.

6. Headless CMS
anchor

Besides expanding the GraphQL schema located on the GraphQL Handler C Lambda function, the Headless CMS application also brings an extra Lambda function which is responsible for hosting the dynamic Headless CMS GraphQL API D. Note that on the diagram, it is shown “behind” the GraphQL Handler C Lambda function.For storing data and performing search queries, the application relies on Amazon DynamoDB F and Amazon ElasticSearch Service G, respectively.

FAQ
anchor

Why Is Webiny Using AWS Lambda to Host a GraphQL Server and Not AWS AppSync?
anchor

There are a couple of reason for that.

First, implementing a GraphQL server using AWS Lambda enables us and our users to make additional customizations to server’s behavior.

The default Webiny applications rely on this fact as well. For example, the I18N application gives you the ability to check what is the current locale that the user is on. The Security application gives you the ability to perform custom authentication and authorization checks inside of your resolvers. Finally, it also makes it possible for the Headless CMS application to generate different GraphQL schemas, based on the current I18N locale.

Secondly, you can test your GraphQL server easily with Jest, as you would do with any other JavaScript piece of code.

Finally, this approach makes it much easier for Webiny to be hosted on not just one cloud infrastructure provider (AWS), but on many more, like Microsoft Azure or Google Cloud Platform.

Which GraphQL Implementation Are You Using?
anchor

We started with Apollo GraphQL Serverexternal link, but for Webiny version 5, we migrated to GraphQL toolsexternal link, because it’s more lightweight and both easier to implement and grasp.

Which Amazon API Gateway Is Deployed as Part of the API Application?
anchor

By default, we deploy HTTP APIsexternal link. This can be changed on your behalf, if need be.

How Is the DynamoDB Data Structured?
anchor

Webiny is following the approach called single-table designexternal link, which advocates for storing all the application data in a single DynamoDB table. So all of the Webiny applications are storing data in a single table, with distinct primary and secondary keys in order to avoid clashing of data.

This doesn’t mean you have to do the same. Using Pulumi, you can easily deploy separate DynamoDB tables and structure your application’s data in any way you want.

Is Amazon ElasticSearch Service Deployed Into Multiple AZs?
anchor

Currently it is deployed into a single AZ, just for cost reasons. But yes, production workloads should use two or three AZs. Check out the Amazon ElasticSearch Service’s FAQ pageexternal link for more information.

Deploying the Amazon ElasticSearch Service g into multiple AZs can be achieved by adjusting the cloud infrastructure codeexternal link.