Skip to main content

No project description provided

Project description

GDMix Workflow

GDMix-workflow is a workflow generation toolkit to orchestrate training jobs for GDMix, a framework to train non-linear fixed effect and random effect models. By providing a GDMix config, GDMix-workflow can run training jobs on single node, or generate a YAML file that can run training job distributedly on Kubernetes cluster with Kubeflow Pipeline deployed.

Configuration

GDMix-workflow supports two modes, single_node and distributed. For single_node mode, user will need to install the gdmix-workflow package and spark, GDMix-workflow will run jobs on the node. For distributed mode, GDMix-workflow generates a YAML file that can be deployed to Kubernetes cluster, we'll explain more about distributed mode in later section. Once the gdmix-workflow package is installed, user can call it by

python -m gdmixworkflow.main

plus following parameters:

  • --config_path: path to gdmix config. Required.
  • --mode: distributed or single_node. Required.
  • --jar_path: local path to the gdmix-data jar for GDMix processing intermediate data. Required by single_node mode only.
  • --workflow_name: name for the generated zip file to upload to Kubeflow Pipeline. Required by distributed mode only.
  • --namespace: Kubernetes namespace. Required by distributed mode only.
  • --secret_name: secret name to access storage. Required by distributed mode only.
  • --image: image used to launch gdmix jobs on Kubernetes. Required by distributed mode only.
  • --service_account: service account to launch spark job. Required by distributed mode only.

Run GDMix workflow on Kubernetes for distributed training

GDMix's distributed training is based on Kubernetes, and leverages Kubernetes services Kubeflow and spark-on-k8s-operator to run TensorFlow and Spark job distributedly on Kubernetes, respectively, and Kubeflow Pipeline to orchestrate jobs. Besides that, a centralized storage is needed for storing training data and syncing up checkpoints. User can use Kubernetes-HDFS or NFS as centralized storage.

Create a Kubernetes cluster, deploy required services

To run GDMix in distributed mode, user needs to create a Kubernetes cluster, and deploy following services:

Generate task YAML file and upload to Kubeflow Pipeline UI

Once the Kubernetes cluster and services are ready, with the provided GDMix config, GDMix-workflow can generate task YAML file that consists of launchers for each distributed TensorFlow or Spark job. User needs to upload it to Kubeflow Pipeline UI and click button to start training.

Run the MovieLens example

In this section we'll introduce how to train fixed effect and random effect models using GDMix for MovieLens data. Please download and preprocess moveLens data to meet GDMix's need using the provided script. We'll also need a GDMix config, a reference can be found here.

Run on single node

On the single node, user will need to install gdmix-workflow package and spark, and download the gdmix-data jar to process intermediate data.

Install gdmix-workflow

pip install gdmix-workflow

Install spark

Please note we don't support PySpark for now, need to install spark. We show how to install spark 2.4.6 on CentOS/RHEL 7.x below, other system can be installed similarly.

yum  install -y java-1.8.0-openjdk
export JAVA_HOME=/etc/alternatives/jre
spark_version=2.4.6
spark_pkg=spark-${spark_version}-bin-hadoop2.7
wget https://downloads.apache.org/spark/spark-${spark_version}/${spark_pkg}.tgz
mkdir /opt/spark
tar -xf ${spark_pkg}.tgz && \
    mv ${spark_pkg}/jars /opt/spark && \
    mv ${spark_pkg}/bin /opt/spark && \
    mv ${spark_pkg}/sbin /opt/spark && \
    mv ${spark_pkg}/kubernetes/dockerfiles/spark/entrypoint.sh /opt/ && \
    mv ${spark_pkg}/examples /opt/spark && \
    mv ${spark_pkg}/kubernetes/tests /opt/spark && \
    mv ${spark_pkg}/data /opt/spark && \
    chmod +x /opt/*.sh && \
    rm -rf spark-*
export SPARK_HOME=/opt/spark
export PATH=/opt/spark/bin:$PATH
export SPARK_CLASSPATH=$SPARK_CLASSPATH:/opt/spark/jars/

Download gdmix-data jar

wget https://linkedin.bintray.com/maven/com/linkedin/gdmix/gdmix-data-all_2.11/0.1.0/gdmix-data-all_2.11-0.1.0.jar

Download and preprocessing movieLens data

Run the script to download and save preprocessed data to directory movieLens. --dest_path can be used to save the result to a different path.

python download_process_movieLens_data.py

Start GDMix model training

Download the GDMix config lr-single-node-movieLens.config., start training with following command:

python -m gdmixworkflow.main --config_path lr-single-node-movieLens.config --jar_path gdmix-data-all_2.11-0.1.0.jar

Run on Kubernetes

To run on Kubernetes, user will need to copy the processed movieLens data to the centralized storage, modify the input path fields such as train_data_path, validation_data_path, feature_file and metadata_file of the GDMix config for distributed training lr-distributed-movieLens.config.

If using the provided image linkedin/gdmix:gdmix:0.1, which has the gdmix-workflow package and spark installed, user can mount the processed movieLens data from the centralized storage to path /workspace/notebook/movieLens for each worker then no change is needed for the lr-distributed-movieLens.config.

Generate YAML file

User will need to install GDMix-worklfow in order to generate the YAML file:

pip install gdmix-workflow

Then generate the YAML file with following command. Parameters such as namespace, secret_name and service_account relate to your deployment.

python -m gdmixworkflow.main --config_path lr-distributed-movieLens.config --mode=distributed --workflow_name=movieLens --namespace=default --secret_name default --image linkedin/gdmix:gdmix:0.1 --service_account account

A zip file named movieLens.zip is generated and ready to be uploaded to Kubeflow Pipeline.

Upload to Kubeflow Pipeline

If the Kubeflow Pipeline is successfully deployed, use can forward pipeline UI to local, following command forward to local port 9980:

kubectl -n default port-forward svc/ml-pipeline-ui 9980:80

Type localhost:9980 in browser to view the Kubeflow Pipeline UI, upload the produced YAML file movieLens.zip(click button Upload pipeline), and then click button Create run to start the training. A snapshot of workflow is shown in figure 5.

Figiure 4: GDMix Distributed Training

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gdmix-workflow-0.1.0.tar.gz (17.2 kB view details)

Uploaded Source

Built Distribution

gdmix_workflow-0.1.0-py3-none-any.whl (19.7 kB view details)

Uploaded Python 3

File details

Details for the file gdmix-workflow-0.1.0.tar.gz.

File metadata

  • Download URL: gdmix-workflow-0.1.0.tar.gz
  • Upload date:
  • Size: 17.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1.post20200807 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8

File hashes

Hashes for gdmix-workflow-0.1.0.tar.gz
Algorithm Hash digest
SHA256 74d70d8d93d4c2fb1476c58ae5fdf50196d3fb529d092aeca86a8d205e6d178c
MD5 1a89f8dbf23541fce1a82546c8851029
BLAKE2b-256 2db97a38f4c2cf5dc8f56205ee81762e286a3d1245a2e22e791d754f501dc0ad

See more details on using hashes here.

File details

Details for the file gdmix_workflow-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: gdmix_workflow-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 19.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1.post20200807 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8

File hashes

Hashes for gdmix_workflow-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2fc6224b9af145136ebd3ba7a11d8b726280a47718302395f893e19d66c01579
MD5 26174ab06be6b2ca1c95dc82c3c06412
BLAKE2b-256 9f6ebfa1e64d8395d7e6cecb846e39e65a76cc03f6514cb5f0fc93878d78e9fe

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page