Django MPTT Postgres update query runs slowly
django mptt uses Nested Set Model
So if your save method causes insert operation django-mptt have to recalculate a lot of data. It's just don't work on big tables.
You have to refuse using django-mptt and invent your own database schema.