Git Product home page Git Product logo

Comments (4)

GoogleCodeExporter avatar GoogleCodeExporter commented on September 2, 2024
Sets are asynchronous, so what's happening is you're overwhelming the JVM with 
object futures, and then they're timing out before they can actually get to the 
server.  

For instance if you changed line 28 from:
client.set("key_" + i, 600, value.getBytes());
to:
client.set("key_" + i, 600, value.getBytes()).get();

It'd be slower, but all of the items would get there since you'd be waiting for 
each one to complete before sending another.  I think this is what you thought 
your code was doing.

There are a few variations on this too, like filling a blocking queue and 
grabbing items from the other side to send to the server, rather than creating 
requests super fast, that the network IO has to take time to deal with.

In fact, your test looks a bit like the built in LoaderTest:
https://github.com/dustin/java-memcached-client/blob/master/src/test/manual/net/
spy/memcached/test/LoaderTest.java

Original comment by [email protected] on 23 Aug 2011 at 5:32

  • Changed state: Invalid

from spymemcached.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 2, 2024
I don't really understand, why this bug marked as "Invalid".
Currently the objects net.spy.memcached.protocol.ascii.StoreOperationImpl, 
net.spy.memcached.protocol.ascii.StoreOperationImpl, and others keep growing in 
the heap without any limit. As a result - the heap is exhausted, and we have 
big Full GC stop-the-world pauses.

The right behavior shall be the following: these objects shall be put to the 
queue with configurable size and configurable RejectedExecutionHandler 
(CallerRunsPolicy or AbortPolicy).

Original comment by [email protected] on 19 Oct 2011 at 11:40

from spymemcached.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 2, 2024
I don't understand why the client should be responsible for either throtteling 
requests or querying in a stop-and-wait fashion (which performs poorly, 
obviously). That's the library's job, IMHO.

Original comment by matthias.j.friedrich on 19 Oct 2011 at 12:30

from spymemcached.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 2, 2024
it is invalid because you're using the default queue with the default 
constructor.  you can specify a queue for the client to use, allowing you to 
control resources as you request 

Original comment by [email protected] on 19 Oct 2011 at 2:02

from spymemcached.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.