Coder Social home page Coder Social logo

`istr` causes memory leak about multidict HOT 9 CLOSED

aio-libs avatar aio-libs commented on June 28, 2024 1
`istr` causes memory leak

from multidict.

Comments (9)

thehesiod avatar thehesiod commented on June 28, 2024

just came to this same conclusion! Here's a diff between when we didn't see it and when we started seeing it: v2.1.6...v3.0.0

from multidict.

thehesiod avatar thehesiod commented on June 28, 2024

note: after fixed please add unittest for leak checking, can use resource.getrusage, psutil or something similar

from multidict.

thehesiod avatar thehesiod commented on June 28, 2024

I've been trying to find the leak, and with the following code only istr1 + istr2 leak, so it seems to point to the leak being in the bottom part of istr_new

import asyncio
import multidict
from fbn.utils.profiling import MemTracer


def test():
    istr1 = multidict.istr('foobarbaz')
    istr2 = multidict.istr()
    istr3 = multidict.istr(istr2)
    for _ in range(100):
        istr1.title()
        str(istr1)

async def main():
    tracer = MemTracer(5, '/tmp/traces.txt')

    # warmup
    test()

    while True:
        test()
        tracer.tick()


if __name__ == '__main__':
    _loop = asyncio.get_event_loop()
    _loop.run_until_complete(main())

from multidict.

gpfei avatar gpfei commented on June 28, 2024

PyUnicode_Type.tp_new() is called in istr_new(), but PyUnicode_Type.tp_dealloc() is missed in istr_dealloc().

I tried the code below, it seems to work.

void istr_dealloc(istrobject *self)
{   
    Py_XDECREF(self->canonical);
    PyUnicode_Type.tp_dealloc((PyObject*)self);  // <- new added
} 

from multidict.

thehesiod avatar thehesiod commented on June 28, 2024

@gpfei hah! I had tried Py_TYPE(self)->tp_free(obj); and it didn't work, nice find! What's interesting is that I went all the way to trying with valgrind and it didn't find any leaks just now ;)

from multidict.

thehesiod avatar thehesiod commented on June 28, 2024

@gpfei I created a PR with your fix. I'll add a testcase after returning from the food trucks. I'm kinda anxious for fix because our prod checkers are failing due to this.

from multidict.

gpfei avatar gpfei commented on June 28, 2024

@thehesiod failing due to this fix?

from multidict.

thehesiod avatar thehesiod commented on June 28, 2024

No failing due to the leak

from multidict.

asvetlov avatar asvetlov commented on June 28, 2024

Fixed by #106

from multidict.

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.