Mongo MapReduce - 检查标准输出
我正在尝试通过 java api - com.mongodb.MapReduceCommand 执行 mongo mapreduce 命令。在此之前,当我通过 mongo shell 执行命令时,我能够查看标准输出流的输出。当我通过 java api 调用命令时,如何检查进度/错误信息的任何输出?
我已将详细程度启用为 true (默认情况下)。
谢谢!
I am trying to execute mongo mapreduce commands via the java api - com.mongodb.MapReduceCommand . Prior to this, when I was executing the command via the mongo shell, I was able to view the output from the standard output stream. When I invoke the command via the java api, how could I check for any output for progress/error info ?
I have enabled the verbosity to true (by default) .
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MapReduceCommand 处于阻塞状态,因此无法检查进度。但是,您可以使用 MapReduceOutput 类来捕获 Map/Reduce 操作的结果。
The MapReduceCommand is blocking, so there is no way to check the progress. However, you can use MapReduceOutput class to capture the result of a map/reduce operation.