Questions tagged with Amazon DocumentDB
Content language: English
Select up to 5 tags to filter
Sort by most recent
Browse through the questions and answers listed below or filter and sort to narrow down your results.
This is my python program "from pymongo import MongoClient
# Replace the connection string with your actual connection string
connection_string =...
0
answers
0
votes
19
views
asked a day agolg...
I had VPC("nonshima") and documentDB("nonshima-db-int") which had about 10GB of data in it.
I created a new VPC("nonshima-124") with same configuration of nonshima including route-table.
I wanted to...
1
answers
0
votes
43
views
asked 2 days agolg...
I have deployed a DocumentDB cluster on AWS, utilizing the default VPC. The VPC Network ACL has been configured to allow 0.0.0.0 access, and the security groups are set to permit all traffic,...
0
answers
0
votes
31
views
asked 3 days agolg...
Is it possible to migrate data from an existing DocumentDB managed cluster to a DocumentDB elastic cluster that is in the same AWS account?
1
answers
0
votes
36
views
asked 14 days agolg...
We've been using DocumentDB for a few months and we are seeing a handful of outlier documents that are over the 16MB file size limit.
We've looked at a few different options for dealing with these...
1
answers
0
votes
43
views
asked 16 days agolg...
I want to migrate AWS EC2 MongoDB 3.2.11 to AWS DocumentDB. Is there any migration tools that we can use? especially since it's production environment, we want to have nearly zero downtime and can...
2
answers
0
votes
125
views
asked a month agolg...
Filtering on _id field using regex works fine if the regex does not start with escape characters
```
db.getCollection('col').aggregate([ { $match: { _id: /^xx/ } } ], {hint: {_id: 1}, explain: true...
1
answers
0
votes
72
views
asked a month agolg...
I am trying to connect to docdb cluster from my local laptop, using ssm port forwarding.
I did the following
```
aws ssm start-session --target instance-id \
--document-name...
0
answers
0
votes
57
views
asked a month agolg...
Current design:
3000 timeseries collections- each has single index and TTL used.
Problems:
a) Write operation happens every 10 mins in all 3000 collections, which is time consuming.
b) TTL...
1
answers
0
votes
54
views
asked a month agolg...
How can I connect DocumentDB Change Stream as a Trigger Source of Lambda Function in Private VPC?lg...
I'm following this tutorial: https://docs.aws.amazon.com/lambda/latest/dg/with-documentdb-tutorial.html
And I found it won't work if I change the VPC settings to a custom VPC with private subnets.
I'm...
1
answers
0
votes
155
views
asked a month agolg...
When i try to do mongodump, I am getting the below error:
Failed: error creating intents to dump: error creating intents for database <db>: error counting <db>.<col>: Aggregation stage not supported:...
1
answers
0
votes
87
views
asked 2 months agolg...
I have an aggregate pipeline which is pretty much:
```
[
{ "$match" : <filter out some basic stuff>},
{"$redact" : <more complicated filter>},
{"$limit":x}
]
```
Assume that I have 10...
0
answers
0
votes
15
views
asked 2 months agolg...