[00:33:11] <eka> hi all... have a sharding setup with lotsa traffic/data, but with 1 mongos, could be that the bottleneck? Have many app servers requesting to that mongos at a high rate, thinking on adding 1 mongos for each app server
[12:53:14] <durre> I have a database with sales and visitor statistics. this a group by hour, day, week etc and plot graphs in real time. is that a good use case for mongodb?
[19:32:05] <roxlu> kali: and, if I want to insert only a part of the object?
[19:32:19] <roxlu> then I better create a bson object from it, and remove what I don't want?
[19:32:54] <kali> or parse the json with whatever your conmfortable with nd push to mongodb directly
[19:33:47] <roxlu> yeah I'm using a light weight json parser now, and storing it into a bson obj
[19:34:13] <kali> if you want to stick to shell, there is http://kmkeen.com/jshon/
[19:36:24] <roxlu> are there other fast, tiny json parsers which are popular?
[19:37:31] <ttdevelop> i tried to directly import a json data in the form of [{},{}], it seems like for import to work with mongo, it needs to be in {}\n{} form
[19:39:41] <roxlu> when I'm inserting millions of entries, do I need to be aware of something with using "bson_append_new_oid(..)" ?
[19:45:09] <rAad> I've got an $avg field in my aggregation engine pipeline. Is there a way to truncate the number of decimals returned (say, 2 decimals for monetary amounts)?
[19:48:50] <ttdevelop> anyone knows any good GUI tools to manage mongodb?
[20:30:31] <roxlu> how do I insert an array like: [0.5,0.1,0.6] ?