python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Python multiprocessing, can't pickle thread.lock (pymongo.Cursor)
First, let me assure you I read all the relevant answers and they don't work for me.
I am using multiprocessing Pool to parallelize my data creation. I am using Mongodb 5.0 and pymongo client.
As you ...
froy001
Votes: 0
Answers: 0
Mongo DB Error "The server is in quiesce mode and will shut down"
I'm currently getting a Mongo error - "NotPrimaryError: The server is in quiesce mode and will shut down".
I have a CRON job that runs every day after midnight that just retrieves some stuff...
FreelanceDev1
Votes: 0
Answers: 0
Pymongo connection to DocumentDB cluster
I'm facing some problems in order to programatically connect python to our AWS DocumentDB (AWS version of MongoDB) instance in a local environment. We tried the following steps:
To start our experime...
ruhufu
Votes: 0
Answers: 3
Bulk insert with validation in MongoEngine
I'm inserting objects in bulk to MongoDB using Mongoengine like this (simplified code):
class Customer(Document):
first_name = StringField(max_length=100)
last_name = StringField(max_length=10...
P D
Votes: 0
Answers: 1