High Performance Computing

 View Only

Integrating Delta Lake with IBM Spectrum Conductor 2.4.0

By Archive User posted Fri September 27, 2019 03:44 PM

  

Originally posted by: TingXue


image
Delta Lake is an open source storage layer that brings reliability to data lakes. It’s not included with IBM Spectrum Conductor 2.4.0; however, you can integrate the two. Here's is an example of adding Delta Lake 0.4.0 to an existing IBM Spectrum Conductor 2.4 instance group called SIG243.

  1. Download the Delta Lake package for Scala 2.11 (delta-core_2.11-0.4.0.jar) from the Maven repository:
    https://repo1.maven.org/maven2/io/delta/delta-core_2.11/0.4.0/delta-core_2.11-0.4.0.jar
  2. Specify the instance group where you will add the Delta Lake package:
    1. From the IBM Spectrum Conductor cluster management console, click Workload > Instance Groups:
      image
       
    2. Select the name of the instance group (SIG243, in this example):
      image
       
    3. Stop the instance group: click Manage > Stop.
      In this example, we’ll stop SIG243 so we can add the Delta Lake package to it as an additional package, later on:
      image
       
  3. Deploy the Delta Lake package to your instance group:
    1. When the instance group status changes to Ready, click Manage > Configure.
      Here, SIG243 is ready:

      image
       
    2. Add the Delta Lake package to the instance group: from the Packages page, select Create Single-File Packages and browse to the location where you downloaded the delta-core_2.11-0.4.0.jar package, and open it:
      image

      Then, click Modify Instance Group:
      image
       
    3. When the deployment finishes and the instance group state returns to Ready again, click Start to start the instance group.
       
  4. Test Delta Lake table operations to ensure that your Delta Lake package works properly.

    You can quickly test the Delta Lake package using Notebooks within the cluster management console (if you don’t have notebooks created for users, see IBM Knowledge Center to create one).
    This example uses a Jupyter 5.0 notebook for the user called Admin.

     
    1. From the instance group management page, click the Notebooks tab (for example, Workload > Instance Groups > SIG243 > Notebooks):
      image
       
    2. Click My Notebooks and then the notebook and user name combination (in this example, the Jupyter 5.4.0 - Owned by Admin):image
       
  5.  
    1. In the Jupyter console, click New > Spark Python (Spark Cluster Mode):
      image
    2. Run the following Python code provided by Delta Lake Quickstart documentation, to verify that the instance group properly loaded the Delta Lake package. Note that <shared location> is a shared location accessible by all the hosts in the Spark executor resource group for the instance group (by default, is the ComputeHosts resource group):

data = spark.range(0, 5)

data.write.format("delta").save("<shared location>/delta-table")

df = spark.read.format("delta").load("<shared location>//delta-table")

df.show()

 

This code creates a Delta Lake table, reads from the table, and displays the table. If it run successfully, it displays an empty table without any errors, like this:
image

 

And it's that simple! Enjoy the integration and example.

As always, let us know what you think using our Slack channel!


#SpectrumComputingGroup
#Spectrum-Conductor
0 comments
4 views

Permalink