Ask a Question related to Coldfusion Server Administration, Design and Development.

  1. #1

    Default garbage problem

    hi, i've a problem with garbage collection,
    my server:
    2 CPU intel xeon 3 Ghz (dual core)
    3 Gb of ram

    my jvm.config

    java.args=-server -DJINTEGRA_NATIVE_MODE -DJINTEGRA_PREFETCH_ENUMS -Xms1024m
    -Xmx1024m -Dsun.io.useCanonCaches=false -XX:MaxPermSize=128m -XX:+UseParallelGC
    -XX:+AggressiveHeap -XX:+UseAdaptiveSizePolicy -XX:+UseParNewGC

    the resources are not freed, wich is the problem? correct params for
    jvm.config?

    Add_89 Guest

  2. Similar Questions and Discussions

    1. Garbage collector
      Hey all, I have a table, 'Objects', and a table 'Refs'. The table 'Refs' could have multiple rows which reference one object in 'Object'. What is...
    2. Strange .NET garbage collector problem
      Hi, I have a standalone application that reads ~40.000 rows from a database and put them in a ListView control. After reading the data, my app...
    3. GARBAGE Thanks to whoever posted this! IT REALLY IS GARBAGE!!!! $$$$$
      Dip Head... Post your stupid garbage Elsewhere!!! Freakin Garbage! Thank you for your time and have a great day, Carroll P. MacDonald --
    4. URL Garbage
      Thanks so very much. I know I've asked it, I just couldn't remember what the answer was. Tibby "Marina" <zlatkinam@nospam.hotmail.com> wrote in...
    5. Epson is garbage
      "Paul Worden" <com> wrote in message news:<Mp5Ra.6181$bigpond.net.au>... > I concur with the price gouging comment - but the 2100 at least has 7 >...
  3. #2

    Default Re: garbage problem

    Other requeriment of the web:

    .. No timeout for requests
    Add_89 Guest

  4. #3

    Default Re: garbage problem

    I don't really like the idea of having a static JVM heap size. Your Xmx is
    fine. But consider lowering your Xms down. 256, 384 or even 512M.

    You might want to consider stop using ParallelGC. It's old and crusty.
    Consider -XX: +UseConcMarkSweepGC alongside UseParNewGC.

    Where are your GC collections running into problems? New gen? Perm gen?
    Might want to consider setting that particular memory area higher. I keep my
    NewSize at 192m. PermSize starts at 32m and is allowed to grow to 384m.

    ke4pym Guest

  5. #4

    Default Re: garbage problem

    thanks for the answer. the problems are that the process jrun increases of size and does not free the memory


    Add_89 Guest

  6. #5

    Default Re: garbage problem

    [q]Originally posted by: Add_89
    Other requeriment of the web:

    .. No timeout for requests[/q]

    consider a timeout for requests....it was designed for that purpose :-)


    paulusje Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139