美文网首页
Playing With Groupcache

Playing With Groupcache

作者: ebayboy | 来源:发表于2018-06-12 18:08 被阅读0次

    Playing With Groupcache

    This week,@bradfitz(of memcached fame) releasedgroupcacheat OSCON 2013. I’m already a big fan ofmemcachedandcamlistore, so I couldn’t wait to download it and kick the tires.

    By the way, Istronglyrecommend you go through theslidesandREADMEbefore going further.

    What groupcache isn’t

    After downloading it (without reading theslides), I instinctively searched around for how to actually start the server(s), only to find nothing. Turns out, groupcache is more of alibrarywith a server built in, rather than a traditional standalone server. Another important consideration is that theresno support for set/update/evict operations, all you get is GET. Really fast, consistent, distributed GET’s.

    What it is

    Once you realize that groupcache is more of asmart, distributed LRU cache, rather than an outright memcached replacement, it all makes much more sense. Especially considering what it was built for, caching immutable file blobs fordl.google.com.

    How to use it

    For groupcache to work, you have to give it a closure in which: given akey, fill up thisdestbuffer with the bytes for the value of that key, from however you store them. This could be hitting a database, a network filesystem, anything. Then you create a groupcachegroupobject, which knows the addresses of all the other groupcache instances. This is pluggable, so you can imagine rigging that up to zookeeper or the like for automatic node discovery. Finally, you start groupcache up by using go’s built innet/httpand aServeHTPprovided by the previously constructedgroupobject.

    Running the demo

    In order to really try out groupcache, I realized I needed to create a mini test infrastructure, consisting of a slow database, frontends, and a client. Visit theGithub Repofor more details. This is what the topology looks like:groupcache topology

    Setup

    git clone git@github.com:capotej/groupcache-db-experiment.git

    cd groupcache-db-experiment

    sh build.sh

    Start database server

    cd dbserver && ./dbserver

    Start Multiple Frontends

    cd frontend

    ./frontend -port 8001

    ./frontend -port 8002

    ./frontend -port 8003

    Use the CLI to play around

    Let’s set a value into the database:

    ./cli -set -key foo -value bar

    Now get it out again to make sure it’s there:

    ./cli -get -key foo

    You should seebaras the response, after about a noticeable, 300ms lag.

    Let’s ask for the same value, via cache this time:

    ./cli -cget -key foo

    You should see on one of the frontend’s output, the keyfoowas requested, and in turn requested from the database. Let’s get it again:

    ./cli -cget -key foo

    You should have gotten this value instantly, as it was served from groupcache.

    Here’s where things get interesting; Request that same key from a different frontend:

    ./cli -port 9002 -cget -key foo

    You should still seebarcome back instantly, even though this particular groupcache node did not have this value. This is because groupcache knew that 9001 had this key, went to that node to fetch it, then cached it itself.This is groupcache’s killer feature, as it avoids the common thundering herd issue associated with losing cache nodes.

    Node failure

    Let’s simulate single node failure, find the “owner” of keyfoo(this is going to be the frontend that said “asking for foo from dbserver”), and kill it with Ctrl+C. Request the value again:

    ./cli -cget -key foo

    It’ll most likely hit the dbserver again (unless that particular frontend happens to have it), and cache the result on one of the other remaining frontends. As more clients ask for this value, it’ll spread through the caches organically. When that server comes back up, it’ll start receiving other keys to share, and so on. The fan out is explained in more detail on thisslide.

    Conclusion / Use cases

    Since there is no support (by design) for eviction or updates,

    groupcache is a really good fit with read heavy, immutable content. Some

    use cases:

    Someone likeGithubusing it to cache blobrefs from their file servers

    Large websites using it as a CDN (provided their assets were uniquelogo-0492830483.png)

    Backend forContent-addressable storage

    Definitely a clever tool to have in the distributed systems toolbox.

    Shout out to professors@jmhodgesand@mrb_bkfor proof reading this project and post

    相关文章

      网友评论

          本文标题:Playing With Groupcache

          本文链接:https://www.haomeiwen.com/subject/fvyreftx.html