PyCharm 2022.2 Help

Thread Concurrency Visualization

Overview

This feature helps gain full control over the multi-threaded applications. The concurrency visualization session runs with the current run/debug configuration in the Concurrency Diagram mode.

Starting the concurrency visualization session

  1. Do one of the following:

    • From the main menu, select Run | Profile | Concurrency Diagram for <script name>.

      Run Concurrency Diagram from the main menu
    • Right-click a target file in the editor and select More Run/Debug | Concurrency Diagram for <script name>.

      Run Concurrency Diagram from the context menu
    • Provided that the main toolbar or the navigation bar is visible, click Run concurrency diagram and select Concurrency Diagram for <script name>.

The concurrency visualization diagram shows the real time states of threads inside the running process in the Threading graph tab of the Concurrent Activities Diagram tool window.

Concurrency visualization for the applications that use asyncio

Concurrency visualization also works well with the asyncio module available in Python 3.5 and later.

To make use of the concurrency visualization, run the application that uses asyncio same way as described above, and then switch to Asyncio graph tab.

Working with the Concurrent Activities Diagram tool window

  • The left-hand side of the tool window contains the toolbar with the following icons:

    • App actions suspend - click this button to terminate the running process.

    • App general zoom in - click these buttons to increase or decrease scale of the diagram.

    • App run configurations scroll down - when the diagram is drawn for a long time and output is too long, then a scrollbar appears. When this button is pressed, this scrollbar is automatically scrolled to the end.

    • App actions close - click this button to close the tool window.

  • Next to the toolbar, there is the list of thread names; the right-hand side shows the waiting time for each thread, a period of time prior to thread execution:

    Concurrency diagram
  • Different states are marked with different colors. The legend is shown in the window.

  • To zoom in and out, use the magnifier glass icons in the toolbar, or Ctrl+mouse wheel.

  • To navigate to a particular stack frame, click the diagram.

Graphs' context menu

Right-clicking on a graph invokes a context menu with the following commands:

Item

Description

Show related locks

This command highlights on a graph all the thread expectations, which work with the same lock where a context menu has been invoked.

Hide related locks

This command hides the highlighting described above.

Last modified: 27 March 2022