Code Monkey home page Code Monkey logo

Comments (6)

athampy avatar athampy commented on July 20, 2024

Handler.coffee is located in /server/commons/Handler.coffee.

from codecombat.

rubenvereecken avatar rubenvereecken commented on July 20, 2024

I jumped this issue but found that loading versions was already quite efficient. An example response is the following:

[ { slug: 'tiny2',
    name: 'Tiny2',
    created: Mon Mar 10 2014 08:53:37 GMT+0100 (CET),
    version: { isLatestMinor: true, isLatestMajor: true, minor: 0, major: 0 },
    _id: 531d6f81baf1b1290f2f9534 } ]

The only thing possibly superfluous is slug but I'm guessing that's not too much of a bottleneck.

Since all and only essential properties are returned, with no documents, this issue can be closed.

from codecombat.

nwinter avatar nwinter commented on July 20, 2024

Yeah, I added a projection to it recently. I do see the system crash still when trying to load the versions for Brawlwood, complaining that the in-memory sort on the server runs out of memory and dies. So something isn't right about how it's trying to sort. @schmatz @sderickson how can we make this query not explode?

from codecombat.

sderickson avatar sderickson commented on July 20, 2024

I checked it out, it's not mongoose specific. Even if you tell Mongo to project, it seems like internally it's still loading the full data and take up all the Mongo resources. I tested by running this command on the mongo client:

db.levels.find({original:ObjectId('52d97ecd32362bc86e004e87')}, {name:1}).sort({created:-1})

You get the same error:

error: {
"$err" : "Runner error: Overflow sort stage buffered data usage of 33637240 bytes exceeds internal limit of 33554432 bytes",
"code" : 17144
}

from codecombat.

schmatz avatar schmatz commented on July 20, 2024

Use the aggregation framework. The following query works as expected:

db.levels.aggregate({
    $match: {
        "original": ObjectId('52d97ecd32362bc86e004e87')
    }
}, {
    $project: {
        "name": 1,
        "created": 1,
        "_id": 0
    }
}, {
    $sort: {
        "created": -1
    }
})

from codecombat.

nwinter avatar nwinter commented on July 20, 2024

Why yes, yes it did.

from codecombat.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.