Our team is porting the game from Godot 3.5 to Godot 4. We have discovered a huge physics issue in Godot 4. When a character collides with a concave body, there is a catastrophic performance degradation. This is especially pronounced when colliding with sharp corners.
You can watch it on video. I checked many times that the problem lies precisely in physics. Godot 3 didn't have this problem.

Then assuming you haven't yet you should definitely open an issue on the tracker. Though typically one should search first to see if an issue is already reported. A quick search brought me to this(note the milestone on this is marked as 4.0):
https://github.com/godotengine/godot/issues/57313

If you think it might be the same issue, perhaps add a reaction such as thumbs up to it and follow the discussion there, maybe you find you have some further feedback to offer.

    Godot 4 is a pretty vague term, there are multiple versions, could you tell us if you're in beta or release candidate?

      Engardium Definitely do what @Megalomaniak posted then and submit an issue, I was just wondering because there are a lot of changes happening right now and I've suddenly found myself having issues and then updating and it all magically fixes itself next version.

        Godot 3.x used Bullet Physics (by default) and Godot 4.0 dropped that for a custom physics engine (which I don't understand why, but okay).

        However, Godot Physics is not as fully featured as Bullet and seems to be somewhat unfinished.

        If those objects are static bodies, you are better off using "Make multiple convex siblings". Concave physics objects were always a little slow anyway, so I've been doing that for a while.

        a month later

        I also reported this one last year: https://github.com/godotengine/godot/issues/70453 - interesting to see the issue in action in your game.

        I also have two other similar physics Issues reported:

        Summary: Godot 4.0 Physics is mostly beta for 3D as of now. Right now I'm starting experimenting with implementing Bullet with GDExtension.

        This tweet didn't age well 😅 - as Godot 4 physics is far away from being usable for the majority of 3D use cases, compared to Bullet. I know things will be improved, but probably only next year? Since this is no small task.

          An alternative would be to add Bepu Physics engine (pure C# open source) as well.

          I'm sure it is a lots of work but if it's already better than a pretty incomplete own implementation, it might be better after all.
          I have played a lot with it while I'm messing around with XNA/MonoGame and I never have lags and demo are pretty impressive.
          The only concern was the lack of auto creation of physics bodies from 3D models, that is a serious pain, especially doing it by hand, calculate every primitives location, orientation and size.