Intel MLlib is an optimized package to accelerate machine learning algorithms in Apache Spark MLlib. It is compatible with Spark MLlib and leverages open source Intel® oneAPI Data Analytics Library (oneDAL) to provide highly optimized algorithms and get most out of CPU and GPU capabilities. It also take advantage of open source Intel® oneAPI Collective Communications Library (oneCCL) to provide efficient communication patterns in multi-node multi-GPU clusters.
Intel MLlib tried to maintain the same API interfaces and produce same results that are identical with Spark MLlib. However due to the nature of float point operations, there may be some small deviation from the original result, we will try our best to make sure the error is within acceptable range. For those algorithms that are not accelerated by Intel MLlib, the original Spark MLlib one will be used.
You can use a pre-built JAR package to get started, it can be downloaded from here.
After downloaded, you can refer to the following Running section to try out.
You can also build the package from source code, please refer to Building section.
- CentOS 7.0+, Ubuntu 18.04 LTS+
- Java JRE 8.0+ Runtime
- Apache Spark 3.0.0+
Generally, our common system requirements are the same with Intel® oneAPI Toolkit, please refer to here for details.
Intel® oneAPI Toolkits (Beta) components used by the project are already included into JAR package mentioned above. There is no extra installs for cluster nodes.
Users usually run Spark application on YARN with client mode. In that case, you only need to add the following configurations in spark-defaults.conf
or in spark-submit
command line before running.
# absolute path of the jar for uploading
spark.files /path/to/oap-mllib-x.x.x-with-spark-x.x.x.jar
# absolute path of the jar for driver class path
spark.driver.extraClassPath /path/to/oap-mllib-x.x.x-with-spark-x.x.x.jar
# relative path of the jar for executor class path
spark.executor.extraClassPath ./oap-mllib-x.x.x-with-spark-x.x.x.jar
To use K-means example for sanity check, you need to upload a data file to your HDFS and change related variables in run.sh
of kmeans example. Then run the following commands:
$ cd OAP/oap-mllib/examples/kmeans
$ ./build.sh
$ ./run.sh
Use HiBench to generate dataset with various profiles, and change related variables in run-XXX.sh
script when applicable. Then run the following commands:
$ cd OAP/oap-mllib/examples/kmeans-hibench
$ ./build.sh
$ ./run-hibench-oap-mllib.sh
As PySpark-based applications call their Scala couterparts, they shall be supported out-of-box. An example can be found in the Examples section.
We use Apache Maven to manage and build source code. The following tools and libraries are also needed to build Intel MLlib:
- JDK 8.0+
- Apache Maven 3.6.2+
- GNU GCC 4.8.5+
- Intel® oneAPI Toolkits (Beta) 2021.1-beta07 Components:
- Data Analytics Library (oneDAL)
- Threading Building Blocks (oneTBB)
- Open Source Intel® oneAPI Collective Communications Library (oneCCL)
Intel® oneAPI Toolkits (Beta) and its components can be downloaded and install from here. Installation process for oneAPI using Package Managers (YUM (DNF), APT, and ZYPPER) is also available. Generally you only need to install oneAPI Base Toolkit for Linux with all or selected components mentioned above. Instead of using oneCCL included in Intel® oneAPI Toolkits (Beta), we prefer to build from open source oneCCL to resolve some bugs.
More details abount oneAPI can be found here.
Note: We have verified the building process based on oneAPI 2021.1-beta07. Due to default installation path change in 2021.1-beta08+, it will not work for 2021.1-beta08+. We will fix it soon. You can also refer to this script and comments in it to install correct oneAPI version and manually setup the environments.
Scala and Java dependency descriptions are already included in Maven POM file.
To clone and build from open source oneCCL, run the following commands:
$ git clone https://github.com/oneapi-src/oneCCL
$ git checkout -b 2021.1-beta07-1 origin/2021.1-beta07-1
$ cd oneCCL && mkdir build && cd build
$ cmake ..
$ make -j install
The generated files will be placed in /your/oneCCL_source_code/build/_install
To clone and checkout source code, run the following commands:
$ git clone https://github.com/Intel-bigdata/OAP
Optional to checkout specific release branch:
$ git checkout -b branch-0.9-spark-3.x origin/branch-0.9-spark-3.x
We rely on environment variables to find required toolchains and libraries. Please make sure the following environment variables are set for building:
Environment | Description |
---|---|
JAVA_HOME | Path to JDK home directory |
DAALROOT | Path to oneDAL home directory |
TBB_ROOT | Path to oneTBB home directory |
CCL_ROOT | Path to oneCCL home directory |
We suggest you to source setvars.sh
script into current shell to setup building environments as following:
$ source /opt/intel/inteloneapi/setvars.sh
$ source /your/oneCCL_source_code/build/_install/env/setvars.sh
Be noticed we are using our own built oneCCL instead, we should source oneCCL's setvars.sh
to overwrite oneAPI one.
If you prefer to buid your own open source oneDAL, oneTBB versions rather than use the ones included in oneAPI TookKits, you can refer to the related build instructions and manually source setvars.sh
accordingly.
To build, run the following commands:
$ cd OAP/oap-mllib/mllib-dal
$ ./build.sh
The built jar package will be placed in target
directory with the name oap-mllib-x.x.x-with-spark-x.x.x.jar
.
Example | Description |
---|---|
kmeans | K-means example for Scala |
kmeans-pyspark | K-means example for PySpark |
kmeans-hibench | Use HiBench-generated input dataset to benchmark K-means performance |
- K-Means (CPU, Experimental)