Made a simple NodeJS app that uses Mongoose client to connect to CosmosDB (via MongoDB API).
After a while I noticed that my CosmosDB instance is receiving many IsMaster requests from my application (+12 times per minute). Image bellow:
Azure treats this as RUs, and charge me for it.
Is this normal?
My connection options are as follows:
{
ssl: true,
useNewUrlParser: true,
promiseLibrary: global.Promise,
auth: {
user: "admin",
password: "123456"
}
}