iModel States #142
Unanswered
candcconsulting
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Can someone from Bentley advise if the below is accurate ... and if not advise of iModel states ?
iModel States
Cold iModel State
A Cold iModel refers to a state where the digital twin data resides strictly in cloud storage (like Azure Blob) and has not yet been opened, provisioned, or copy into active memory/local SSD storage by the backend execution nodes.
Cached (Warm) iModel State
A Cached (or Warm) iModel means that the physical database file has already been copied to the backend worker's local SSD storage, or the schema has been parsed, but it isn’t actively kept alive in the system's ultra-fast RAM.
Hot iModel State
A Hot iModel represents the peak performance state. In this phase, the iModel is fully opened, active backend workers are actively running, and the necessary database pages, schemas, and frequently hit indices are fully loaded into the RAM of the execution node.
iModel Cached Query
When a query for an iModel and Change state is initially ran then the results are stored in a performance cache. The second time the query is ran with the same finderprint, the results are returned from the cache rather than running the query against the hot iModel.
All reactions