Node.js Backend API

Deploy the Nodejs backend service

Navigate to the nodejs service repo and populate the git hash file which is required for our microservice.

cd ~/environment/ecsdemo-nodejs
git rev-parse --short=7 HEAD > code_hash.txt

In the previous section, we deployed our application, test environment, and the frontend service.

To start, we need to create our nodejs service in the ecsworkshop application.

The following command will open a prompt for us to add our service to the application.

copilot init

We will be prompted with a series of questions related to the application, environment, and the service we want to deploy. Answer the questions as follows:

  • Would you like to use one of your existing applications? “Y”
  • Which existing application do you want to add a new service to? Select “ecsworkshop”, hit enter
  • Which service type best represents your service’s architecture? Select “Backend Service”, hit enter
  • What do you want to name this Backend Service: ecsdemo-nodejs
  • Dockerfile: ./Dockerfile

After you answer the questions, it will begin the process of creating some baseline resources for your service. This also includes the manifest file which defines the desired state of this service. For more information on the manifest file, see the copilot-cli documentation.

Next, you will be prompted to deploy a test environment. An environment encompasses all of the resources that are required to support running your containers in ECS. This includes the networking stack (VPC, Subnets, Security Groups, etc), the ECS Cluster, Load Balancers (if required), and more.

Type “y”, and hit enter. Given that a test environment already exists, copilot will continue on and build the docker image, push it to ECR, and deploy the backend service.

Below is an example of what the cli interaction will look like:

deployment

That’s it! When the deployment is complete, navigate back to the frontend URL and you should now see the backend Nodejs service in the image.

Interacting with the application

Let’s check out the ecsworkshop application details.

copilot app show ecsworkshop

The result should look like this:

app_show

We can see that our recently deployed Nodejs service is shown as a Backend Service in the ecsworkshop application.

Interacting with the environment

Given that we deployed the test environment when creating our nodejs service, let’s show the details of the test environment:

copilot env show -n test

env_show

We now can see our newly deployed service in the test environment!

Interacting with the Nodejs service

Let’s now check the status of the nodejs service.

Run:

copilot svc status -n ecsdemo-nodejs

svc_status

We can see that we have one active running task, along with some additional details.

Scale our task count

Let’s scale our task count up! To do this, we are going to update the manifest file that was created when we initialized our service earlier. Open the manifest file (./copilot/ecsdemo-nodejs/manifest.yml), and replace the value of the count key from 1 to 3. This is declaring our state of the service to change from 1 task, to 3. Feel free to explore the manifest file to familiarize yourself.

# Number of tasks that should be running in your service.
count: 3

Once you are done and save the changes, run the following:

copilot svc deploy

Copilot does the following with this command:

  • Build your image locally
  • Push to your service’s ECR repository
  • Convert your manifest file to CloudFormation
  • Package any additional infrastructure into CloudFormation
  • Deploy your updated service and resources to CloudFormation

To confirm the deploy, let’s first check our service details via the copilot-cli:

copilot svc status -n ecsdemo-nodejs

You should now see three tasks running!

Now go back to the load balancer url, and you should see the diagram alternate between the three nodejs tasks.

Review the service logs

The services we deploy via copilot are automatically shipping logs to Cloudwatch logs by default. Rather than navigate and review logs via the console, we can use the copilot cli to see those logs locally. Let’s tail the logs for the nodejs service.

copilot svc logs -a ecsworkshop -n ecsdemo-nodejs --follow

Note that if you are in the same directory of the service you want to review logs for, simply type the below command. Of course, if you wanted to review logs for a service in a particular environment, you would pass the -e flag with the environment name.

copilot svc logs

Last thing to bring up is that you aren’t limited to live tailing logs, type copilot svc logs --help to see the different ways to review logs from the command line.

Next steps

We have officially completed deploying our nodejs backend service. In the next section, we will extend our application by adding the crystal backend service.

cd ~/environment/ecsdemo-nodejs/cdk
pip install -r requirements.txt --user

Confirm that the cdk can synthesize the assembly CloudFormation templates

cdk synth

Review what the cdk is proposing to build and/or change in the environment

cdk diff

Deploy the Nodejs backend service

cdk deploy --require-approval never

Code Review

As we mentioned in the platform build, we are defining our deployment configuration via code. Let’s look through the code to better understand how cdk is deploying.

Importing base configuration values from our base platform stack

Because we built the platform in its own stack, there are certain environmental values that we will need to reuse amongst all services being deployed. In this custom construct, we are importing the VPC, ECS Cluster, and Cloud Map namespace from the base platform stack. By wrapping these into a custom construct, we are isolating the platform imports from our service deployment logic.

class BasePlatform(Construct):

    def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:
        super().__init__(scope, construct_id, **kwargs)

        region = Stack.of(self).region

        # The base platform stack is where the VPC was created, so all we need # is the name to do a lookup and import it into this stack for use
        vpc = ec2.Vpc.from_lookup(
            self,
            "VPC",
            vpc_name='ecsworkshop-base/BaseVPC',
            region=region
        )

        sd_namespace = servicediscovery.PrivateDnsNamespace.from_private_dns_namespace_attributes(
            self,
            "SDNamespace",
            namespace_name=Fn.import_value('NSNAME'),
            namespace_arn=Fn.import_value('NSARN'),
            namespace_id=Fn.import_value('NSID')
        )

        # Importing the ECS cluster from the base platform stack
        ecs_cluster = ecs.Cluster.from_cluster_attributes(
            self,
            "ECSCluster",
            cluster_name=Fn.import_value('ECSClusterName'),
            security_groups=[],
            vpc=vpc,
            default_cloud_map_namespace=sd_namespace
        )

        # Importing the security group that allows frontend to communicate with backend services
        services_sec_grp = ec2.SecurityGroup.from_security_group_id(
            self,
            "ServicesSecGrp",
            security_group_id=Fn.import_value('ServicesSecGrp')
        )

Nodejs backend service deployment code

For the backend service, we simply want to run a container from a docker image, but still need to figure out how to deploy it and get it behind a scheduler. To do this on our own, we would need to build a task definition, ECS service, and figure out how to get it behind CloudMap for service discovery. To build these components on our own would equate to hundreds of lines of CloudFormation, whereas with the higher level constructs that the cdk provides, we are able to build everything with 30 lines of code.

class NodejsService(Stack):

    def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:
        super().__init__(scope, construct_id, **kwargs)

        base_platform = BasePlatform(self, self.stack_name)

        fargate_task_def = aws_ecs.TaskDefinition(
            self,
            "TaskDef",
            compatibility=aws_ecs.Compatibility.EC2_AND_FARGATE,
            cpu='256',
            memory_mib='512',
        )

        # The container definition defines the container(s) to be run when the task is instantiated
        container = fargate_task_def.add_container(
            "NodeServiceContainerDef",
            image=aws_ecs.ContainerImage.from_registry(
                "public.ecr.aws/aws-containers/ecsdemo-nodejs"),
            memory_reservation_mib=128,
            logging=aws_ecs.LogDriver.aws_logs(
                stream_prefix='/nodejs-container',
                log_group=log_group
            ),
            environment={
                "REGION": os.getenv('AWS_DEFAULT_REGION')
            },
            container_name="nodejs-app"
        )

        # Serve this container on port 3000
        container.add_port_mappings(
            aws_ecs.PortMapping(
                container_port=3000
            )
        )

        # Build the service definition to schedule the container in the shared cluster
        fargate_service = aws_ecs.FargateService(
            self,
            "NodejsFargateService",
            service_name='ecsdemo-nodejs',
            task_definition=fargate_task_def,
            cluster=base_platform.ecs_cluster,
            security_groups=[base_platform.services_sec_grp],
            desired_count=1,
            cloud_map_options=aws_ecs.CloudMapOptions(
                cloud_map_namespace=base_platform.sd_namespace,
                name='ecsdemo-nodejs'
            )
        )

Review service logs

Review the service logs from the command line:

Expand here to see the solution

Review the service logs from the console:

Expand here to see the solution

Scale the service

Manually scaling

Expand here to see the solution

Autoscaling

Expand here to see the solution