ptupitsyn commented on issue #11463: URL: https://github.com/apache/ignite/issues/11463#issuecomment-2268357897
Eviction does not work with native persistence, see https://ignite.apache.org/docs/latest/memory-configuration/eviction-policies > Eviction is used in following cases: > * for off-heap memory when [Native Persistence](https://ignite.apache.org/docs/latest/persistence/native-persistence) is off; > * for off-heap memory when Ignite is used with an [external storage](https://ignite.apache.org/docs/latest/persistence/external-storage); > * for [on-heap caches](https://ignite.apache.org/docs/latest/configuring-caches/on-heap-caching); > * for [near caches](https://ignite.apache.org/docs/latest/configuring-caches/near-cache) if configured. > When Native Persistence is on, a similar process — called page replacement — is used to free up off-heap memory when Ignite > cannot allocate a new page. The difference is that the data is not lost (because it is stored in the persistent storage), and > therefore you are less concerned about losing data than about efficiency. Refer to the [Replacement Policies](https://ignite.apache.org/docs/latest/memory-configuration/replacement-policies) page for information about page replacement configuration. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
