Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Profiler raises ValueError in Python 3.12 #1875

Open
anorthall opened this issue Feb 4, 2024 · 19 comments
Open

Profiler raises ValueError in Python 3.12 #1875

anorthall opened this issue Feb 4, 2024 · 19 comments
Assignees
Labels

Comments

@anorthall
Copy link

Enabling the profiling panel in Python 3.12 and Django 5.0.1 causes the following exception:

   File "/usr/local/lib/python3.12/site-packages/debug_toolbar/panels/profiling.py", line 144, in process_request
     return self.profiler.runcall(super().process_request, request)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   File "/usr/local/lib/python3.12/cProfile.py", line 109, in runcall
     self.enable()
 ValueError: Another profiling tool is already active

This is due to a change in Python 3.12: python/cpython#110770

There is also some relevant discussion of the same issue over on the django-silk repo which may be helpful in finding a way forward: jazzband/django-silk#682

@anorthall anorthall added the Bug label Feb 4, 2024
@anorthall anorthall changed the title Profiler raises ValueError in Python 3.12 due to cPro Profiler raises ValueError in Python 3.12 Feb 4, 2024
@elineda
Copy link
Contributor

elineda commented Feb 9, 2024

Hello,

Can you give me step for reproduce the bug. I try enable the profiling panel with django 5.0.1 and python 3.12.1, I have not the problem.

@matthiask
Copy link
Member

It happens to me as well, but only intermittently. Maybe reloading a few times, enabling and disabling the profiler panel using the checkbox and/or restarting the development server works when trying to reproduce the problem?

@ddkasa
Copy link

ddkasa commented Feb 23, 2024

This issue is happening for me as well, but I can't seem to determine what's causing the issue.

Tried to go through all the installed apps and no conflicts seem to resolve it and tried loading with 2 browsers as well.

Django 5.0.2 / Python 3.12.1

What's the progress on this or are there any updates on this?

Working the profile panel disabled by default in settings for now.

@mfosterw
Copy link

I don't have a solution, but I have found a way to consistently produce the bug. When running a NextJS app that depends on a django api with the vscode debugger, every hard refresh from the nextjs frontend results in this error on the backend. I have no idea if the vscode debugger is contributing to the error, but note that I am running both the frontend and the backend from vscode. I hope this can be useful for someone to eventually debug the problem! (In the meantime, I'll be disabling the panel).

@elineda
Copy link
Contributor

elineda commented Feb 29, 2024

Ok seem the problem occurs only the two requests are send on the runserver in the same times. Using a debuger like pycharm one is not necessary.
That's strange because runserver only do one request at the time. Need to find one profiler open even if the other is not finished

@elineda
Copy link
Contributor

elineda commented Feb 29, 2024

Found : you need to put --nothreading in runserver @mfosterw @ddkasa and @matthiask can you test this ?

@elineda
Copy link
Contributor

elineda commented Feb 29, 2024

I propose to add a note in installation.rst or tip.rst. I don't know if it's possible by adding something in the debug toolbar to disable the multitreading.

@ddkasa
Copy link

ddkasa commented Feb 29, 2024

@elineda Adding --nothreading to the runserver command does seem to resolve the issue for me.

I am running my development server through Uvicorn though, so I am curious if you know a solution for that as well?

@elineda
Copy link
Contributor

elineda commented Feb 29, 2024

@elineda Adding --nothreading to the runserver command does seem to resolve the issue for me.

I am running my development server through Uvicorn though, so I am curious if you know know a solution for that as well?

Nan no way, uvicorn doesn't accept thread value

@tim-schilling
Copy link
Contributor

I propose to add a note in installation.rst or tip.rst. I don't know if it's possible by adding something in the debug toolbar to disable the multitreading.

@elineda What do you think about putting it as an admonition/warning in the Profiling panel area of the docs? I think I have a slight preference to that, but would also be okay with it going in tip.rst. I'd prefer to keep the installation docs as short as possible.

@elineda
Copy link
Contributor

elineda commented Mar 4, 2024

I'm ok to add a note in profiling. If you have a problem with it you will check (I hope) the panel doc before complain.

@tim-schilling
Copy link
Contributor

Agreed

@matthiask
Copy link
Member

I wonder if it would be possible to add a counter variable which tracks the number of currently active profiling sessions; the profiler would only be activated when incrementing from zero and would only be deactivated when decrementing to zero?

@tim-schilling
Copy link
Contributor

I think we'd have to count that across threads.

@elineda
Copy link
Contributor

elineda commented Mar 5, 2024

I wonder if it would be possible to add a counter variable which tracks the number of currently active profiling sessions; the profiler would only be activated when incrementing from zero and would only be deactivated when decrementing to zero?

in that case what we do when another request come, we do it without profiler or we wait ?

@elineda
Copy link
Contributor

elineda commented Mar 5, 2024

I think we'd have to count that across threads.

we can use cache for that.

@tim-schilling
Copy link
Contributor

I think we'd have to count that across threads.

we can use cache for that.

Yes, that's an option. It would create a dependency on the CACHES setting being configured to run at least this particular panel. That's not ideal.

@elineda
Copy link
Contributor

elineda commented Mar 5, 2024

with async compatibilty we will need a cache, for the same reason isn't ?

mergify bot pushed a commit to hedyorg/hedy that referenced this issue Apr 4, 2024
Adds a sort of profiling to this page by placing some timers in some key function where I think the slowdown happens. Why is it so hacky? I tried for several hours to use werkzeug's `ProfilerMiddleware` but I think there's a bug with the implementation, as several people have reported in some other tools: jazzband/django-debug-toolbar#1875, jazzband/django-silk#682

I thought that since we didn't need the full-fledged tool and didn't want to spend more time on this, this approach would suffice.
@agusmakmun
Copy link

agusmakmun commented Apr 29, 2024

So the configs become:

DEBUG_TOOLBAR_CONFIG = {
    "DISABLE_PANELS": [
        "debug_toolbar.panels.profiling.ProfilingPanel",  # additional one
        "debug_toolbar.panels.redirects.RedirectsPanel",
    ],
    "SHOW_TEMPLATE_CONTEXT": True,
}

https://django-debug-toolbar.readthedocs.io/en/latest/configuration.html#toolbar-options

It's fixed for me as uvicorn doesn't have --nothreading parameter, especially for who use the django-cookie-cutter.

Meanwhile, to reproduce the profiler issue, we can just ctcl+s (save multiple times the python files in the project to trigger restarts).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

When branches are created from issues, their pull requests are automatically linked.

7 participants