No description
Find a file
travisturner 33dd34107a Remove commented code
Some commented test code was left in case these are tests that
need to be implemented.
2015-08-07 17:29:57 -05:00
commands/pilosa Update import path 2015-08-05 22:50:38 -06:00
config Update import path 2015-08-05 22:50:38 -06:00
core Remove commented code 2015-08-07 17:29:57 -05:00
cruncher Remove commented code 2015-08-07 17:29:57 -05:00
db Remove commented code 2015-08-07 17:29:57 -05:00
dispatch Remove commented code 2015-08-07 17:29:57 -05:00
executor Remove commented code 2015-08-07 17:29:57 -05:00
hold Remove commented code 2015-08-07 17:29:57 -05:00
index Remove commented code 2015-08-07 17:29:57 -05:00
interfaces Update import path 2015-08-05 22:50:38 -06:00
query Remove commented code 2015-08-07 17:29:57 -05:00
transport Update import path 2015-08-05 22:50:38 -06:00
util Remove commented code 2015-08-07 17:29:57 -05:00
.gitignore Update import path 2015-08-05 22:50:38 -06:00
default.yaml added default config file 2015-08-03 11:52:53 -05:00
deps.json Update import path 2015-08-05 22:50:38 -06:00
README.md Update import path 2015-08-05 22:50:38 -06:00

pilosa

Pilosa is a bitmap index database.

Getting Started

To download the source, run go get:

$ go get github.com/umbel/pilosa

You can update the dependencies to specific versions using depman:

$ go get github.com/vube/depman

And then run depman from the project directory:

$ cd $GOPATH/src/github.com/umbel/pilosa
$ depman

Now you can install the pilosa binary:

$ go install github.com/umbel/pilosa/...

Pilosa requires that etcd is running locally for coordinating the cluster:

# In another terminal window
$ etcd

Now run pilosa with the default configuration:

PILOSA_CONFIG=default.yaml pilosa

This setup assumes that cassandra and etcd are running locally and that cassandra keyspace pilosa has been setup as describe in the file index/storage_cass.go.

If you don't want backend storage you can comment out storage_backend in the yaml file and it will just operate out of memory.