Alteryx Promote R Client
Package for deploying R models to Alteryx Promote.
Examples:
Hello World - A very simple model.
Lending - Use logistic regression to classify credit applications. as good or bad.
xgboost - Use xgboost to train a classifier on the agaricus dataset.
Installation
Client
To install the promote package from CRAN, execute the following code from an active R session:
install.packages("promote")(Please refer to the promote-python package for instructions on installing the Python client.)
Promote App
Please refer to the installation guide for instructions on installing the full Promote application.
Using the Client
Model Directory Structure
example-model/
├── deploy.R
└── promote.sh (optional)
-
deploy.R: our primary model deployment script -
promote.sh: this file is executed before your model is built. It can be used to install low-level system packages such as Linux packages
Deploying Your Model
This section will walk through the steps and key functions of a successful deploy.r script.
Steps:
- Initial Setup
- model.predict
- Test Data
- promote.library
- promote.metadata
- promote.config
- promote.deploy
Initial Setup
Load the promote library that was previously installed:
library(promote)Import a saved model object:
# Previously saved model 'save(my_model, file = "my_model.rda")'
load("my_model.rda")model.predict
The model.predict function is used to define the API endpoint for a model and is executed each time a model is called. This is the core of the API endpoint
Usage
model.predict(data)
Arguments
datathe data frame generated from the JSON sent to the deployed model
Example:
model.predict <- function(data) {
# generate predictions from the model based on the incoming dataframe
predict(my_model, data)
}Test Data
It is a good practice to test the model.predict function as part of the deployment script to make sure it successfully produces an output. Once deployed, the data argument passed to the model.predict function will always be in the form of an R data frame. The incoming JSON will be converted to a data frame using the fromJSON() method available from either jsonlite or rjson. Which library is used can be configured in the advanced model management section of the Promote App.
Example:
testdata <- '{"X1":[1,2,3],"X2":[4,5,6]}'
model.predict(data.frame(jsonlite::fromJSON(testdata),stringsAsFactors=TRUE))
promote.library
Usage
promote.library(name, src = "version", version = NULL, user = NULL, install = TRUE, auth_token = NULL, url = NULL, ref = "master", subdir = NULL)
Note: Installing custom packages from git requires Promote version 2018.4.1 or higher. Installing custom packages with subdir parameter requires Promote version 2019.1.0 or higher.
Arguments
namename of the package to be addedsrcsource from which the package will be installed on Promote (CRAN or git)versionversion of the package to be added (CRAN only, userefparameter for git packages)userGithub username associated with the packageinstallwhether the package should also be installed into the model on the Promote server; this is typically set to False when the package has already been added to the Promote base image.auth_tokenPersonal access token string associated with a private package's repository (only works whensrc = 'github', recommended usage is to include PAT in the URL parameter while usingsrc='git')urlA valid URL pointing to a remote hosted git repository (recommended)refThe git branch, tag, or SHA of the package to be installed (SHA recommended)subdirThe subdirectory path of a git repository holding the package to install
Examples:
Public Repositories:
promote.library("randomforest")
promote.library(c("wesanderson", "stringr"))
promote.library("my_public_package", install = FALSE)
promote.library("my_public_package",
src = "git",
url = "https://gitlab.com/userName/rpkg.git")
promote.library("hilaryparker/cats")
promote.library("cats", src = "github", user = "hilaryparker")Private Repositories:
promote.library("priv_pkg",
src = "git",
url = "https://x-access-token:<YourToken>ATgithub.com/username/rpkg.git")
promote.library("priv_pkg",
src = "git",
url = "https://x-access-token:<YourToken>ATgitlab.com/username/rpkg.git",
ref = "i2706b2a9f0c2f80f9c2a90ac4499a80280b3f8d")
promote.library("priv_pkg",
src = "git",
url = "https://x-access-token:<YourToken>ATgitlab.com/username/rpkg.git",
ref = "staging")
promote.library("cats", src = "github", user = "hilaryparker", auth_token = "3HwjSeMu1ynrYtc1e4yj") promote.metadata
Store custom metadata about a model as part of the model.predict call when it is sent to the Promote servers. (limited to 6 key-value pairs)
Usage
promote.metadata(name, value)
Arguments
namethe name of your metadata (limit 20 characters)valuea value for your metadata (will be converted to string and limited to 50 characters)
Example:
promote.metadata("one", 1)
promote.metadata("two", "2")
promote.metadata("list", list(a=1,b=2))promote.config
To deploy models, add a username, API key, and URL to the promote.config variable
usernamethe username used to sign into the Promote appapikeythe random API key that is assigned to that usernameenvthe URL that can be used to access the Promote app's frontend
Example:
promote.config <- c(
username = "username",
apikey = "apikey",
env = "http://promote.company.com/"
)promote.deploy
The deploy function captures model.predict and the promote.sh file and sends them to the Promote servers
Usage
promote.deploy(model_name, confirm = TRUE, custom_image = NULL)
Arguments
model_namethe name of the model to deploy to Alteryx Promoteconfirmif true, the user will be prompted to confirm deploymentcustom_imagethe custom image tag to use when building the model
Example:
promote.deploy("MyFirstRModel", confirm = TRUE, custom_image = NULL)promote.sh
The promote.sh file can be included in your model directory. It is executed before your model is built and can be used to install low-level system packages such as Linux packages and other dependencies. Be aware of the current working directory for your R session when deploying to ensure the deployment finds and processes the promote.sh file.
Example:
# Install Microsoft SQL Server RHEL7 ODBC Driver
curl https://packages.microsoft.com/config/rhel/7/prod.repo > /etc/yum.repos.d/mssql-release.repo
exit
yum remove unixODBC-utf16 unixODBC-utf16-devel #to avoid conflicts
ACCEPT_EULA=Y yum install msodbcsql17
# optional: for bcp and sqlcmd
ACCEPT_EULA=Y yum install mssql-tools
echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bash_profile
echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bashrc
source ~/.bashrcDeployment
There are multiple ways to run your deploy.R script and deploy your model.
- In in an active R shell session, you can source the deploy.R file.
source("deploy.R")- If in a console/terminal/bash session, you can use the
Rscriptutility to run the file.
Rscript deploy.R- If using an R IDE environment like RStudio, you can run or source the script all at once or selectively. Model deployment will once the
promote.deployfunction is called.