Abonnieren

UiPath Process Mining

The UiPath Process Mining Guide

Setting up a local test environment

Einleitung

Zum Bearbeiten von Datenumwandlungen wird eine lokale Testeinrichtung für eine verbesserte Bearbeitungs- und Testerfahrung für Dateningenieure empfohlen. Eine lokale Testumgebung enthält die folgenden Tools.

ToolUsage
dbtto execute the data transformations on a local database.
Visual Studio Codeto edit the SQL code of the data transformations.
SQL Server (Express edition)for testing the data transformations.
SQL Server Management Studiofor reviewing the result of the data transformations in the local database.

Voraussetzungen

To install and run a dbt project, you need Python 3.9. You can download Python 3.9 from the official Python website.

Create a Python virtual environment

It is recommended to create a Python virtual environment in which you will install dbt. It is good practice to create a dedicated folder for your transformations. You can also use this folder to create the Python virtual environment.

StepAction
1Open Windows Explorer and create a folder where your virtual environment will be located. For example, C:\My_transformations.
2Open a Windows Command Prompt.

Führen Sie die in den folgenden Schritten beschriebenen Befehle aus, um eine virtuelle Python-Umgebung zu erstellen.

StepActionCommand
1Install the Python package virtualenv.py -m pip install virtualenv
2Go to the folder where you want to create the environment.cd [path_to_your_folder]. For example, cd C:\My_transformations
3Create a virtual environment (named venv).py -m virtualenv venv

Install dbt

Make sure the virtual environment is still activated. Follow these steps to install dbt to run transformations on Snowflake.

StepActionCommand
1Activate the virtual environment.venv\Scripts\activate
2Install the dbt packagepip install dbt-sqlserver==1.1.0
3Check whether the installation is successfuldbt --version

Die zurückgegebene Nachricht sollte beginnen mit: installed version: 1.1.2 .

Visual Studio-Code

Visual Studio Code ist der empfohlene Code-Editor zum Bearbeiten von Datentransformationen.

Visual Studio-Code installieren

You can download Visual Studio Code from Download Visual Studio Code webpage.

Erweiterungen

After you have installed Visual Studio Code, install the following extensions to make it easier to work with dbt:

  • Dbt-Hauptbenutzer

Führen Sie diese Schritte aus, um eine Erweiterung in Visual Studio Code zu installieren.

StepAction
1Start Visual Studio Code
2Go to the Extensions panel (CTRL+SHIFT+X). See the illustration below.
3Search for the dbt Power User extension by start typing the name in the Search Extensions in Marketplace text box.
4Click on Install.

Siehe Abbildung unten.

300

Set Python interpreter path

Um Python aus der erstellten virtuellen Umgebung auszuführen, muss der Pfad in Visual Studio Code festgelegt werden.
Führen Sie die folgenden Schritte aus.

StepAction
1Go to File > Preference > Settings.
2Search for Python.
3In the Default Interpreter Path, make sure to check the path to the python.exe. It should be located in the
[path_to_your_folder]\venv\Scripts folder. See the illustration below for an example.
671

Microsoft SQL Server

Microsoft SQL Server is the required database to test the transformations. This database server is not provided as part of the UiPath Process Mining product. For editing and testing the transformation you can also use SQL Server Express. You can download Microsoft SQL Server Express from the official Microsoft SQL Server downloads webpage.

📘

Hinweis:

It is recommended to test the transformations using small development datasets. This makes it possible to test these using a SQL Server with minimal requirements. If you do not have a Microsoft SQL Server available, or if you want to test the transformations on a local desktop machine, it is recommended to use Microsoft SQL Server Express.

📘

Hinweis:

By default, SQL Server is case insensitive whereas Snowflake is case sensitive. You are advised to change the behavior of your local SQL Server database to match Snowflakes behavior, to prevent any problems. This can be accomplished by setting the right collation during installation. The default value for the collation is dependent on your locale.

To change the collation to become case sensitive, replace the CI part with CS, e.g. Latin1_General_CI_AS should be changed to Latin1_General_CS_AS. If you already installed SQL Server, follow instructions here to update the collation.

Capacity calculator

You can use the to determine the hardware requirements for setting up a dedicated Microsoft SQL Server machine for Process Mining. See Capacity calculator.

SQL Server Management Studio (SSMS)

To view the database tables and to manage the SQL Server infrastructure, you can download SQL Server Management Studio (SSMS), which can be installed on any computer.

Aktualisiert vor 2 Monaten

Setting up a local test environment


Auf API-Referenzseiten sind Änderungsvorschläge beschränkt

Sie können nur Änderungen an dem Textkörperinhalt von Markdown, aber nicht an der API-Spezifikation vorschlagen.