How to allocate and manage JVM memory in java?
The content of this article is to introduce how to allocate and manage JVM memory in java? Let everyone understand the JVM's garbage collection algorithm and JVM's memory allocation mechanism. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
1. Garbage collection algorithm
-
#Memory allocation mechanism in JVM
The garbage collection algorithm has a mark-sweep algorithm, Mark-collation algorithm and copy algorithm. JVM uses generational collection algorithm to reclaim the memory space allocated by JVM. Generational collection algorithm is divided into new generation and old generation. It mainly collects heap memory in JVM memory model. Among them, new generation uses copy algorithm. , the old generation uses the mark-sort algorithm. Let’s explore the specific ideas of the garbage collection algorithm.
Mark-clear algorithm:
The mark-clear algorithm is divided into two stages: marking and clearing. First, the memory space that needs to be recycled is marked, and after the marking is completed, all marked objects are recycled uniformly. Object. There are two main reasons for it: 1. Its marking and clearing efficiency are not high. 2. It will generate a large number of discontinuous memory fragments after clearing the object space, causing garbage collection to be triggered in advance due to insufficient memory when large objects (objects that require a large amount of continuous memory) are reallocated. Its recycling process is shown in the figure below.
Copy algorithm
The copy algorithm divides the memory capacity into two equal blocks, using one block at a time Memory, when this memory is used up, copy the surviving objects in this memory to another memory, then clear this memory space, and allocate the next object to another memory space, that is, there are objects stored The two memory spaces are used alternately. The new generation in the JVM heap memory is divided into Eden space, from survivor space and to survivor space. The default Eden and survivor space ratio is 8:1, of which Eden accounts for 80%, from and to each account for 10%, and the space that can be utilized by all new generation memory is 90%. In the new generation, a large number of objects will be collected during each garbage collection, so only a few surviving objects need to be copied. The following is the operation process of the copy algorithm:
- ##Mark-organizing algorithm:
The copy algorithm has a relatively high object survival rate. It is not easy to use in high settings because it requires copying a large number of live objects. More importantly, the copy algorithm will waste some space. Because the old generation stores some objects with relatively long lifetimes, it is not suitable to use the replication algorithm. According to the characteristics of the old era, the mark-sort algorithm was produced. The mark-compact algorithm first marks the surviving objects, then moves them to one end, and then releases the object memory outside the end boundary. The execution process of the marking-collation algorithm is as follows:
2. Memory allocation and recycling strategyIn the Java technology system The automatic memory management advocated can ultimately be attributed to automatically allocating memory to objects and reclaiming the memory allocated to objects. Regarding memory recovery, you can refer to the garbage collection algorithm above. The JVM uses a generational garbage collection algorithm to recover object memory, which is divided into the new generation and the old generation. The new generation uses the copy algorithm, and the old generation uses the mark-sort algorithm. Let’s take a look at the memory allocation strategy of the JVM:
- Objects are allocated in the Eden area first
In most cases, objects are allocated in the new generation Eden area. When the Eden area does not have enough memory space for allocation, the virtual machine will initiate a Minor GC (New Generation GC) to recycle dead objects in the New Generation. Surviving objects are stored in the survivor area. If there is not enough space in the survivor area, Storage will be directly deposited into the old generation through space allocation guarantee. Then store the object in the Eden area.
- Large objects enter the old generation directly
Large objects refer to objects that require a large amount of continuous memory space. The most typical large objects are very long strings and very long arrays. . Large objects are bad news for the memory allocation of virtual machines. The frequent occurrence of large objects can easily trigger garbage collection in advance and generate continuous space to store large objects when there is still a lot of space in the memory. The worse situation with small objects is to encounter a group of "short-lived" large objects, which should be avoided when writing programs.
Long-term surviving objects enter the old generation
Since the virtual machine adopts the idea of generational collection to manage memory, the virtual machine needs to know which objects should be placed in the new generation and which objects should be placed in the new generation. Put it in the old age. The virtual machine gives each object an age counter. If this object has experienced a Minor GC in the Eden area and is stored in the survivor area, then the age of this object is 1. Every time it survives a Minor GC, the object's age increases by 1. When its age increases to a certain level ( The default is 15 years old), it will be promoted to the old generation.Dynamic Object Age Determination
In order to better adapt to the memory conditions of different programs, the virtual machine does not always allow the object to enter only when the age of the object reaches a certain level. In the old generation, if the total memory of objects of the same age in the survivor space is greater than half of the memory in the survivor space, objects greater than or equal to this age will enter the old generation.Space allocation guarantee
The old generation will guarantee the memory allocation of the new generation. That is to say, before performing Minor GC, the virtual machine will first check the maximum continuous available memory of the old generation. Is the space greater than or equal to the total space of all objects in the new generation? If it is greater than or equal to this, it means that the Minor GC is safe this time, because after the Minor GC, the new generation objects may be stored in the old generation (when the survivor space is lost after the Minor GC When the memory is not enough), if this condition is not true, the virtual machine will check whether the HandlePromotionFailure setting allows guarantee failure. If it is allowed, the virtual machine will check whether the maximum continuous available space in the old generation is greater than the average size of objects that have been promoted to the old generation. If it is greater, The virtual machine attempts to perform a Minor GC. If guarantee failure is not allowed, Full GC (Old Generation GC) will be performed to reclaim the space of dead objects in the Old Generation so that the Old Generation can free up more space.
The above is the detailed content of How to allocate and manage JVM memory in java?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

This project is designed to facilitate developers to monitor multiple remote host JVMs faster. If your project is Spring boot, it is very easy to integrate. Just introduce the jar package. If it is not Spring boot, don’t be discouraged. You can quickly initialize a Spring boot program and introduce it yourself. Jar package is enough

JVM command line parameters allow you to adjust JVM behavior at a fine-grained level. The common parameters include: Set the Java heap size (-Xms, -Xmx) Set the new generation size (-Xmn) Enable the parallel garbage collector (-XX:+UseParallelGC) Reduce the memory usage of the Survivor area (-XX:-ReduceSurvivorSetInMemory) Eliminate redundancy Eliminate garbage collection (-XX:-EliminateRedundantGCs) Print garbage collection information (-XX:+PrintGC) Use the G1 garbage collector (-XX:-UseG1GC) Set the maximum garbage collection pause time (-XX:MaxGCPau

An introduction to the analysis of the functions and principles of the JVM virtual machine: The JVM (JavaVirtualMachine) virtual machine is one of the core components of the Java programming language, and it is one of the biggest selling points of Java. The role of the JVM is to compile Java source code into bytecodes and be responsible for executing these bytecodes. This article will introduce the role of JVM and how it works, and provide some code examples to help readers understand better. Function: The main function of JVM is to solve the problem of portability of Java programs on different platforms.

Key points and precautions for mastering JVM memory usage JVM (JavaVirtualMachine) is the environment in which Java applications run, and the most important one is the memory management of the JVM. Properly managing JVM memory can not only improve application performance, but also avoid problems such as memory leaks and memory overflows. This article will introduce the key points and considerations of JVM memory usage and provide some specific code examples. JVM memory partitions JVM memory is mainly divided into the following areas: Heap (He

Before writing a java program to check whether the JVM is 32-bit or 64-bit, let us first discuss about the JVM. JVM is a java virtual machine, responsible for executing bytecode. It is part of the Java Runtime Environment (JRE). We all know that java is platform independent, but JVM is platform dependent. We need separate JVM for each operating system. If we have the bytecode of any java source code, we can easily run it on any platform due to JVM. The entire process of java file execution is as follows - First, we save the java source code with .java extension and the compiler converts it into bytecode with .class extension. This happens at compile time. Now, at runtime, J

Java is a popular programming language. During the development of Java applications, you may encounter JVM memory overflow errors. This error usually causes the application to crash, affecting the user experience. This article will explore the causes of JVM memory overflow errors and how to deal with and avoid such errors. What is JVM memory overflow error? The Java Virtual Machine (JVM) is the running environment for Java applications. In the JVM, memory is divided into multiple areas, including heap, method area, stack, etc. The heap is used to store created objects

JVM memory parameter settings: How to reasonably adjust the heap memory size? In Java applications, the JVM is the key component responsible for managing memory. Among them, heap memory is used to store object instances. The size setting of heap memory has an important impact on the performance and stability of the application. This article will introduce how to reasonably adjust the heap memory size, with specific code examples. First, we need to understand some basic knowledge about JVM memory. The JVM's memory is divided into several areas, including heap memory, stack memory, method area, etc. in

Detailed explanation of JVM principles: In-depth exploration of the working principle of the Java virtual machine requires specific code examples 1. Introduction With the rapid development and widespread application of the Java programming language, the Java Virtual Machine (JavaVirtualMachine, referred to as JVM) has also become indispensable in software development. a part of. As the running environment for Java programs, JVM can provide cross-platform features, allowing Java programs to run on different operating systems. In this article, we will delve into how the JVM works
