Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SERVER-84220:wiredTigerEngineRuntimeConfig perfect #1587

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

y123456yz
Copy link
Contributor

@y123456yz y123456yz commented Dec 31, 2023

When we modify the configuration information of WT multiple times, Mongo server can only retain the last result and cannot obtain all modification records.

image
db.adminCommand( { setParameter : 1, "wiredTigerEngineRuntimeConfig" : "io_capacity=(total=110M)"})
{ "was" : "", "ok" : 1 }

db.adminCommand( { setParameter : 1, "wiredTigerEngineRuntimeConfig" : "eviction=(threads_min=8, threads_max=12)"})
{ "was" : "io_capacity=(total=110M)", "ok" : 1 }

db.adminCommand( { setParameter : 1, "wiredTigerEngineRuntimeConfig" : "verbose=[api:5]"})
{ "was" : "eviction=(threads_min=8, threads_max=12)", "ok" : 1 }

db.adminCommand( { getParameter : "1", wiredTigerEngineRuntimeConfig : 1 } )
{ "wiredTigerEngineRuntimeConfig" : "verbose=[api:5]", "ok" : 1 }

@y123456yz
Copy link
Contributor Author

After the interface is perfected, we can obtain complete wt configuration information

@y123456yz
Copy link
Contributor Author

WT-12083

@y123456yz y123456yz changed the title wiredTigerEngineRuntimeConfig perfect SERVER-84220:wiredTigerEngineRuntimeConfig perfect Dec 31, 2023
@y123456yz
Copy link
Contributor Author

SERVER-84220

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant