The MongoDB oplog displays repetitive patterns at unpredictable intervals

My current focus is on utilizing MongoDB and the oplog has proven to be a crucial component of my application. However, I've noticed a recurring issue during development where the oplog contains duplicate records (changes) 3 or 4 times.

In an attempt to troubleshoot this issue, I have diligently used console logging to track every step of the database update process and monitor the oplog. Despite these efforts, I find myself at a loss.

oplogPO.on('update', function (data) { console.log(data.o) }

The code snippet above consistently displays { '$set': { status: 1000 } }, but sometimes it outputs this information multiple times.

Has anyone else encountered this issue before? Could someone provide insight into why this duplication occurs?

Furthermore, this marks my first time reaching out for assistance on stackoverflow, so please feel free to offer any feedback if I missed any guidelines ;)

Answer №1

Issue Resolved!

I have made a modification to streamline the process of utilizing changes in the oplog with sockets. Now, the entire oplog is integrated into the connection:

io.on('connection', function(socket){
 oplogPO.on('update', function (data) { console.log(data.o) }
 socket.emit('updateOrders', {data: "send the socket"});
})

This adjustment ensures that every time a connection is established, the amount of repetition is increased.

Updated Code:

var socketStuff
oplogPO.on('update', function (data) { 
 socketStuff.emit('updateOrders', {data: "send the socket"});
}

io.on('connection', function(socket){
 socketStuff = socket
 socket.emit('updateOrders', {data: "send the socket"});
})

While it may not be the most elegant solution, it gets the job done :)

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Utilizing the Vuex/Redux store pattern to efficiently share a centralized source of data between parent and child components, allowing for customizable variations of the data as

Understanding the advantages of utilizing a store pattern and establishing a single source of truth for data shared across components in an application is essential. Making API calls in a store action that can be called by components, rather than making se ...

Multer can handle the uploading of various files from multiple inputs within a single form

I've searched everywhere on the internet, but I can't seem to find a solution that matches my specific issue. As someone new to Node.JS, I'm attempting to upload two different pictures using Multer from the same form. Here's what my for ...

What steps should be taken to resolve the error message "EROFS: read-only file system, attempting to open '/var/task/db.json'?"

const jsonServer = require('json-server') const cors = require('cors') const path = require('path') const server = jsonServer.create() const router = jsonServer.router(path.join(__dirname, 'db.json')) const middlewa ...

Loading JSON data in AngularJS before parsing and loading HTML content from it

Greetings, I am new to Angular and seeking some guidance. My goal is to limit a list of notifications to three using limitTo, and then load the rest when a button is clicked. Currently, I am unsure about the following: How to set up the "view" and appl ...

Utilize environment variables to access system information when constructing an Angular 2 application

In order to build my Angular application, I want to utilize a single system variable. System Variable server_url = http://google.com This is how my Environment.ts file looks: export const environment = { production: false, serveUrl: 'http://so ...

Downloading a folder in Node.js using HTTP

Currently facing an issue with downloading a folder in node js. The problem arises when I make an HTTP request for a whole folder and receive a stream that contains both the folder and files. Existing solutions (like fs.createWriteStream) only seem to work ...

JavaScript encountered a server error when attempting to utilize emotion/styled

import Link from "next/link"; import Image from "next/image"; import { Text, useColorModeValue } from "@chakra-ui/react"; import { styled } from "@emotion/styled" const LogoBox = styled.span` font-weight: bold; font ...

What are the ideal situations for utilizing embedded documents within MongoDB?

I have been researching about embedding in MongoDB extensively, but I am still uncertain on when it should be used. To help clarify, let's consider a few scenarios: Imagine we have a collection called UserGroups with fields like: _id name Now, if ...

Upon executing `$('div')`, an empty array is returned

My goal is to retrieve all the div classes on a page using jQuery $('div');. However, the page does not natively support jQuery, so I am loading it through external links until $ === jQuery evaluates to true. Even on Stack Overflow where jQuery ...

How can I use oboe.js to target a specific node instead of selecting all matching nodes?

Currently, I am receiving a JSON array through an http stream. The objects within this array are structured as follows: { "ID" : 1234, "Item" : { "ID" : "ABC123", "name" : "a thing" } } In reality, the objects are part of an array and look ...

Retrieve information from individual XML nodes in a parsed string

When making an Ajax call to retrieve XML data from a different domain using a PHP proxy to bypass cross-origin restrictions, I am unable to extract the values from the XML nodes and display them in my HTML tags. Despite no errors showing up in the browser ...

Place a checkbox at the start of each table cell

Is there a way to add a checkbox before the text in the first cell of each row in an HTML table using jQuery? I attempted this method: $("table td:first-child").each(function() { $(this).prepend('<input type="checkbox" class="basic-kpi-row"/&g ...

Step by step guide on inserting View and Delete buttons in an HTML table populated by JSON data

I've successfully loaded data from a JavaScript file in JSON format into a plain HTML table using JavaScript. Everything is working well so far. I now want to enhance the table by adding two buttons, View and Delete, that when clicked will redirect to ...

Utilizing the Bootstrap portfolio section, I aim to eliminate the 'ALL' tab and ensure a category is selected

Currently, I am utilizing this template If you scroll down to the WORK section, you will find the portfolio section which is filterable. The default selected option is "ALL," displaying all items. However, I would like to remove this and activate a diffe ...

The concept of setTimeout and how it affects binding in JavaScript

I have limited experience with jquery, mainly using it for toggling classes. However, I will do my best to explain my issue clearly. I have three div elements and when one is clicked, the other two should rotate 90 degrees and then collapse to a height of ...

How about I visit the campgrounds/edit page for a change?

In this get route, the previous link it was redirected from is stored in the req.session object under returnTo. Once redirected, it goes to the /login and we are able to view the object in the console. router.get('/login', (req, res) => { ...

What are the reasons to steer clear of setting y.innerHTML equal to x.innerHTML?

If we have a DIV x on the webpage and want to duplicate its contents into another DIV y, we might be tempted to use the following code: y.innerHTML = x.innerHTML; This can also be achieved using jQuery: $(y).html( $(x).html() ); However, it is recommen ...

Tips for sending values via props to a different component and the common error message: "Consider using the defaultValue or value props instead of setting selected on the <option> element"

Currently, I am attempting to pass the selected value using the prop: handle state change, but encountering two errors. Error 1 : Instead of setting selected on <option>, use the defaultValue or value props. Error 2 : A property 'active' ...

javascript does not function properly within the UI router view

In my latest project, I have used a combination of Node.js, AngularJS, and HTML. The main HTML file is named "main.html". <html> <head> <script src="angularJs.js"></script> <script src="ui-router.js">< ...

Has the rotation of the model been altered?

Is there a way to detect if the rotation of a model has changed? I've attempted: var oldRotate = this._target.quaternion; console.log('works returns vector3 quaternion: ', oldRotate); var newRotate = oldRotate; if (oldRotate != ...