我是斯卡拉和卡桑德拉的新人。我知道使用hector将cassandra与java连接起来。但我不知道如何通过scala连接cassandra。我想要一个简单的例子。
答案 0 :(得分:5)
我正在使用datastax java驱动程序。它的开发仍然在github上运行。我早些看了赫克托耳,但似乎很快就死了。这里的文档很有帮助:http://www.datastax.com/documentation/developer/java-driver/1.0/webhelp/index.html#java-driver/quick_start/qsQuickstart_c.html。我将第一个例子翻译成了scala。另外,请查看类型安全激活器中的akka-cassandra示例。欢呼声。
object Hello extends App {
import com.datastax.driver.core.Cluster;
import com.datastax.driver.core.Host;
import com.datastax.driver.core.Metadata;
import scala.collection.JavaConversions._
var cluster: Cluster = null
private var session: Session = null
def connect(node: String) {
cluster = Cluster.builder().addContactPoint(node).build()
val metadata = cluster.getMetadata()
printf("Connected to cluster: %s\n",
metadata.getClusterName())
metadata.getAllHosts() map {
case host =>
printf("Datatacenter: %s; Host: %s; Rack: %s\n",
host.getDatacenter(), host.getAddress(), host.getRack())
}
}
def close() {
cluster.shutdown()
}
this.connect("127.0.0.1");
this.close();
}
答案 1 :(得分:2)
我一直在研究Java Driver的Scala包装器,以尽量减少样板代码。你可以在这里找到它: https://github.com/InnovaCo/binders-cassandra
以下是与某些Cassandra DB一起使用的类的示例:
class Db(session: com.datastax.driver.core.Session) {
implicit val cache = new SessionQueryCache[PlainConverter](session)
// class for binding input/output parameters
case class User(userId: Int, name: String)
def insertUser(user: User): Future[Unit] = cql"insert into users(userid, name) values (?, ?)".bind(user).execute
// returns Future[Iterator[User]]
def selectAllUsers: Future[Iterator[User]] = cql"select * from users".all[User]
// if no user is found will throw NoRowsSelectedException
def selectUser(userId: Int) = cql"select * from users where userId = $userId".one[User]
// if no user is found will return None, otherwise Some(User)
def selectUserIfFound(userId: Int) = cql"select * from users where userId = $userId".oneOption[User]
}
要在playframework项目中使用库,请将此行添加到build.sbt文件中:
libraryDependencies += "eu.inn" %% "binders-cassandra" % "0.2.0"
答案 2 :(得分:0)
有一些Scala项目支持Cassandra连接,包括Twitter的cassie,但它们似乎都已经消亡。
由于您了解Hector,如果您的类路径中有Hector jar,如果您愿意,可以在Scala中使用Hector API。
例如,借用documentation,您可以这样做:
val myCluster = HFactory.getOrCreateCluster("test-cluster","localhost:9160")
或
val template = new ThriftColumnFamilyTemplate[String, String](ksp, columnFamily, StringSerializer.get(), StringSerializer.get())
我是徒手写的,所以语法可能会关闭,但你明白了。
答案 3 :(得分:0)
我找到了一些文章(example) 和Maga library 展示了如何更好地将Java驱动程序与Scala集成在一起,并且看起来并不难。
结果是您可以在GitHub上找到我自己的库:https://github.com/atais/scassandra
它允许在Scala中无缝集成CQL
查询和操作ListenableFuture
,而无需将其映射到scala.Future
。
implicit protected val session: com.datastax.driver.core.Session
implicit protected val executor: java.util.concurrent.Executor
val selectCQL: ListenableFuture[PreparedStatement] = cql"SELECT * FROM $table WHERE key = ?"
val result: ListenableFuture[ResultSet] = execute(selectCQL, "my-key")
result.map(rs => rs.one())
.map(...)
享受:)