Skip to content

Commit

Permalink
[scripts, core] cleanup bindings (#1031)
Browse files Browse the repository at this point in the history
* remove mapkeeper and voldemort from command help, since we don't build them
* fix ordering of modules in root pom

closes #328
  • Loading branch information
busbey authored Sep 22, 2017
1 parent 1a3c8cb commit 28b924b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 0 additions & 2 deletions bin/bindings.properties
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ infinispan-cs:com.yahoo.ycsb.db.InfinispanRemoteClient
infinispan:com.yahoo.ycsb.db.InfinispanClient
jdbc:com.yahoo.ycsb.db.JdbcDBClient
kudu:com.yahoo.ycsb.db.KuduYCSBClient
mapkeeper:com.yahoo.ycsb.db.MapKeeperClient
memcached:com.yahoo.ycsb.db.MemcachedClient
mongodb:com.yahoo.ycsb.db.MongoDbClient
mongodb-async:com.yahoo.ycsb.db.AsyncMongoDbClient
Expand All @@ -69,5 +68,4 @@ s3:com.yahoo.ycsb.db.S3Client
solr:com.yahoo.ycsb.db.solr.SolrClient
solr6:com.yahoo.ycsb.db.solr6.SolrClient
tarantool:com.yahoo.ycsb.db.TarantoolClient
voldemort:com.yahoo.ycsb.db.VoldemortClient

2 changes: 0 additions & 2 deletions bin/ycsb
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ DATABASES = {
"infinispan" : "com.yahoo.ycsb.db.InfinispanClient",
"jdbc" : "com.yahoo.ycsb.db.JdbcDBClient",
"kudu" : "com.yahoo.ycsb.db.KuduYCSBClient",
"mapkeeper" : "com.yahoo.ycsb.db.MapKeeperClient",
"memcached" : "com.yahoo.ycsb.db.MemcachedClient",
"mongodb" : "com.yahoo.ycsb.db.MongoDbClient",
"mongodb-async": "com.yahoo.ycsb.db.AsyncMongoDbClient",
Expand All @@ -94,7 +93,6 @@ DATABASES = {
"solr" : "com.yahoo.ycsb.db.solr.SolrClient",
"solr6" : "com.yahoo.ycsb.db.solr6.SolrClient",
"tarantool" : "com.yahoo.ycsb.db.TarantoolClient",
"voldemort" : "com.yahoo.ycsb.db.VoldemortClient"
}

OPTIONS = {
Expand Down
5 changes: 5 additions & 0 deletions distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ LICENSE file.
<artifactId>azuredocumentdb-binding</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.yahoo.ycsb</groupId>
<artifactId>azuretablestorage-binding</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.yahoo.ycsb</groupId>
<artifactId>dynamodb-binding</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,19 +109,19 @@ LICENSE file.
<!-- our internals -->
<module>core</module>
<module>binding-parent</module>
<module>distribution</module>
<!-- all the datastore bindings, lex sorted please -->
<module>accumulo</module>
<module>aerospike</module>
<module>arangodb</module>
<module>arangodb3</module>
<module>asynchbase</module>
<module>azuredocumentdb</module>
<module>azuretablestorage</module>
<module>cassandra</module>
<module>cloudspanner</module>
<module>couchbase</module>
<module>couchbase2</module>
<module>distribution</module>
<module>azuredocumentdb</module>
<module>dynamodb</module>
<module>elasticsearch</module>
<module>elasticsearch5</module>
Expand Down

0 comments on commit 28b924b

Please sign in to comment.