Questions tagged [aws-dax]
6 questions
3
votes
1 answer
AWS DAX ConnectionException when accessing with VPC peering from lambda
I have an AWS lambda function in a VPC on AWS account A that has a peering connection with a VPC on AWS account B containing a DAX cluster. I'm getting the following error when trying to connect to the DAX cluster from my…

harindoo
- 51
- 5
2
votes
1 answer
DAX TimeoutError: Connection timeout after 10000ms
Tech stack:
Lambda
Dynomodb
DAX
amazon-dax-client
DAX Query:
const parameters = {
TableName: USER_TABLE,
....
};
const endpoint = DAX_CLUSTER_ENDPOINT;
const daxService = new AmazonDaxClient({ endpoints: [endpoint], region });
const…

ramamoorthy_villi
- 1,939
- 1
- 17
- 40
0
votes
0 answers
Unable to connect to DynamaDB DAX Cluster from ECS Cluster
I'm trying to connect to DynamoDB DAX Cluster using DynamoDBAsynClient that runs from ECS Cluster, I get **
java.io.IOException: Channel was closed before it could be written to
** while establishing the connection
Below is the cluster client…

user1568854
- 37
- 1
- 8
0
votes
0 answers
Cross stack reference to a CfnCluster
I am trying to reference a dax.CfnCluster that was created in a different CF stack. I want to get its endpoint, but this doesn't seem to be exposed. I was hoping for something to fromLookup().
Thanks in advance

sancholp
- 67
- 7
0
votes
0 answers
AWS DAX Client promise() Error: Request object already used
Thank you! for taking time to read this post.
I an new to JS and stuck in a callback issue related to promise() when querying AWS DAX. There is a post (using the .promise() call on a dax-services dynamodb document client returns error: Error:…

sandeep
- 51
- 1
- 1
- 6
0
votes
1 answer
AWS DAX Performance issues with table scan
Hi I am working on an project that requires to bring all dyanamo db document in memory. I will be using table.scan() boto3 method which nearly takes 33 seconds for all 10k records.
I have configured the DAX and using it for table scan, which takes…

robo98
- 37
- 8