f9ddc12a9b
* added gantt charts * removed .pycache * updated for newer versions of the event Co-authored-by: t-saste <t-saste@STEVENS-HEKA-1>
1.2 KiB
1.2 KiB
Job Graph Events in Power BI
Job Graph events can be used to identify bottlenecks in data refreshes by highlighting the critical path. For instances of Analysis Services not running on-premise, the graph is broken into 16 Kb chunks, each in their own event. The events can be reassembled with this script.
Rebuilding the DGMl file
Requirements
- Python 3.8 or later
- Visual Studio
Usage
- Start a trace in SQL Server Profiler and select "Job Graph Events".
- Start a data refresh ("Process Full" in SQL Server Management Studio).
- Wait for all trace events to arrive in Profiler.
File > Save As > Trace XML File
- Aim
rebuild.py
at this file like so:
python rebuild.py path\to\trace.xml output_folder
- Inside
output_folder
there will be two .DGML files, which can be opened in Visual Studio.
Creating a Gantt Chart
Requirements
- Python 3.8 or later
- A valid job graph DGML file (from above)
Usage
- Get a .DGML file with all the anntoations (running duration, waiting duration, etc.)
- Run
gantt\script.py
like so:
python gantt\script.py path\to\file.dgml output_folder
- Inside
output_folder
there will be an .html file that can be opened in a browser.