Questions tagged [aws-documentdb]

for general development and technical questions about Amazon DocumentDB with MongoDB compatible API.

For general development and technical questions about Amazon DocumentDB with MongoDB compatible API.

447 questions
0
votes
1 answer

How to make this query form Mongo 4.0 to Mongo 3.6

How to make this query also work in 3.6 mongodb? def get_metadata(self, job_id_list): # Gets all the document attributes except for `xml` and `_id` field resultList = list(self.collection.find({'jobId': {"$in": job_id_list}}, {'xml': 0,…
0
votes
1 answer

Migrate data from AWS DocumentDB account to another Document DB account?

I have two different accounts in AWS and I need to move/copy the data from one DocumentDB in one account to the other account. Some of you knows how to do this task? I am thinking about do it programmatically but I am not sure if this is a good…
0
votes
1 answer

How do we send information using KLOV(Extent Reports) to MongoDB AWS?

So I am trying to set up a MongoDB to store information (test results,passes,failures) for extent reports using KLOV. What we want to do is use this jSON we get in mongodb and create our own version of a dashboard. The problem I am running into is,…
0
votes
3 answers

Connect Spring MVC with aws documentDB

I'm using mongoDB with aws ec2 instance it's working fine and I've moved mongoDB to aws documentDB, So i'm not able to connect documentDB with same code, So any one can u please help me if you have idea. Here is my connection code in Spring MVC:…
Mansi Joshi
  • 220
  • 5
  • 16
-1
votes
0 answers

can we really create Data models in DocumentDB for the relational application data?

90% of the data for our application is to be kept in NOSql - aws documentDB. for the 10% data, that will be frequently accessed but updated maybe once a month, there was a proposal to use AuroraDB. Another proposal was to avoid multiple db…
-1
votes
1 answer

trying to use djongo engine to connect to documentdb database using ssh tunnel

pymongo.errors.OperationFailure: namespace name generated from index name is too long, full error: {'ok': 0.0, 'code': 67, 'errmsg': 'namespace name generated from index name is too long', 'operationTime': Timestamp(1684956028, 1)} i'm trying to use…
-1
votes
1 answer

purpose of AWS secret rotation schedule lambda VpcSecurityGroupIds

I'm using CloudFormation to set up a DocumentDB cluster inside a new VPC. CloudFormation is setting up everything, including the VPC, the DocumentDB password secret, and the secret's rotation. I'm following closely the DocumentDB example at…
-1
votes
1 answer

How to connect keyhole to AWS DocumentDB?

I want to do some performance testing with on AWS DocumentDB with keyhole What a is valid connection string to connect?
mipmip
  • 1,072
  • 1
  • 10
  • 24
-1
votes
1 answer

Need for Port Forwarding VPN?

I'm wondering if I need port forwarding compatible Vpn given my tasks below: Ill be connecting to aws services such as documentDB and RDS while travelling. As a result, I plan on purchasing a dedicated IP VPN, so I can work while travelling, and add…
-1
votes
2 answers

connection error while connecting to AWS DocumentDB through lambda

getting the following error while connecting to AWS DocumentDB from node.js through lambda {"errorMessage":"ENOENT: no such file or directory, open 'rds-combined-ca-bundle.pem'","errorType":"Error","stackTrace":["Object.fs.openSync…
-2
votes
1 answer

AWS DocumentDB length of password greater than maximum, but shouldn't be

I'm setting up an AWS DocumentDB cluster using CloudFormation. I set up a password in Secrets Manager like this: DbClusterCredentials: Type: AWS::SecretsManager::Secret Properties: Name: … Description: … …
1 2 3
29
30