在mongodb中将string转换为date
有没有办法将string转换为使用自定义格式使用mongodbshell的date
我正在尝试将“21 / May / 2012:16:35:33 -0400”转换为date,
有没有办法将DateFormatter
或Date.parse(...)
或ISODate(....)
方法?
你可以在Ravi Khakhkhar提供的第二个链接中使用JavaScript,或者你将不得不执行一些string操作来转换你的原始string(因为原始格式中的一些特殊字符不被认为是有效的分隔符),但一旦你这样做,你可以使用“新”
training:PRIMARY> Date() Fri Jun 08 2012 13:53:03 GMT+0100 (IST) training:PRIMARY> new Date() ISODate("2012-06-08T12:53:06.831Z") training:PRIMARY> var start = new Date("21/May/2012:16:35:33 -0400") => doesn't work training:PRIMARY> start ISODate("0NaN-NaN-NaNTNaN:NaN:NaNZ") training:PRIMARY> var start = new Date("21 May 2012:16:35:33 -0400") => doesn't work training:PRIMARY> start ISODate("0NaN-NaN-NaNTNaN:NaN:NaNZ") training:PRIMARY> var start = new Date("21 May 2012 16:35:33 -0400") => works training:PRIMARY> start ISODate("2012-05-21T20:35:33Z")
这里有一些你可能会觉得有用的链接(关于在mongo shell中修改数据) –
http://cookbook.mongodb.org/patterns/date_range/
http://www.mongodb.org/display/DOCS/Dates
http://www.mongodb.org/display/DOCS/Overview+-+The+MongoDB+Interactive+Shell
在我的情况下,我已经成功与下面的解决scheme,从ClockTime集合字段ClockInTime转换为datetypes :
db.ClockTime.find().forEach(function(doc) { doc.ClockInTime=new Date(doc.ClockInTime); db.ClockTime.save(doc); })
要执行转换,您需要使用forEach()
方法或cursor方法next()
来手动迭代find()
方法返回的游标以访问文档。 使用循环,将字段转换为ISODate对象,然后使用$set
操作符更新字段,如以下示例中字段名为created_at
并且当前以string格式保存date:
var cursor = db.collection.find({"created_at": {"$exists": true, "$type": 2 }}); while (cursor.hasNext()) { var doc = cursor.next(); db.collection.update( {"_id" : doc._id}, {"$set" : {"created_at" : new ISODate(doc.created_at)}} ) };
为了提高性能,特别是在处理大型集合时,请利用Bulk API进行批量更新,因为您将批量发送操作到服务器1000,这样可以提供更好的性能,因为您不会将每个请求发送到服务器,每1000个请求只有一次。
以下演示了这种方法,第一个示例使用MongoDB版本中可用的Bulk API >= 2.6 and < 3.2
。 它通过将created_at
字段更改为date字段来更新集合中的所有文档:
var bulk = db.collection.initializeUnorderedBulkOp(), counter = 0; db.collection.find({"created_at": {"$exists": true, "$type": 2 }}).forEach(function (doc) { var newDate = new ISODate(doc.created_at); bulk.find({ "_id": doc._id }).updateOne({ "$set": { "created_at": newDate} }); counter++; if (counter % 1000 == 0) { bulk.execute(); // Execute per 1000 operations and re-initialize every 1000 update statements bulk = db.collection.initializeUnorderedBulkOp(); } }) // Clean up remaining operations in queue if (counter % 1000 != 0) { bulk.execute(); }
下一个示例适用于新的MongoDB版本3.2
,该版本已经弃用了批量API,并使用bulkWrite()
提供了一组更新的apis:
var bulkOps = [], cursor = db.collection.find({"created_at": {"$exists": true, "$type": 2 }}); cursor.forEach(function (doc) { var newDate = new ISODate(doc.created_at); bulkOps.push( { "updateOne": { "filter": { "_id": doc._id } , "update": { "$set": { "created_at": newDate } } } } ); if (bulkOps.length === 500) { db.collection.bulkWrite(bulkOps); bulkOps = []; } }); if (bulkOps.length > 0) db.collection.bulkWrite(bulkOps);
我在MongoDB Stored中有一些string,必须将其重新格式化为mongodb中正确且有效的dateTime字段。
这里是我的特殊date格式的代码:“2014-03-12T09:14:19.5303017 + 01:00”
但你可以很容易地采取这个想法,并编写自己的正则expression式来parsingdate格式:
// format: "2014-03-12T09:14:19.5303017+01:00" var myregexp = /(....)-(..)-(..)T(..):(..):(..)\.(.+)([\+-])(..)/; db.Product.find().forEach(function(doc) { var matches = myregexp.exec(doc.metadata.insertTime); if myregexp.test(doc.metadata.insertTime)) { var offset = matches[9] * (matches[8] == "+" ? 1 : -1); var hours = matches[4]-(-offset)+1 var date = new Date(matches[1], matches[2]-1, matches[3],hours, matches[5], matches[6], matches[7] / 10000.0) db.Product.update({_id : doc._id}, {$set : {"metadata.insertTime" : date}}) print("succsessfully updated"); } else { print("not updated"); } })
如何通过编写像这样的脚本来使用像momentjs这样的库:
[install_moment.js] function get_moment(){ // shim to get UMD module to load as CommonJS var module = {exports:{}}; /* copy your favorite UMD module (ie moment.js) here */ return module.exports } //load the module generator into the stored procedures: db.system.js.save( { _id:"get_moment", value: get_moment, });
然后在命令行加载脚本,如下所示:
> mongo install_moment.js
最后,在你的下一个mongo会话中,像这样使用它:
// LOAD STORED PROCEDURES db.loadServerScripts(); // GET THE MOMENT MODULE var moment = get_moment(); // parse a date-time string var a = moment("23 Feb 1997 at 3:23 pm","DD MMM YYYY [at] hh:mm a"); // reformat the string as you wish: a.format("[The] DDD['th day of] YYYY"): //"The 54'th day of 1997"