我想使用spark在mongodb现有文档的嵌入字段中插入一个新条目。
例子
Blog {
id:"001"
title:"This is a test blog",
content:"...."
comments:[{title:"comment1",content:".."},{title:"comment2",content:"..."}]
}
我想做什么
db.blogs.update({id:"001"}, {$push:{comments:{title:"commentX",content:".."}}});
这个图书馆现在有可能吗?如果没有,你能给我指一下正确的方向吗。
提前谢谢
1条答案
按热度按时间oalqel3c1#
使用spark mongodb的casbah库,我能够完成我希望的操作。