Scala脚本等待mongo完成任务

时间:2017-08-06 10:47:25

标签: mongodb scala mongo-scala-driver

我正在编写一个简单的基于scala的脚本,该脚本应该将一些数据插入到Mongo集合中。问题是,在mongo完成它的任务之前,脚本会退出。考虑到以下脚本,处理问题的惯用/最佳方法是什么:

#!/usr/bin/env scalas
/***
scalaVersion := "2.12.2"

libraryDependencies ++= {
  Seq(
    "org.mongodb.scala" %% "mongo-scala-driver" % "2.1.0"
  )
}
*/
import org.mongodb.scala._

val mongoClient: MongoClient = MongoClient("mongodb://localhost")
val database: MongoDatabase = mongoClient.getDatabase("dev")

val doc: Document = Document("name" -> "MongoDB", "type" -> "database",
  "count" -> 1, "info" -> Document("x" -> 203, "y" -> 102))

val collection: MongoCollection[Document] = database.getCollection("test")

val subscription = new Observer[Completed] {
  override def onNext(result: Completed): Unit = println("Inserted")

  override def onError(e: Throwable): Unit = println("Failed"+e.toString)

  override def onComplete(): Unit = println("Completed")
}

collection.insertOne(doc).subscribe(subscription)

上面的脚本在执行时会产生以下错误:

com.mongodb.MongoInterruptedException: Interrupted acquiring a permit to retrieve an item from the pool 

但是,如果我最后添加Thread.sleep(3000)就完成了。

1 个答案:

答案 0 :(得分:0)

我建议使用Promise对象来通知异步作业的完成。

http://www.scala-lang.org/api/2.12.1/scala/concurrent/Promise.html

异步作业完成后或超时后,程序将退出。

val promise = Promise[Boolean]

...

override def onError(e: Throwable): Unit = {
  println("Failed"+e.toString)
  promise.success(false)
}
override def onComplete(): Unit = {
  println("Completed")
  promise.success(true)
}

val future = promise.future
Await.result(future, Duration(10, java.util.concurrent.TimeUnit.SECONDS))
//after completion, the program would exit.