Onion Information
Linux memory arenas - Bisq Wiki
Linux memory arenas - With the intention of improving efficiency of memory access in multi-threaded applications, glibc may create more memory regions (known as arenas ) than necessary. In some cases, multi-threaded java applications alloca...
Onion Details
Page Clicks: 0
First Seen: 03/11/2024
Last Indexed: 10/21/2024
Onion Content
Linux memory arenas From Bisq Wiki (Redirected from Linux Memory Arenas ) Jump to navigation Jump to search With the intention of improving efficiency of memory access in multi-threaded applications, glibc may create more memory regions (known as arenas ) than necessary. In some cases, multi-threaded java applications allocating few and small objects can trigger creation of one arena for each of those threads, resulting in large growth of the Java process' resident memory, no matter how well on-heap memory is managed by the application. One way to limit arena creation in Bisq is to define the environment variable MALLOC_ARENA_MAX . export MALLOC_ARENA_MAX=4 If not set (default=0), a combination of applications may create as many arenas as the number of CPU cores * 8. This setting reduced resident memory use by ~300 MB, and reduced virtual memory use by ~3.7 GB on an 8-core machine with 16GB RAM running Ubuntu 18. The trade-off for reducing resident memory use in this way is the added cost of the contention between threads for memory access among fewer arenas, but this was not perceptible during testing and profiling (the major bottlenecks in Bisq performance are related to Tor/P2P network I/O). There are many sources of information on this and other tunable memory allocation parameters, such as the Linux mallopt man page. Additional research and troubleshooting tips are welcome. Retrieved from " http://s3p666he6q6djb6u3ekjdkmoyd77w63zq6gqf6sde54yg6bdfqukz2qd.onion/index.php?title=Linux_memory_arenas&oldid=1514 " Category : Troubleshooting Navigation menu Personal tools English Log in Namespaces Page Discussion Variants Views Read View source View history More Search Navigation Main page Recent changes Random page Help about MediaWiki Tools What links here Related changes Special pages Printable version Permanent link Page information This page was last edited on 18 June 2020, at 21:39. Privacy policy About Bisq Wiki Disclaimers