I have been setting up Zram, Swap, Swappiness and EasyOOM daemon on 16gb ram boxes, or lower. Someone asked me about 32gb of ram, or more, and I’m unsure. Wondering if others have experimented with this!

  • ISO@lemmy.zip
    link
    fedilink
    arrow-up
    1
    arrow-down
    3
    ·
    13 hours ago

    Why do you think 32GiB is special compared to 16GiB?
    And wtf is EasyOOM?

    You maximize the usefulness of zram by actually increasing sappiness, and giving zram devices high priority. e.g.

    sysctl vm.swappiness=100
    
    for i in {1..8}; do
      swapon /dev/zram${i} -p 32767
    done
    

    Then you enable other swap devices with lower priority.

    This is the way regardless of how much RAM you have. I mean, it may be pointless if you never ever exceed, let’s say 10/32GiB (including caching). But it still wouldn’t be harmful in any way.

    • non_burglar@lemmy.world
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      8 hours ago

      That isn’t how swappiness works.

      Changing the sysctl for swappiness only adjusts the ratio of anonymous and file pages, it doesn’t set a “threshold” or “aggressivity” in swapping pages, nor does it dictate how much or how little to swap.

      It’s generally ill-advised to touch swappiness at all unless you know what you’re doing. You can start here.

      If you’re going to hand out free advice, at least make sure the advice is worth the price of admission.

      • ISO@lemmy.zip
        link
        fedilink
        arrow-up
        1
        ·
        7 hours ago

        If you’re going to hand out free advice, at least make sure the advice is worth the price of admission.

        This is very ironic, considering your comment is a mix of straw man and wrong.

      • ISO@lemmy.zip
        link
        fedilink
        arrow-up
        1
        ·
        10 hours ago

        Oh, you wrote “easy” not “early” in OP. In any case, this looks stupid. But to each their own, I guess.