[14:31:36] <poboy> I have a very basic question. I have an Item model and I want to deleteOne() through a post request. https://kopy.io/8dVPa
[14:31:44] <poboy> What do I put for 'db' and 'collection'? Obviously I'm brand new to Node
[14:36:36] <riot> What is mongod trying to tell me by refusing to start with the message "No map found at top level of YAML config"?
[14:38:16] <riot> (that was in an lxc container) - same config, same version runs fine outside the container :/
[14:41:10] <mun24> hi all, need help, inserting 90,000 record with 40 attributes takes very long. How to resolve it?
[14:49:00] <riot> mun24: use fewer records, use bulk inserts, maybe use upserts if some of them are already in there.
[14:49:56] <riot> in short: "Find and understand your bottleneck."
[16:52:27] <PsiTrax> Hi there. Could anyone give me a hint how to do the following Query.
[16:53:11] <PsiTrax> I've a collection with { filename: <str>, metadata: <obj> }. With many documents with same filename but different metadata.
[16:54:04] <PsiTrax> I now want a distinct query to filename but include the metadata of the document WHEN matadata.published=true OR if this not exists the file with latest uploadDate.