The G1 GC in JDK 9

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ย. 2024

ความคิดเห็น • 10

  • @king0s
    @king0s ปีที่แล้ว

    Really good intro before getting into detailed explanation.

  • @silpakandi6739
    @silpakandi6739 6 ปีที่แล้ว +1

    Hi Eric, Can you please suggest any new performance tuning options for G1GC. We recently started migrating from CMS to G1GC which resulted in performance issues due to humongous objects. We went with 32M region size, still performance issue is not fixed. Please let me know if there are any special options to handle humongous objects.

  • @samueldavidgomezramos7880
    @samueldavidgomezramos7880 ปีที่แล้ว

    Hi, what exactly compactly copied means?

  • @jimwichen7978
    @jimwichen7978 2 ปีที่แล้ว

    How can I get the slides?

  • @venkateshrasipuram4804
    @venkateshrasipuram4804 6 ปีที่แล้ว +1

    Humongous object are the size of more than half of the region size. Let's say if my object some is 3MB and the region size is only 2MB. Where does this object gets allocated?? Will the size of the region gets resized automatically??

    • @thomasatzmuller3427
      @thomasatzmuller3427 6 ปีที่แล้ว +1

      Regions cannot be resized. As far as I understand, this 3MB object will be allocated in two consecutive humongous regions.

    • @ericshiau6221
      @ericshiau6221 6 ปีที่แล้ว +1

      Yes, this is mentioned in Q&A session.

    • @jna5413
      @jna5413 5 ปีที่แล้ว

      It starts at 23:30

  • @pratikgandhi9543
    @pratikgandhi9543 6 ปีที่แล้ว +2

    How region created in JVM ?

    •  3 ปีที่แล้ว

      Regions are an analogy to how G1GC sees the HEAP , which is simply a pseudo-continuous memory space.