Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
YCSB
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adnan Ahmad
YCSB
Commits
2ce34730
Commit
2ce34730
authored
13 years ago
by
Michi Mutsuzaki
Browse files
Options
Downloads
Patches
Plain Diff
gh-54 updated Makefile and added doc for mapkeeper.
parent
eb2d950f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+8
-0
8 additions, 0 deletions
Makefile
db/mapkeeper/lib/README
+6
-1
6 additions, 1 deletion
db/mapkeeper/lib/README
with
14 additions
and
1 deletion
Makefile
+
8
−
0
View file @
2ce34730
...
...
@@ -20,6 +20,8 @@ REDIS_DIR=db/redis/lib
REDIS_FILE
=
jedis-2.0.0.jar
VOLDEMORT_DIR
=
db/voldemort/lib
VOLDEMORT_FILE
=
voldemort-0.90.1.tar.gz
MAPKEEPER_DIR
=
db/mapkeeper/lib
MAPKEEPER_FILE
=
mapkeeper.jar
.PHONY
:
build
build
:
download-database-deps
...
...
@@ -35,6 +37,7 @@ download-database-deps: $(CASSANDRA_5_DIR)/$(CASSANDRA_5_FILE) \
$(MONGODB_DIR)/$(MONGODB_FILE)
\
$(REDIS_DIR)/$(REDIS_FILE)
\
$(VOLDEMORT_DIR)/$(VOLDEMORT_FILE)
\
$(MAPKEEPER_DIR)/$(MAPKEEPER_FILE)
\
$(CASSANDRA_5_DIR)/$(CASSANDRA_5_FILE)
:
wget http://archive.apache.org/dist/cassandra/0.5.1/
$(
CASSANDRA_5_FILE
)
\
...
...
@@ -79,3 +82,8 @@ $(VOLDEMORT_DIR)/$(VOLDEMORT_FILE) :
-O
$(
VOLDEMORT_DIR
)
/
$(
VOLDEMORT_FILE
)
tar
-C
$(
VOLDEMORT_DIR
)
-zxf
$(
VOLDEMORT_DIR
)
/
$(
VOLDEMORT_FILE
)
$(MAPKEEPER_DIR)/$(MAPKEEPER_FILE)
:
wget https://raw.github.com/m1ch1/mapkeeper/master/lib/mapkeeper.jar
\
-O
$(
MAPKEEPER_DIR
)
/
$(
MAPKEEPER_FILE
)
wget https://raw.github.com/m1ch1/mapkeeper/master/lib/libthrift-0.6.1.jar
\
-O
$(
MAPKEEPER_DIR
)
/libthrift-0.6.1.jar
This diff is collapsed.
Click to expand it.
db/mapkeeper/lib/README
+
6
−
1
View file @
2ce34730
This directory should contain jars for building and running MapKeeper
This directory should contain 2 jars; mapkeeper.jar and libthrift-0.6.1.jar.
To get them, do:
$ wget https://raw.github.com/m1ch1/mapkeeper/master/lib/mapkeeper.jar
$ wget https://raw.github.com/m1ch1/mapkeeper/master/lib/libthrift-0.6.1.jar
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment