1

我正在尝试扩展我的应用程序以包含另一个 Cassandra 表,用于存储每个块中包含的事务。

我试图保持代码片段简洁和相关。如果需要进一步的代码上下文 - 请告诉我。

phantomVersion = "1.22.0" cassandraVersion = "2.1.4"


下面列出的代码出现以下编译错误。非常感谢您的见解。

[error] /home/dan/projects/open-blockchain/scanner/src/main/scala/org/dyne/danielsan/openblockchain/data/database/Database.scala:30: overloaded method value add with alternatives:
[error]   (batch: com.websudos.phantom.batch.BatchQuery[_])com.websudos.phantom.batch.BatchQuery[com.websudos.phantom.builder.Unspecified] <and>
[error]   (queries: Iterator[com.websudos.phantom.builder.query.Batchable with com.websudos.phantom.builder.query.ExecutableStatement])(implicit session: com.datastax.driver.core.Session)com.websudos.phantom.batch.BatchQuery[com.websudos.phantom.builder.Unspecified] <and>
[error]   (queries: com.websudos.phantom.builder.query.Batchable with com.websudos.phantom.builder.query.ExecutableStatement*)(implicit session: com.datastax.driver.core.Session)com.websudos.phantom.batch.BatchQuery[com.websudos.phantom.builder.Unspecified] <and>
[error]   (query: com.websudos.phantom.builder.query.Batchable with com.websudos.phantom.builder.query.ExecutableStatement)(implicit session: com.datastax.driver.core.Session)com.websudos.phantom.batch.BatchQuery[com.websudos.phantom.builder.Unspecified]
[error]  cannot be applied to (scala.concurrent.Future[com.datastax.driver.core.ResultSet])
[error]       .add(ChainDatabase.bt.insertNewBlockTransaction(bt))
[error]        ^
[error] one error found
[error] (compile:compileIncremental) Compilation failed
[error] Total time: 6 s, completed Aug 9, 2016 2:42:30 PM

GenericBlockModel.scala:

case class BlockTransaction(hash: String, txid: String)

sealed class BlockTransactionModel extends CassandraTable[BlockTransactionModel, BlockTransaction] {

  override def fromRow(r: Row): BlockTransaction = {
    BlockTransaction(
      hash(r),
      txid(r)
    )
  }

  object hash extends StringColumn(this) with PartitionKey[String]

  object txid extends StringColumn(this) with ClusteringOrder[String] with Descending

}

abstract class ConcreteBlockTransactionModel extends BlockTransactionModel with RootConnector {

  override val tableName = "block_transactions"

  def insertNewBlockTransaction(bt: BlockTransaction): Future[ResultSet] = insertNewRecord(bt).future()

  def insertNewRecord(bt: BlockTransaction) = {
    insert
      .value(_.hash, bt.hash)
      .value(_.txid, bt.txid)
  }
}

数据库.scala

class Database(val keyspace: KeySpaceDef) extends DatabaseImpl(keyspace) {

  def insertBlock(block: Block) = {
    Batch.logged
      .add(ChainDatabase.block.insertNewRecord(block))
      .future()
  }

  def insertTransaction(tx: Transaction) = {
    Batch.logged
      .add(ChainDatabase.tx.insertNewTransaction(tx))
      .future()
  }

  def insertBlockTransaction(bt: BlockTransaction) = {
    Batch.logged
      .add(ChainDatabase.btx.insertNewBlockTransaction(bt))
      .future()
  }

  object block extends ConcreteBlocksModel with keyspace.Connector

  object tx extends ConcreteTransactionsModel with keyspace.Connector

  object btx extends ConcreteBlockTransactionsModel with keyspace.Connector


}

object ChainDatabase extends Database(Config.keySpaceDefinition) 
4

1 回答 1

2

当 a需要查询时,错误显然是您试图将 a 添加Future到 a 。如果您已经触发了查询,则无法再对其进行批处理,因此您需要先停止一步。就是这样:BatchBatch

def insertNewRecord(
  bt: BlockTransaction
): InsertQuery.Default[BlockTransactionModel, BlockTransaction] = {
  insert
    .value(_.hash, bt.hash)
    .value(_.txid, bt.txid)
}

现在您可以通过以下方式将多条记录添加到一个批次中:

Batch.logged.add(insertNewRecord(record1)
 .add(insertNewRecord(record2))
 // etc

另一方面batch,Cassandra 中的 a 不用于执行并行插入,而是用于保证原子性,这使其通常比普通并行插入慢至少 30%。阅读本文了解更多详情。

如果你只是想同时插入更多的东西,你可以使用返回未来的方法,如下所示:

def insertMany(
  list: List[BlockTransaction]
): Future[List[ResultSet]] = {
  Future.sequence(list.map(insertNewRecord(_).future()))
}
于 2016-08-09T06:37:52.687 回答