|
Mike Schilli
2012-02-09, 01:23
César Álvarez Núñez
2012-02-09, 10:05
Camille Fournier
2012-02-09, 14:14
César Álvarez Núñez
2012-02-09, 14:47
Camille Fournier
2012-02-09, 14:59
César Álvarez Núñez
2012-02-09, 16:33
Mahadev Konar
2012-02-09, 18:17
Ariel Weisberg
2012-02-09, 22:25
César Álvarez Núñez
2012-02-10, 11:32
Mahadev Konar
2012-02-10, 17:31
Neha Narkhede
2012-03-02, 23:18
|
-
ZooKeeper Memory UsageMike Schilli 2012-02-09, 01:23
We've got a ZooKeeper instance that's using about 5 GB of resident
memory. Every time we restart it, it starts at 200MB, and then grows slowly until it is back at 5 GB. The large footprint is related to how much data we've got in there. What's interesting, though, is that the process size doesn't shrink if we purge some of the data. Now, this isn't a big problem, I'm just curious if the process will fall over at some point if it can't get more memory or if it'll just make due by caching less data. Also, if I remember correctly, there's a configuration variable to set the maximum size, what happens if ZK reaches that? -- -- Mike Mike Schilli [EMAIL PROTECTED]
-
Re: ZooKeeper Memory UsageCésar Álvarez Núñez 2012-02-09, 10:05
Which ZK version are you using?
We've got high memory consumption problems when using v3.4.0 that was solved by using v3.3.3 instead. It is pending to test with v3.4.2 and v3.3.4. /César. On Thu, Feb 9, 2012 at 2:23 AM, Mike Schilli <[EMAIL PROTECTED]> wrote: > We've got a ZooKeeper instance that's using about 5 GB of resident > memory. Every time we restart it, it starts at 200MB, and then grows > slowly until it is back at 5 GB. > > The large footprint is related to how much data we've got in there. > What's interesting, though, is that the process size doesn't shrink if > we purge some of the data. > > Now, this isn't a big problem, I'm just curious if the process will fall > over at some point if it can't get more memory or if it'll just make due > by caching less data. > > Also, if I remember correctly, there's a configuration variable to set > the maximum size, what happens if ZK reaches that? > > -- -- Mike > > Mike Schilli > [EMAIL PROTECTED] >
-
Re: ZooKeeper Memory UsageCamille Fournier 2012-02-09, 14:14
This is really a question about how the jvm grows its heaps and resizes
them. If the jvm cannot allocate enough memory for the process because you didn't set the max memory high enough, it will fall over. Zookeeper keeps its entire state in memory for performance reasons, if it were to swap that would be quite bad for performance. C On Feb 8, 2012 8:23 PM, "Mike Schilli" <[EMAIL PROTECTED]> wrote: > We've got a ZooKeeper instance that's using about 5 GB of resident > memory. Every time we restart it, it starts at 200MB, and then grows > slowly until it is back at 5 GB. > > The large footprint is related to how much data we've got in there. > What's interesting, though, is that the process size doesn't shrink if > we purge some of the data. > > Now, this isn't a big problem, I'm just curious if the process will fall > over at some point if it can't get more memory or if it'll just make due > by caching less data. > > Also, if I remember correctly, there's a configuration variable to set > the maximum size, what happens if ZK reaches that? > > -- -- Mike > > Mike Schilli > [EMAIL PROTECTED] >
-
Re: ZooKeeper Memory UsageCésar Álvarez Núñez 2012-02-09, 14:47
In my case, our stress test show up a linear increase of "tenured memory"
from 0 to > 3GiB with ZK 3.4.0 whereas the same stress-test with 3.3.3 keeps "tenured memory" stable and < 10MiB. The stress test performs many zNodes creation and delete but the overall zk usage at any moment in time was relative small. BR, /César. On Thu, Feb 9, 2012 at 3:14 PM, Camille Fournier <[EMAIL PROTECTED]> wrote: > This is really a question about how the jvm grows its heaps and resizes > them. If the jvm cannot allocate enough memory for the process because you > didn't set the max memory high enough, it will fall over. Zookeeper keeps > its entire state in memory for performance reasons, if it were to swap that > would be quite bad for performance. > > C > On Feb 8, 2012 8:23 PM, "Mike Schilli" <[EMAIL PROTECTED]> wrote: > > > We've got a ZooKeeper instance that's using about 5 GB of resident > > memory. Every time we restart it, it starts at 200MB, and then grows > > slowly until it is back at 5 GB. > > > > The large footprint is related to how much data we've got in there. > > What's interesting, though, is that the process size doesn't shrink if > > we purge some of the data. > > > > Now, this isn't a big problem, I'm just curious if the process will fall > > over at some point if it can't get more memory or if it'll just make due > > by caching less data. > > > > Also, if I remember correctly, there's a configuration variable to set > > the maximum size, what happens if ZK reaches that? > > > > -- -- Mike > > > > Mike Schilli > > [EMAIL PROTECTED] > > >
-
Re: ZooKeeper Memory UsageCamille Fournier 2012-02-09, 14:59
That is interesting. Can you send us the stress test so we can investigate?
Also, could you possibly run it on the new RC to see if it's still a problem? Thanks, C 2012/2/9 César Álvarez Núñez <[EMAIL PROTECTED]> > In my case, our stress test show up a linear increase of "tenured memory" > from 0 to > 3GiB with ZK 3.4.0 whereas the same stress-test with 3.3.3 > keeps "tenured memory" stable and < 10MiB. > > The stress test performs many zNodes creation and delete but the overall zk > usage at any moment in time was relative small. > > BR, > /César. > > On Thu, Feb 9, 2012 at 3:14 PM, Camille Fournier <[EMAIL PROTECTED]> > wrote: > > > This is really a question about how the jvm grows its heaps and resizes > > them. If the jvm cannot allocate enough memory for the process because > you > > didn't set the max memory high enough, it will fall over. Zookeeper keeps > > its entire state in memory for performance reasons, if it were to swap > that > > would be quite bad for performance. > > > > C > > On Feb 8, 2012 8:23 PM, "Mike Schilli" <[EMAIL PROTECTED]> wrote: > > > > > We've got a ZooKeeper instance that's using about 5 GB of resident > > > memory. Every time we restart it, it starts at 200MB, and then grows > > > slowly until it is back at 5 GB. > > > > > > The large footprint is related to how much data we've got in there. > > > What's interesting, though, is that the process size doesn't shrink if > > > we purge some of the data. > > > > > > Now, this isn't a big problem, I'm just curious if the process will > fall > > > over at some point if it can't get more memory or if it'll just make > due > > > by caching less data. > > > > > > Also, if I remember correctly, there's a configuration variable to set > > > the maximum size, what happens if ZK reaches that? > > > > > > -- -- Mike > > > > > > Mike Schilli > > > [EMAIL PROTECTED] > > > > > >
-
Re: ZooKeeper Memory UsageCésar Álvarez Núñez 2012-02-09, 16:33
The problem is that the stress test is a system stress test so it is not
possible (due to time issues) to isolate the ZK part. Fortunately, it is planned for next week to perform the same system stress test with 3.4.2 so I'll keep you informed. /César. On Thu, Feb 9, 2012 at 3:59 PM, Camille Fournier <[EMAIL PROTECTED]> wrote: > That is interesting. Can you send us the stress test so we can investigate? > Also, could you possibly run it on the new RC to see if it's still a > problem? > > Thanks, > C > > 2012/2/9 César Álvarez Núñez <[EMAIL PROTECTED]> > > > In my case, our stress test show up a linear increase of "tenured memory" > > from 0 to > 3GiB with ZK 3.4.0 whereas the same stress-test with 3.3.3 > > keeps "tenured memory" stable and < 10MiB. > > > > The stress test performs many zNodes creation and delete but the overall > zk > > usage at any moment in time was relative small. > > > > BR, > > /César. > > > > On Thu, Feb 9, 2012 at 3:14 PM, Camille Fournier <[EMAIL PROTECTED]> > > wrote: > > > > > This is really a question about how the jvm grows its heaps and resizes > > > them. If the jvm cannot allocate enough memory for the process because > > you > > > didn't set the max memory high enough, it will fall over. Zookeeper > keeps > > > its entire state in memory for performance reasons, if it were to swap > > that > > > would be quite bad for performance. > > > > > > C > > > On Feb 8, 2012 8:23 PM, "Mike Schilli" <[EMAIL PROTECTED]> wrote: > > > > > > > We've got a ZooKeeper instance that's using about 5 GB of resident > > > > memory. Every time we restart it, it starts at 200MB, and then grows > > > > slowly until it is back at 5 GB. > > > > > > > > The large footprint is related to how much data we've got in there. > > > > What's interesting, though, is that the process size doesn't shrink > if > > > > we purge some of the data. > > > > > > > > Now, this isn't a big problem, I'm just curious if the process will > > fall > > > > over at some point if it can't get more memory or if it'll just make > > due > > > > by caching less data. > > > > > > > > Also, if I remember correctly, there's a configuration variable to > set > > > > the maximum size, what happens if ZK reaches that? > > > > > > > > -- -- Mike > > > > > > > > Mike Schilli > > > > [EMAIL PROTECTED] > > > > > > > > > >
-
Re: ZooKeeper Memory UsageMahadev Konar 2012-02-09, 18:17
This is interesting and important.
Cesar, what jvm options are you running with? Can you the options in: https://cwiki.apache.org/confluence/display/ZOOKEEPER/Troubleshooting Atleast get the GC logs that we can look at? This will be very interesting. mahadev 2012/2/9 César Álvarez Núñez <[EMAIL PROTECTED]>: > In my case, our stress test show up a linear increase of "tenured memory" > from 0 to > 3GiB with ZK 3.4.0 whereas the same stress-test with 3.3.3 > keeps "tenured memory" stable and < 10MiB. > > The stress test performs many zNodes creation and delete but the overall zk > usage at any moment in time was relative small. > > BR, > /César. > > On Thu, Feb 9, 2012 at 3:14 PM, Camille Fournier <[EMAIL PROTECTED]> wrote: > >> This is really a question about how the jvm grows its heaps and resizes >> them. If the jvm cannot allocate enough memory for the process because you >> didn't set the max memory high enough, it will fall over. Zookeeper keeps >> its entire state in memory for performance reasons, if it were to swap that >> would be quite bad for performance. >> >> C >> On Feb 8, 2012 8:23 PM, "Mike Schilli" <[EMAIL PROTECTED]> wrote: >> >> > We've got a ZooKeeper instance that's using about 5 GB of resident >> > memory. Every time we restart it, it starts at 200MB, and then grows >> > slowly until it is back at 5 GB. >> > >> > The large footprint is related to how much data we've got in there. >> > What's interesting, though, is that the process size doesn't shrink if >> > we purge some of the data. >> > >> > Now, this isn't a big problem, I'm just curious if the process will fall >> > over at some point if it can't get more memory or if it'll just make due >> > by caching less data. >> > >> > Also, if I remember correctly, there's a configuration variable to set >> > the maximum size, what happens if ZK reaches that? >> > >> > -- -- Mike >> > >> > Mike Schilli >> > [EMAIL PROTECTED] >> > >> -- Mahadev Konar Hortonworks Inc. http://hortonworks.com/
-
Re: ZooKeeper Memory UsageAriel Weisberg 2012-02-09, 22:25
Hi,
If you set -Xmx2g or so and also run with -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/tmp you will get a heap dump. If you run ( http://www.eclipse.org/mat/) on it then ye olde pack rat will stick out like a sore thumb. Ariel On Thu, Feb 9, 2012 at 1:17 PM, Mahadev Konar <[EMAIL PROTECTED]>wrote: > This is interesting and important. > > Cesar, what jvm options are you running with? Can you the options in: > > https://cwiki.apache.org/confluence/display/ZOOKEEPER/Troubleshooting > > Atleast get the GC logs that we can look at? > > This will be very interesting. > > mahadev > > > 2012/2/9 César Álvarez Núñez <[EMAIL PROTECTED]>: > > In my case, our stress test show up a linear increase of "tenured memory" > > from 0 to > 3GiB with ZK 3.4.0 whereas the same stress-test with 3.3.3 > > keeps "tenured memory" stable and < 10MiB. > > > > The stress test performs many zNodes creation and delete but the overall > zk > > usage at any moment in time was relative small. > > > > BR, > > /César. > > > > On Thu, Feb 9, 2012 at 3:14 PM, Camille Fournier <[EMAIL PROTECTED]> > wrote: > > > >> This is really a question about how the jvm grows its heaps and resizes > >> them. If the jvm cannot allocate enough memory for the process because > you > >> didn't set the max memory high enough, it will fall over. Zookeeper > keeps > >> its entire state in memory for performance reasons, if it were to swap > that > >> would be quite bad for performance. > >> > >> C > >> On Feb 8, 2012 8:23 PM, "Mike Schilli" <[EMAIL PROTECTED]> wrote: > >> > >> > We've got a ZooKeeper instance that's using about 5 GB of resident > >> > memory. Every time we restart it, it starts at 200MB, and then grows > >> > slowly until it is back at 5 GB. > >> > > >> > The large footprint is related to how much data we've got in there. > >> > What's interesting, though, is that the process size doesn't shrink if > >> > we purge some of the data. > >> > > >> > Now, this isn't a big problem, I'm just curious if the process will > fall > >> > over at some point if it can't get more memory or if it'll just make > due > >> > by caching less data. > >> > > >> > Also, if I remember correctly, there's a configuration variable to set > >> > the maximum size, what happens if ZK reaches that? > >> > > >> > -- -- Mike > >> > > >> > Mike Schilli > >> > [EMAIL PROTECTED] > >> > > >> > > > > -- > Mahadev Konar > Hortonworks Inc. > http://hortonworks.com/ >
-
Re: ZooKeeper Memory UsageCésar Álvarez Núñez 2012-02-10, 11:32
This is the java.env file content.
now=`date +%d%m%Y_%H%M%S` gcLogFile="/srv/zk/GC/`hostname`-${now}.log" gcOpts="${gcOpts} -Xloggc:$gcLogFile" gcOpts="${gcOpts} -XX:+PrintGC" gcOpts="${gcOpts} -XX:+PrintGCTimeStamps" gcOpts="${gcOpts} -XX:+PrintGCDetails" gcOpts="${gcOpts} -XX:+PrintTenuringDistribution" gcOpts="${gcOpts} -XX:+PrintHeapAtGC" gcOpts="${gcOpts} -XX:+AggressiveHeap" #https://cwiki.apache.org/confluence/display/ZOOKEEPER/Troubleshooting #gcOpts="${gcOpts} -XX:+UseConcMarkSweepGC" #gcOpts="${gcOpts} -XX:ParallelGCThreads=8" #gcOpts="-Xms128M -Xmx1G" jvmOpts="${jvmOpts} -d64" jvmOpts="${jvmOpts} -server" jvmOpts="${jvmOpts} -XX:+UseCompressedOops" JVMFLAGS="${gcOpts} ${jvmOpts}" /César. On Thu, Feb 9, 2012 at 7:17 PM, Mahadev Konar <[EMAIL PROTECTED]>wrote: > This is interesting and important. > > Cesar, what jvm options are you running with? Can you the options in: > > https://cwiki.apache.org/confluence/display/ZOOKEEPER/Troubleshooting > > Atleast get the GC logs that we can look at? > > This will be very interesting. > > mahadev > > > 2012/2/9 César Álvarez Núñez <[EMAIL PROTECTED]>: > > In my case, our stress test show up a linear increase of "tenured memory" > > from 0 to > 3GiB with ZK 3.4.0 whereas the same stress-test with 3.3.3 > > keeps "tenured memory" stable and < 10MiB. > > > > The stress test performs many zNodes creation and delete but the overall > zk > > usage at any moment in time was relative small. > > > > BR, > > /César. > > > > On Thu, Feb 9, 2012 at 3:14 PM, Camille Fournier <[EMAIL PROTECTED]> > wrote: > > > >> This is really a question about how the jvm grows its heaps and resizes > >> them. If the jvm cannot allocate enough memory for the process because > you > >> didn't set the max memory high enough, it will fall over. Zookeeper > keeps > >> its entire state in memory for performance reasons, if it were to swap > that > >> would be quite bad for performance. > >> > >> C > >> On Feb 8, 2012 8:23 PM, "Mike Schilli" <[EMAIL PROTECTED]> wrote: > >> > >> > We've got a ZooKeeper instance that's using about 5 GB of resident > >> > memory. Every time we restart it, it starts at 200MB, and then grows > >> > slowly until it is back at 5 GB. > >> > > >> > The large footprint is related to how much data we've got in there. > >> > What's interesting, though, is that the process size doesn't shrink if > >> > we purge some of the data. > >> > > >> > Now, this isn't a big problem, I'm just curious if the process will > fall > >> > over at some point if it can't get more memory or if it'll just make > due > >> > by caching less data. > >> > > >> > Also, if I remember correctly, there's a configuration variable to set > >> > the maximum size, what happens if ZK reaches that? > >> > > >> > -- -- Mike > >> > > >> > Mike Schilli > >> > [EMAIL PROTECTED] > >> > > >> > > > > -- > Mahadev Konar > Hortonworks Inc. > http://hortonworks.com/ >
-
Re: ZooKeeper Memory UsageMahadev Konar 2012-02-10, 17:31
Great. You should have the gc logs then. Mind creating a jira and
uploading to it? mahadev 2012/2/10 César Álvarez Núñez <[EMAIL PROTECTED]>: > This is the java.env file content. > > now=`date +%d%m%Y_%H%M%S` > > gcLogFile="/srv/zk/GC/`hostname`-${now}.log" > gcOpts="${gcOpts} -Xloggc:$gcLogFile" > gcOpts="${gcOpts} -XX:+PrintGC" > gcOpts="${gcOpts} -XX:+PrintGCTimeStamps" > gcOpts="${gcOpts} -XX:+PrintGCDetails" > gcOpts="${gcOpts} -XX:+PrintTenuringDistribution" > gcOpts="${gcOpts} -XX:+PrintHeapAtGC" > > gcOpts="${gcOpts} -XX:+AggressiveHeap" > #https://cwiki.apache.org/confluence/display/ZOOKEEPER/Troubleshooting > #gcOpts="${gcOpts} -XX:+UseConcMarkSweepGC" > #gcOpts="${gcOpts} -XX:ParallelGCThreads=8" > #gcOpts="-Xms128M -Xmx1G" > > jvmOpts="${jvmOpts} -d64" > jvmOpts="${jvmOpts} -server" > jvmOpts="${jvmOpts} -XX:+UseCompressedOops" > > JVMFLAGS="${gcOpts} ${jvmOpts}" > > /César. > > On Thu, Feb 9, 2012 at 7:17 PM, Mahadev Konar <[EMAIL PROTECTED]>wrote: > >> This is interesting and important. >> >> Cesar, what jvm options are you running with? Can you the options in: >> >> https://cwiki.apache.org/confluence/display/ZOOKEEPER/Troubleshooting >> >> Atleast get the GC logs that we can look at? >> >> This will be very interesting. >> >> mahadev >> >> >> 2012/2/9 César Álvarez Núñez <[EMAIL PROTECTED]>: >> > In my case, our stress test show up a linear increase of "tenured memory" >> > from 0 to > 3GiB with ZK 3.4.0 whereas the same stress-test with 3.3.3 >> > keeps "tenured memory" stable and < 10MiB. >> > >> > The stress test performs many zNodes creation and delete but the overall >> zk >> > usage at any moment in time was relative small. >> > >> > BR, >> > /César. >> > >> > On Thu, Feb 9, 2012 at 3:14 PM, Camille Fournier <[EMAIL PROTECTED]> >> wrote: >> > >> >> This is really a question about how the jvm grows its heaps and resizes >> >> them. If the jvm cannot allocate enough memory for the process because >> you >> >> didn't set the max memory high enough, it will fall over. Zookeeper >> keeps >> >> its entire state in memory for performance reasons, if it were to swap >> that >> >> would be quite bad for performance. >> >> >> >> C >> >> On Feb 8, 2012 8:23 PM, "Mike Schilli" <[EMAIL PROTECTED]> wrote: >> >> >> >> > We've got a ZooKeeper instance that's using about 5 GB of resident >> >> > memory. Every time we restart it, it starts at 200MB, and then grows >> >> > slowly until it is back at 5 GB. >> >> > >> >> > The large footprint is related to how much data we've got in there. >> >> > What's interesting, though, is that the process size doesn't shrink if >> >> > we purge some of the data. >> >> > >> >> > Now, this isn't a big problem, I'm just curious if the process will >> fall >> >> > over at some point if it can't get more memory or if it'll just make >> due >> >> > by caching less data. >> >> > >> >> > Also, if I remember correctly, there's a configuration variable to set >> >> > the maximum size, what happens if ZK reaches that? >> >> > >> >> > -- -- Mike >> >> > >> >> > Mike Schilli >> >> > [EMAIL PROTECTED] >> >> > >> >> >> >> >> >> -- >> Mahadev Konar >> Hortonworks Inc. >> http://hortonworks.com/ >> -- Mahadev Konar Hortonworks Inc. http://hortonworks.com/
-
Re: ZooKeeper Memory UsageNeha Narkhede 2012-03-02, 23:18
Was there ever a JIRA created for this issue ?
Thanks, Neha On Fri, Feb 10, 2012 at 9:31 AM, Mahadev Konar <[EMAIL PROTECTED]> wrote: > Great. You should have the gc logs then. Mind creating a jira and > uploading to it? > > mahadev > > 2012/2/10 César Álvarez Núñez <[EMAIL PROTECTED]>: >> This is the java.env file content. >> >> now=`date +%d%m%Y_%H%M%S` >> >> gcLogFile="/srv/zk/GC/`hostname`-${now}.log" >> gcOpts="${gcOpts} -Xloggc:$gcLogFile" >> gcOpts="${gcOpts} -XX:+PrintGC" >> gcOpts="${gcOpts} -XX:+PrintGCTimeStamps" >> gcOpts="${gcOpts} -XX:+PrintGCDetails" >> gcOpts="${gcOpts} -XX:+PrintTenuringDistribution" >> gcOpts="${gcOpts} -XX:+PrintHeapAtGC" >> >> gcOpts="${gcOpts} -XX:+AggressiveHeap" >> #https://cwiki.apache.org/confluence/display/ZOOKEEPER/Troubleshooting >> #gcOpts="${gcOpts} -XX:+UseConcMarkSweepGC" >> #gcOpts="${gcOpts} -XX:ParallelGCThreads=8" >> #gcOpts="-Xms128M -Xmx1G" >> >> jvmOpts="${jvmOpts} -d64" >> jvmOpts="${jvmOpts} -server" >> jvmOpts="${jvmOpts} -XX:+UseCompressedOops" >> >> JVMFLAGS="${gcOpts} ${jvmOpts}" >> >> /César. >> >> On Thu, Feb 9, 2012 at 7:17 PM, Mahadev Konar <[EMAIL PROTECTED]>wrote: >> >>> This is interesting and important. >>> >>> Cesar, what jvm options are you running with? Can you the options in: >>> >>> https://cwiki.apache.org/confluence/display/ZOOKEEPER/Troubleshooting >>> >>> Atleast get the GC logs that we can look at? >>> >>> This will be very interesting. >>> >>> mahadev >>> >>> >>> 2012/2/9 César Álvarez Núñez <[EMAIL PROTECTED]>: >>> > In my case, our stress test show up a linear increase of "tenured memory" >>> > from 0 to > 3GiB with ZK 3.4.0 whereas the same stress-test with 3.3.3 >>> > keeps "tenured memory" stable and < 10MiB. >>> > >>> > The stress test performs many zNodes creation and delete but the overall >>> zk >>> > usage at any moment in time was relative small. >>> > >>> > BR, >>> > /César. >>> > >>> > On Thu, Feb 9, 2012 at 3:14 PM, Camille Fournier <[EMAIL PROTECTED]> >>> wrote: >>> > >>> >> This is really a question about how the jvm grows its heaps and resizes >>> >> them. If the jvm cannot allocate enough memory for the process because >>> you >>> >> didn't set the max memory high enough, it will fall over. Zookeeper >>> keeps >>> >> its entire state in memory for performance reasons, if it were to swap >>> that >>> >> would be quite bad for performance. >>> >> >>> >> C >>> >> On Feb 8, 2012 8:23 PM, "Mike Schilli" <[EMAIL PROTECTED]> wrote: >>> >> >>> >> > We've got a ZooKeeper instance that's using about 5 GB of resident >>> >> > memory. Every time we restart it, it starts at 200MB, and then grows >>> >> > slowly until it is back at 5 GB. >>> >> > >>> >> > The large footprint is related to how much data we've got in there. >>> >> > What's interesting, though, is that the process size doesn't shrink if >>> >> > we purge some of the data. >>> >> > >>> >> > Now, this isn't a big problem, I'm just curious if the process will >>> fall >>> >> > over at some point if it can't get more memory or if it'll just make >>> due >>> >> > by caching less data. >>> >> > >>> >> > Also, if I remember correctly, there's a configuration variable to set >>> >> > the maximum size, what happens if ZK reaches that? >>> >> > >>> >> > -- -- Mike >>> >> > >>> >> > Mike Schilli >>> >> > [EMAIL PROTECTED] >>> >> > >>> >> >>> >>> >>> >>> -- >>> Mahadev Konar >>> Hortonworks Inc. >>> http://hortonworks.com/ >>> > > > > -- > Mahadev Konar > Hortonworks Inc. > http://hortonworks.com/ |