Skip to content

Data is not reflecting from AWS DATABASE | DYNAMODB to Live platform Website! , Though Working in Localhost efficiently.

0

Hey AWS team, I do have a concern, I would like the team to resolve for us..

Our backend system in the name of https://unneuback.com runs on AWS for our company http://unneu.com

Suddenly the data is stopped reflecting on the live url of https://unneu.com,

nothing is being fetched on the live production environment from our AWS backend,

I tested all the servers and hosted zones in AWS, also cross checked the status of servers and pid running using EC2CLI

in localhost:3000 the data is being fetched properly and being reflected on front end from our aws database..

but when we try to see it on our live url https://unneu.com is does not reflect any thing

our backend domain from AWS is https://unneuback.com

when it calls any route to fetch data from AWS database example http://unneuback.com/getAllItems

it returns the response "ERR_EMPTY_RESPONSE" on every route this http://unneuback.com calls it returns he same errors.. Enter image description here

our whole backend has stopped working in Live environment which is running on AWS https://x.com/AWSSupport/status/1868328566116524127

1 Answer
0

Based on the information provided, it appears that you're experiencing connectivity issues between your live production environment and your AWS DynamoDB backend. This could be due to several factors:

  1. Network connectivity: There might be network issues preventing your live production environment from reaching the DynamoDB endpoints. This could explain why it works locally but not in production.

  2. Security groups or firewall rules: Check if there have been any recent changes to your AWS security groups or firewall rules that might be blocking traffic from your production environment to DynamoDB.

  3. SSL/TLS connection issues: There could be problems establishing a secure connection between your production environment and DynamoDB. This is particularly relevant if you're seeing "ERR_EMPTY_RESPONSE" errors, which can sometimes occur due to SSL/TLS negotiation failures.

  4. DynamoDB service issues: While less likely, there could be ongoing DynamoDB service issues in your specific region.

To troubleshoot this issue:

  1. Verify that your production environment can reach the DynamoDB endpoints. You can test this by trying to access a DynamoDB endpoint URL (e.g., https://dynamodb.[your-region].amazonaws.com) from your production server.

  2. Check your AWS security groups and network ACLs to ensure they're not blocking traffic from your production environment.

  3. Review your SSL/TLS configuration. Ensure that your production environment trusts the Amazon Trust Services (ATS) Certificate Authority, which is now used for DynamoDB connections.

  4. Check the AWS Service Health Dashboard and your AWS Account Health Dashboard for any ongoing DynamoDB issues in your region.

  5. Review your application logs for any specific error messages or request IDs that could provide more insight into the problem.

If you continue to experience issues after these steps, it would be advisable to open a support case with AWS, providing details such as the impacted DynamoDB tables or secondary indexes, the time window when the errors were observed, and any relevant DynamoDB request IDs from your application logs. This will help AWS support team to investigate and resolve the issue more quickly.
Sources
Troubleshooting internal server errors in Amazon DynamoDB - Amazon DynamoDB
Troubleshooting SSL/TLS connection establishment issues with DynamoDB - Amazon DynamoDB

answered 2 years ago

  • My Target group is showing health check Failed:

    This target's zonal shift state is not available through DescribeTargetHealth but can be viewed directly through the Amazon ARC API or console. Health Check Failed!

    How to resolve this issue!

  • My Target group is showing health check Failed:

    This target's zonal shift state is not available through DescribeTargetHealth but can be viewed directly through the Amazon ARC API or console. Health Check Failed!

    How to resolve this issue!

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.