Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st. We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here. Need help or have questions? Drop us a line at [email protected]
Created on 12-10-201903:33 AM - edited on 12-22-202011:08 PM by VidyaSargur
This video explains steps to install the required support for Intel® Intelligent Storage Acceleration Library on a Hortonworks Data Platform version 3 cluster, over Linux CENTOS 7.
ISA-L is a collection of optimized low-level functions targeting storage applications. It is developed by Intel, and its name means Intel(R) Intelligent Storage Acceleration Library.
ISA-L includes the following:
Erasure codes - Fast block Reed-Solomon type erasure codes for any encode/decode matrix in GF(2^8).
CRC - Fast implementations of cyclic redundancy check. Six different polynomials supported.
iscsi32, ieee32, t10dif, ecma64, iso64, jones64.
Raid - Calculate and operate on XOR and P+Q parity found in common RAID implementations.
Compression - Fast deflate-compatible data compression.
De-compression - Fast inflate-compatible data compression.
To check for ISA-L library, do the following:
$ hadoop checknative
ISA-L: false Loading ISA-L failed: Failed to load libisal.so.2 (libisal.so.2: cannot open shared object file: No such file or directory)
For ISA-L support on CentOS 7:
$ yum install gcc make autoconf automake libtool yasm git
$ git clone https://github.com/01org/isa-l/
$ cd isa-l/
$ ./autogen.sh
$ ./configure --prefix=/usr --libdir=/usr/lib64
$ make
$ sudo make install
To install the library precompiled from Hortonworks repositories: