我正在尝试使用db.eval()
方法运行 map-reduce 脚本。
MongoClient mongo = new MongoClient("localhost", 27017);
DB mongodb = (DB) mongo.getDB("testDB");
String script = "db.collection.mapReduce("
+ "function() {emit(this.class, this.marks);},"
+ "function(key, values) { return {\"sum\":Array.sum(values)};},"
+ "{ "
+ " query : {_id:{$lt:50}},"
+ "out:\"collectionMapReduce\""
+ "}"
+ ")";
Object result = mongodb.eval(script);
我收到以下错误:
Exception in thread "main" com.mongodb.MongoException$Network: Read operation to server localhost:27017 failed on database testDB
at com.mongodb.DBTCPConnector.innerCall(DBTCPConnector.java:298)
at com.mongodb.DBTCPConnector.call(DBTCPConnector.java:269)
at com.mongodb.DBCollectionImpl.find(DBCollectionImpl.java:84)
at com.mongodb.DB.command(DB.java:320)
at com.mongodb.DB.command(DB.java:299)
at com.mongodb.DB.command(DB.java:374)
at com.mongodb.DB.command(DB.java:246)
at com.mongodb.DB.doEval(DB.java:445)
at com.mongodb.DB.eval(DB.java:463)
at com.dev.TestMapReduce.main(TestMapReduce.java:25)
Caused by: java.io.EOFException
at org.bson.io.Bits.readFully(Bits.java:75)
at org.bson.io.Bits.readFully(Bits.java:50)
at org.bson.io.Bits.readFully(Bits.java:37)
at com.mongodb.Response.<init>(Response.java:42)
at com.mongodb.DBPort$1.execute(DBPort.java:164)
at com.mongodb.DBPort$1.execute(DBPort.java:158)
at com.mongodb.DBPort.doOperation(DBPort.java:187)
at com.mongodb.DBPort.call(DBPort.java:158)
at com.mongodb.DBTCPConnector.innerCall(DBTCPConnector.java:290)
... 9 more
我无法理解此错误的原因。我该如何解决这个问题?
注意:我可以使用
来实现这一目标db.collection.mapReduce()
执行此作业。 但我只想尝试使用db.eval()
答案 0 :(得分:2)
运行map / reduce作业的正确方法是通过mapReduce
command在Java驱动程序中公开的MapReduceCommand
helper。
eval
command并非用于此目的(并且在MongoDB 3.0中也已弃用)。