[DOCS-14046] Investigate changes in SERVER-51499: Separate statistics per ServiceExecutor Created: 10/Dec/20  Updated: 13/Nov/23  Resolved: 29/Jan/21

Status: Closed
Project: Documentation
Component/s: manual, Server
Affects Version/s: None
Fix Version/s: 4.9.0, Server_Docs_20231030, Server_Docs_20231106, Server_Docs_20231105, Server_Docs_20231113

Type: Task Priority: Major - P3
Reporter: Backlog - Core Eng Program Management Team Assignee: Jason Price
Resolution: Fixed Votes: 0
Labels: None
Remaining Estimate: Not Specified
Time Spent: Not Specified
Original Estimate: Not Specified

Issue Links:
Documented
documents SERVER-51499 Separate statistics per ServiceExecutor Closed
Participants:
Days since reply: 3 years, 1 week, 5 days ago
Epic Link: DOCSP-9747
Story Points: 2

 Description   

Description

Downstream Change Summary

In serverStatus, network.serviceExecutorTaskStats is now network.serviceExecutor with keys broken down by ServiceExecutor.

Description of Linked Ticket

The current format does not have allowances for separate service executors. Specifically, we need to represent a new section for the fixed service executor.

I'm proposing we change from this format:

"Current format"

serverStatus: {
    "connections" : {
        "current" : 1,
        "available" : 4,
        "totalCreated" : 1,
        "active" : 1,
        "threaded" : 1,
        "limitExempt" : 1,
        "exhaustIsMaster" : 0,
        "awaitingTopologyChanges" : 0,
        "adminConnections" : {
            "executor" : "reserved",
            "threadsRunning" : 3,
            "readyThreads" : 3,
            "startingThreads" : 0
        }
    },
    "network" : {
        "serviceExecutorTaskStats" : {
            "executor" : "passthrough",
            "threadsRunning" : 1
        }
    }
}

To this format:

"New format"

serverStatus: {
    "connections" : {
        "current" : 1,
        "available" : 4,
        "totalCreated" : 1,
        "active" : 1,
        "threaded" : 1,
        "limitExempt" : 1,
        "exhaustIsMaster" : 0,
        "awaitingTopologyChanges" : 0
    },
    "network" : {
        "serviceExecutorTaskStats" : {
            "passthrough" : {
                "threadsRunning" : 1
            },
            "fixed" : {
                "threadsRunning" : 1,
                "tasksRunning" : 0,
                "tasksWaiting" : 0
            },
            "reserved" : {
                "threadsRunning" : 3,
                "readyThreads" : 3,
                "startingThreads" : 0
            }
        }
    }
}

Scope of changes

Impact to Other Docs

MVP (Work and Date)

Resources (Scope or Design Docs, Invision, etc.)



 Comments   
Comment by Githook User [ 29/Jan/21 ]

Author:

{'name': 'Jason Price', 'email': 'jason.price@mongodb.com', 'username': 'jason-price-mongodb'}

Message: DOCS-14046 Separate statistics for ServiceExecutor
Branch: v5.0
https://github.com/mongodb/docs/commit/e1d356cbb13a4913d37aef7c88d9a255c033f2c5

Generated at Thu Feb 08 08:09:22 UTC 2024 using Jira 9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66.