SummaryRunning Django migrations against our MongoDB database does not create MongoDB collections or indexes as defined in our app. The command completes without errors, but no collections or indexes ...
I have been experiencing slow mongo queries suddenly. The execution times varies very randomly. Initially I was suspecting this expensive aggregation operation :-{ "appName": "XXXXXX&...
I need to search crypto tokens by name (text search), symbol (exact match) or address (prefix match, i.e. return all tokens the address of which starts with the user query). Instead of relying on a ...
I have created two private endpoints on both ends (MongoDb database and Azure VNET). The Network Access details in Mongo Atlas indicate that both endpoint status are available. However, I'm not sure ...
Currenlty I'm developing an application to automate database backup and restore operations. We are dealing with different types of databases, but one of them is MongoDb. Our MongoDb are hosted by ...
I am trying to replicate the below JSON in Java to search using Atlas Search, using the Aggregates class, rather than just creating all of this by a new Document().[ { $search: { ...
Im trying to create a custom image for my local development purposes using the mongodb/mongodb-atlas-local image.However if my docker entrypoint uses the regular FOSS mongo starting command:mongod --...
I started getting this error recently.PlanExecutor error during aggregation :: caused by :: service temporarily unavailableIt seems to happen randomly when my application is trying to use an ...
I'm running mongodb/mongodb-atlas-local in Docker, I got the docker-compose from here. It used to work, but it suddenly stopped. I tried deleting every images and volumes and rebuild it but nothing ...
I'm using MongoDB Atlas and noticed a warning in the Performance Advisor and monitoring dashboard:"Query Targeting: Scanned Objects / Returned" has gone above 1000From my understanding, ...
I have a trigger set up on a database that fires a function whenever a new document is inserted. This function generates a summary from the full document and updates a collection in another database. ...
Hi I'm trying to implement service logic that invoke aws s3 codes after saving data(after commit) to mongodb.Basically, in @Service class, there's @Transactional method which receives data from ...
I'm working on a Next.js API route that inserts user data into a MongoDB collection. However, whenever I insert a new document, it seems to replace all existing documents in the collection instead of ...
I am using MongoDB Atlas Search and want to create a partial search index where:Only specific documents are indexed based on a field condition (e.g., status: "active").Only specific fields ...
I want to get data from database and display it in html code through <%= %> tag.// index.jsconst express = require('express');const router = express.Router();const { ensureAuthenticated } = ...