All Projects → uber-archive → Buck Http Cache

uber-archive / Buck Http Cache

Licence: mit
An Implementation of Buck's HTTP Cache API as a distributed cache service. This project is deprecated and not maintained.

Programming Languages

shell
77523 projects

Buck HTTP Cache As a service.

(This project is deprecated and not maintained any more.)

An Implementation of Buck's HTTP Cache API as a distributed cache service.

Quick start

Standalone mode

Standalone mode starts this in a single node mode. For most usecases, this should work. Lets say you only have 1 project, with tens of developers and a few CI tasks, then this setup should be more than enough.

From Source

# make sure that JAVA_HOME is set. (please use jdk8)
git clone https://github.com/uber/buck-http-cache.git
cd buck-http-cache
./run_buck_cache_client.sh development 

From Distribution

# make sure that JAVA_HOME is set. (please use jdk8)
wget https://github.com/uber/buck-http-cache/raw/dist/releases/cache-1.0.0.zip 
unzip cache-1.0.0.zip
./bin/cache server config/development.yml

Cluster mode

If you have many users, projects that will use the cache, then chances are that standalone mode won't work for you. In this case you will need to setup a distributed cache. Lets say you want to deploy the cache to three machines (IP1, IP2, IP3). Update config file standalone.yml and add the following.

multicastPort: 6734
hostIPs:
  - <IP1>
  - <IP2>
  - <IP3>

Now you are ready to start the cache in all three hosts. The data will be equally distributed across all three nodes, and you can query any node to fetch the data. Each node acts as a broker and as a in-memory data base. We will enable zookeeper based node discovery soon. At which point we won't have to manually add IPs to the config. Just pointing to a common zk cluster should do the trick.

Usage

The cache server by default runs on port 6457. Under the hood it uses Apache Ignite as the cache data grid. In order to use this http cache in your project, add the following to your buckconfig:

[cache]
  mode = http
  http_url = http://your-server-address:6457
  http_mode = readwrite

This is the most basic way of starting the cache locally. For additional options, see buckconfig. This works in standlone mode. If you are running the cache in cluster mode, then you may want to setup a loadbalancer in front of the nodes.

As an alternative, if you use Okbuck to build your gradle project with buck, you can modify buckw to randomly choose a server on every invocation

CACHE_SERVER=$[ (( $RANDOM % 3 )) + 1 ]
CACHE_URL="buck-cache-server${CACHE_SERVER}:6457"
EXTRA_BUCK_CONFIG="--config cache.http_url=http://${CACHE_URL}"
exec "$BUCK_BINARY" "[email protected]" $EXTRA_BUCK_CONFIG
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].