├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TODO ├── ami ├── bencher │ ├── packer.json │ ├── resources │ │ └── ndbench │ │ │ ├── Log4jInit.java │ │ │ ├── log4j.properties │ │ │ └── web.xml │ └── scripts │ │ └── bencher-provision.sh ├── cassandra3 │ ├── packer.json │ ├── resources │ │ ├── etc │ │ │ └── cassandra │ │ │ │ └── default.conf │ │ │ │ ├── cassandra.yaml │ │ │ │ ├── jvm.options │ │ │ │ └── logback.xml │ │ ├── initd-disable-transparent-hugepages │ │ ├── limits.conf │ │ └── sysctl.conf │ └── scripts │ │ └── cassandra-provision.sh └── rocksandra │ ├── packer.json │ ├── resources │ ├── etc │ │ └── cassandra │ │ │ └── default.conf │ │ │ ├── cassandra.yaml │ │ │ ├── jvm.options │ │ │ └── logback.xml │ ├── initd-disable-transparent-hugepages │ ├── limits.conf │ └── sysctl.conf │ └── scripts │ └── cassandra-provision.sh ├── bin ├── ssh └── ssh_all └── cloudformation.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/TODO -------------------------------------------------------------------------------- /ami/bencher/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/bencher/packer.json -------------------------------------------------------------------------------- /ami/bencher/resources/ndbench/Log4jInit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/bencher/resources/ndbench/Log4jInit.java -------------------------------------------------------------------------------- /ami/bencher/resources/ndbench/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/bencher/resources/ndbench/log4j.properties -------------------------------------------------------------------------------- /ami/bencher/resources/ndbench/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/bencher/resources/ndbench/web.xml -------------------------------------------------------------------------------- /ami/bencher/scripts/bencher-provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/bencher/scripts/bencher-provision.sh -------------------------------------------------------------------------------- /ami/cassandra3/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/cassandra3/packer.json -------------------------------------------------------------------------------- /ami/cassandra3/resources/etc/cassandra/default.conf/cassandra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/cassandra3/resources/etc/cassandra/default.conf/cassandra.yaml -------------------------------------------------------------------------------- /ami/cassandra3/resources/etc/cassandra/default.conf/jvm.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/cassandra3/resources/etc/cassandra/default.conf/jvm.options -------------------------------------------------------------------------------- /ami/cassandra3/resources/etc/cassandra/default.conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/cassandra3/resources/etc/cassandra/default.conf/logback.xml -------------------------------------------------------------------------------- /ami/cassandra3/resources/initd-disable-transparent-hugepages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/cassandra3/resources/initd-disable-transparent-hugepages -------------------------------------------------------------------------------- /ami/cassandra3/resources/limits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/cassandra3/resources/limits.conf -------------------------------------------------------------------------------- /ami/cassandra3/resources/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/cassandra3/resources/sysctl.conf -------------------------------------------------------------------------------- /ami/cassandra3/scripts/cassandra-provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/cassandra3/scripts/cassandra-provision.sh -------------------------------------------------------------------------------- /ami/rocksandra/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/rocksandra/packer.json -------------------------------------------------------------------------------- /ami/rocksandra/resources/etc/cassandra/default.conf/cassandra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/rocksandra/resources/etc/cassandra/default.conf/cassandra.yaml -------------------------------------------------------------------------------- /ami/rocksandra/resources/etc/cassandra/default.conf/jvm.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/rocksandra/resources/etc/cassandra/default.conf/jvm.options -------------------------------------------------------------------------------- /ami/rocksandra/resources/etc/cassandra/default.conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/rocksandra/resources/etc/cassandra/default.conf/logback.xml -------------------------------------------------------------------------------- /ami/rocksandra/resources/initd-disable-transparent-hugepages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/rocksandra/resources/initd-disable-transparent-hugepages -------------------------------------------------------------------------------- /ami/rocksandra/resources/limits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/rocksandra/resources/limits.conf -------------------------------------------------------------------------------- /ami/rocksandra/resources/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/rocksandra/resources/sysctl.conf -------------------------------------------------------------------------------- /ami/rocksandra/scripts/cassandra-provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/ami/rocksandra/scripts/cassandra-provision.sh -------------------------------------------------------------------------------- /bin/ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/bin/ssh -------------------------------------------------------------------------------- /bin/ssh_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/bin/ssh_all -------------------------------------------------------------------------------- /cloudformation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/cassandra-aws-benchmark/HEAD/cloudformation.yaml --------------------------------------------------------------------------------