Skip to content

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
Development

Successfully merging this pull request may close these issues.

1 participant