[00:00:07] <skot> That is always a challenge for each language.
[00:00:30] <cheeser> especially one in transition like Go is.
[00:00:48] <skot> It is still so active, or unstable?
[00:01:49] <skot> I thought things were more stable after 1.2/3
[00:03:18] <niemeyer> skot: You're certainly right.. any project with a maintainer that cares deeply about the project will eventually see someone frustrated for trying to do something that isn't aligned with the project design.
[00:03:57] <niemeyer> skot: That's still much better than the alternative, though..
[00:05:04] <niemeyer> skot: I don't recall the particular events you're alluding to.. if you feel I wasn't as helpful as I could have been at some point, I apologize.
[00:05:29] <kurushiyama> niemeyer But I am right that in some things you oriented yourself on stdlibs sql?
[00:07:36] <kurushiyama> niemeyer btw, even more thanks for gopkg.in ;)
[00:08:03] <niemeyer> kurushiyama: Glad you like it, and thanks for trying to make your own packages offer a stable API.. that's helpful for everyone
[00:33:48] <skot> niemeyer: no need for an apology. I didn't mean my comment to be negative either, just descriptive.
[00:35:21] <skot> niemeyer: glad to see you online; it has been a while -- hope to you around again, and soon.
[00:35:52] <skot> but I must go offline for a while to change venues.
[03:29:28] <ehershey> we should get a bot to do that
[06:53:01] <moogway> hi, could any kind soul shed a light on what is the difference between insertedCount and result.n in insertOnewriteOpResult? Thanks
[06:54:48] <moogway> insertedCount supposedly is "The amount of documents inserted" while result.n is "the total count of documents inserted"... but both of them are the same in value in almost all the write operations i've made
[07:01:03] <moogway> actually this one - http://mongodb.github.io/node-mongodb-native/2.1/api/Collection.html#~insertOneWriteOpResult
[07:15:36] <Boomtime> @moogway: that just looks like you're seeing the generic server response as well as the translated response - the 'n' field is the generic count from the server saying how many docs were involved
[07:16:15] <Boomtime> 'n' is often present but changes meaning depending on the operation - 'insertedCount' is unambiguous
[09:05:37] <mkozjak> is there an official systemctl script for mongo-connector available?
[09:38:21] <Derick> Ange7: sounds like you're using the old driver. You really shouldbe using the new one, with the new library.
[09:38:30] <Derick> which handles all those intricacies for you
[12:52:33] <dashu> hey guys im generating mongo querries in java but the querries behave really strange. some give me data and some dont. despite that there is data available in the mongodb. here is the DBCursor Object my querry is in.
[12:53:07] <dashu> the querry is always completely the same just the objectid changes
[14:22:50] <dashu> i have written this generic querry builder in java that you can give as many filters you want to search for in my mongodb. and i thought it works but my mongo behaves strangely. i send a querry with an objectid and two dates
[18:23:05] <hyades> I am having a collection which has 2 keys - say Day, Hour. I am having a compound index on {Day:1, Hour: 1}. However, doing a db.col.distinct('Hour', {Day: 'some day'}) takes a huge amount of time. Anyway I can speed things up?
[18:43:36] <dman777_alter> how do I show parse indexes? db.collection.getIndexes() doesn't show them
[19:10:56] <MacWinner> for wired tiger snappy vs zlib, is the performance impact mainly on insert/update? or also on read?
[19:12:02] <StephenLynx> what exactly are you referring to?
[19:12:43] <MacWinner> when deciding between using snappy vs zlib for compression, I'm trying to figure out where the downside of zlib is since it compresses better for my data set
[19:37:13] <CaptTofu> I am presenting at Percona Live in a few weeks and my demo is automating a mongodb sharded cluster
[19:37:38] <CaptTofu> it works flawlessly, but I'm not a mongo expert and want something that I could perhaps run to show that the cluster is working as expected
[19:38:01] <CaptTofu> what do people here suggest? What test data lends itself well to showing off replication and sharing?
[19:39:42] <jmmk> I am experiencing performance problems with an ETL process on a large collection. We need to do a full collection scan (not feasible to fit everything in memory) and read every record and send it elsewhere. The problem we are seeing is that the disk reads are incredible high (using EBS Provisioned IOPS and we are maxing out our 4000 IOPS). Is there anything that will reduce the number of disk reads required to scan the collection?
[19:52:21] <mylord> how do I get the _id of the inserted record?
[20:34:48] <rectalogic> I have a unique compound index and cannot get mongodb to use it with a regex prefix query - it will use a non-unique compound index - is this a limitation of unique indexes? sample explains: https://gist.github.com/rectalogic/07195f36fb4466b346a8f8cce559ee9b