Skip to content

Commit

Permalink
Renames droplet to cloudburst (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
vsreekanti authored and cw75 committed Jan 28, 2020
1 parent 890fdbc commit 6f48fdf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ INCLUDE(FindProtobuf)
FIND_PACKAGE(Protobuf REQUIRED)
INCLUDE_DIRECTORIES(${PROTOBUF_INCLUDE_DIR})
PROTOBUF_GENERATE_CPP(PROTO_SRC PROTO_HEADER
./common/proto/droplet.proto
./common/proto/cloudburst.proto
./common/proto/anna.proto
./common/proto/causal.proto
./common/proto/shared.proto
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![codecov](https://codecov.io/gh/hydro-project/anna-cache/branch/master/graph/badge.svg)](https://codecov.io/gh/hydro-project/anna-cache)
[![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

The Anna cache is designed to be a local (i.e., on machine) cache that interacts with a cluster-based deployment of Anna. It interacts with applications (primarily [Droplet](https://github.com/hydro-project/droplet)) over IPC channels, and it is designed to periodically receive updates propagated from the underlying KVS during the periodic multicast protocol. There are currently two cache implementations:
The Anna cache is designed to be a local (i.e., on machine) cache that interacts with a cluster-based deployment of Anna. It interacts with applications (primarily [Cloudburst](https://github.com/hydro-project/cloudburst)) over IPC channels, and it is designed to periodically receive updates propagated from the underlying KVS during the periodic multicast protocol. There are currently two cache implementations:

1. A default cache that supports all of Anna's lattice types except for causal lattices.
2. A causal cache that supports single- and mult-object causal consistency, automatically resolving dependencies before making data available.
Expand Down
3 changes: 1 addition & 2 deletions dockerfiles/start-cache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,8 @@ while [[ ! -f "conf/anna-config.yml" ]]; do
continue
done


echo -e "user:" >> conf/anna-config.yml
echo -e " ip: $IP" >> conf/anna-config.yml
echo -e " routing-elb: $ROUTE_ADDR" >> conf/anna-config.yml

./build/functions/cache/src/flfunc-async-cache
./build/target/cache/anna-cache
2 changes: 1 addition & 1 deletion include/causal/causal_cache_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "cache_threads.hpp"
#include "causal.pb.h"
#include "client/kvs_client.hpp"
#include "droplet.pb.h"
#include "cloudburst.pb.h"

// period to report to the KVS about its key set
const unsigned kCausalCacheReportThreshold = 5;
Expand Down

0 comments on commit 6f48fdf

Please sign in to comment.