PMXBOT Log file Viewer

Help | Karma | Search:

#mongodb logs for Monday the 16th of March, 2020

(Back to #mongodb overview) (Back to channel listing) (Animate logs)
[00:46:50] <cgi> When one designs schemas for mongodb, - what should be kept in mind? Is there a tutorial that I can read for that?
[01:40:41] <cgi> where is a good place to get mongodb help?
[07:46:39] <jaitaiwan> Hey folks, having a server selection timeout issue. I'm providing the ext ips of the servers but the selection timeout is reporting timeouts using the internal IPs I never specified. Any thoughts?
[10:09:40] <Bromite> can someone explain mongo to me?
[10:09:59] <Bromite> why use it over an rdbms?
[12:45:24] <cgi> Bromite, very few people hanging in here - I have been looking for help on mongo for some time now. Not sure if this is the right place.
[12:59:38] <Bromite> cgi: i guess mongodb is dead?
[12:59:42] <Bromite> long live postgres
[13:10:56] <cgi> Bromite, if Amazon is using it in production - I am not sure it will die so easily :)
[13:30:34] <Bromite> cgi: i don't think amazon use mongodb in production
[13:44:12] <cgi> Bromite, I think there is another place to talk about mongodb - perhaps slack?
[13:45:46] <synthmeat> my impression is that they're focusing more on enterprise clients, tbh
[15:06:56] <drab> hello, I'm using pymongo and havign problems with find() not respecting a filter, can't figure out why. in the mongo shell I'm doing "start_time_ms" : {"$gt" : NumberLong("10000000000")} , but if I try the equivalent of that in pymongo I get records with lower values
[15:07:11] <drab> all the other string criteria work, it's just this one with the number comparison
[15:07:49] <drab> I even tried to import BSON and cast that number to int64, but same deal, I get back documents with lower values
[15:10:54] <drab> btw this works fine from the shell
[21:57:35] <agarciaba> hi, how should I make a query to a nested boolean, name: string, dog { owner: false address: false xxx: false }. I would like to get a name just when owner: false
[22:56:45] <agarciaba> I've a nested boolean value. I would like to query instead of find({}), find({'dogs.owners' : false}) to return dogs without owner, query using mongo cli seems to work fine, but nodejs gives me undefined when my query uses await.. and using find({}) returns fine