kkbankol-ibm / db2-event-store-iot-analytics

IoT sensor temperature analysis and prediction with IBM Db2 Event Store

Home Page:https://developer.ibm.com/patterns/iot-sensor-temperature-analysis-with-ibm-db2-event-store/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Analyze IoT sensor data with machine learning and advanced analytics

This code pattern demonstrates the use of Jupyter notebooks to interact with IBM Db2 Event Store -- from the creation of database objects to advanced analytics and machine learning model development and deployment.

The sample data used in this code pattern simulates data collected by real industry IoT sensors. The IoT sample data includes sensor temperature, ambient temperature, power consumption, and timestamp for a group of sensors identified with unique sensor IDs and device IDs. A simple IBM Streams flow is used to stream the sample data from a CSV file to an Event Store table.

Db2 Event Store is an in-memory database designed for massive structured data volumes and real-time analytics, built on Apache Spark and Apache Parquet Data Format. The solution is optimized for event-driven data processing and analysis. It can support emerging applications that are driven by events such as IoT solutions, payments, logistics and web commerce. It is flexible, scalable and can adapt quickly to your changing business needs over time. Db2 Event Store is available in a free developer edition and an enterprise edition that you can download now. The enterprise edition is free for pre-production and test, please visit the official product webpage for more information.

Note: Db2 Event Store is built with IBM Watson Studio

After completing this code pattern, you’ll understand how to:

  • Interact with Db2 Event Store using Python and a Jupyter notebook.
  • Use IBM Streams to feed data into Db2 Event Store.
  • Visualize data using Matplotlib charts.
  • Build and test a machine learning model.
  • Deploy and use the model with Watson Machine Learning.

architecture

Flow

  1. Create the Db2 Event Store database and table.
  2. Feed the sample IoT dataset into Db2 Event Store.
  3. Query the table using Spark SQL.
  4. Analyze the data with Matplotlib charts.
  5. Create and deploy a machine learning model.

Running Db2 EventStore in Cloud Pak for Data (CPD)

If you have a Cloud Pak for Data instance deployed, please follow the Cloud Pak Readme to run Db2 EventStore in CPD. Otherwise, continue with the following steps to deploy the components locally.

Steps

  1. Clone the repo
  2. Install the prerequisites
  3. Create an IBM Db2 Event Store database and table
  4. Add the sample IoT data
  5. Query the table
  6. Analyze the data
  7. Create and deploy a machine learning model

1. Clone the repo

Clone the db2-event-store-iot-analytics repo locally. In a terminal, run:

git clone https://github.com/IBM/db2-event-store-iot-analytics

2. Install the prerequisites

Install Event Store

Note: This code pattern was developed with EventStore-DeveloperEdition 1.1.4

  1. Install IBM® Db2® Event Store Developer Edition on Mac, Linux, or Windows by following the instructions here.

Install IBM Streams

Note: This is optional if you prefer to use the provided Jupyter notebook to load the data.

  1. Install the Quick Start Edition(QSE) Docker image for IBM Streams 4.3.1 by following the instructions here.

  2. Download the toolkit for Event Store Developer Edition 1.1.4 here.

  3. Extract the contents of the toolkit. For example, you can make a toolkits directory in the hostdir that you mapped to a local dir when installing the Quick Start Edition and extract the files into that directory.

    mkdir $HOME/hostdir/toolkits
    tar -zxvf  streamsx.eventstore_1.2.0-RELEASE.tgz -C $HOME/hostdir/toolkits/

3. Create an IBM Db2 Event Store database and table

The Db2 Event Store database and table can be created with one of the Jupyter notebooks provided. Refer to the notebook comments if you need to drop your existing database or table.

Use the Db2 Event Store UI to create and run a notebook as follows:

  1. From the upper-left corner drop down menu, select My Notebooks.
  2. Click on add notebooks.
  3. Select the From File tab.
  4. Provide a name.
  5. Click Choose File and navigate to the notebooks directory in your cloned repo. Open the Jupyter notebook file named Event_Store_Table_Creation.ipynb.
  6. Scroll down and click on Create Notebook.
  7. Edit the HOST constant in the first code cell. You will need to enter your host's IP address here.
  8. Run the notebook using the menu Cell ▷ Run all or run the cells individually with the play button.

4. Add the sample IoT data

Generate the data

This repository includes a generated sample IoT dataset in CSV format that contains 1 million records. The sample CSV dataset can be found at data/sample_IOT_table.csv.

Alternatively, a CSV dataset containing a user-specified number of records can be generated with the provided Python script at data/generator.py. A Python environment with pandas and NumPy installed is required to run the script.

cd db2-event-store-iot-analytics/data
python ./generator.py -c <Record Count>

Stream the data into Event Store

If you have installed IBM Streams, use a streams flow to feed the sample data into Event Store. Otherwise, a data feed notebook has been provided as a shortcut.

Click to expand the data feed instructions for IBM Streams or for the Jupyter notebook. Choose one:

Use an IBM Streams flow

  1. Use VNC to connect to your IBM Streams QSE at vnc://streamsqse.localdomain:5905

    Tip: On macOS, you can use Finder's menu: Go ▷ Connect to Server... and connect to vnc://streamsqse.localdomain:5905, and then in your session use Applications ▷ System Tools ▷ Settings ▷ Devices ▷ Displays to set the display Resolution to 1280 x 1024 (5:4).

    connect_to_server.png

  2. Launch Streams Studio

    streams_studio.png

  3. Create a new project

    • Select a workspace

    • If prompted to "Add Streams Domain connection", use the Find domain... button to select streamsqse.localdomain.

    • Use the upper-left pulldown to create a new project. When prompted to Select a wizard, use IBM Streams Studio ▷ SPL Project, hit Next, provide a name, and hit Finish.

  4. Replace the Event Store toolkit

    • Using the Project Explorer tab, expand your new project, right-click on Dependencies and select Edit Dependencies. Remove com.ibm.streamsx.eventstore version 2.0.3. This is a newer version that does not work with our 1.1.4 Developer Edition of Event Store.

    • Using the Streams Explorer tab, expand IBM Streams Installations and IBM Streams to show Toolkit Locations. Right-click and select Add Toolkit Location.... Use the Directory... button and add the /home/streamsadmin/hostdir/toolkits directory (where you extracted the the streamsx.eventstore_1.2.0-RELEASE.tgz toolkit).

    • Back in the Project Explorer tab, right-click on Dependencies and select Edit Dependencies, Add, and Browse. Select com.ibm.streamsx.eventstore 1.2.0 and hit OK. Now we are using the downloaded version that works with our 1.1.4 Developer Edition and ignoring the newer version.

      add_toolkit_location.png

  5. Create your file source

    • Copy the data/sample_IOT_table.csv file from your cloned repo to your hostdir.

    • In the Project Explorer tab, right-click on your project and select New ▷ Main Composite and create a default Main.spl.

      main_composite.png

    • Using the SPL Graphical Editor for Main.spl, drag-and-drop the Toolkits ▷ spl ▷ spl.adapter ▷ FileSource ▷ FileSource into the Main box.

      file_source.png

    • Double-click the FileSource box, select Param in the left sidebar, and edit the value to set it to "/users/streamsadmin/hostdir/sample_IOT_table.csv" (where you put the data file). Add a format parameter and set the value to csv.

      file_source_params.png

    • Select Output Ports in the left sidebar. Remove the <extends> row. Click on Add attribute.... Add attributes and types to create an output stream schema matching the contents of the CSV file and the Event Store table. The attribute names here don't matter, but the types do. Follow the example below.

      output_stream_schema.png

    • Close and save the FileSource properties.

  6. Create your Event Store Sink

    • Using the SPL Graphical Editor for Main.spl, drag-and-drop the Toolkits ▷ com.ibm.streamx.eventstore ▷ com.ibm.streamx.eventstore ▷ EventStoreSink into the Main box (be sure to grab the 1.2.0 version).

    • Use your mouse and drag from FileSource output tab to the EventStoreSink input tab.

      connected.png

    • Double-click the EventStoreSink box, select Param in the left sidebar, and edit the values to set the connectionString, databaseName and tableName as shown below (but substitute your own Event Store IP address). Close and save.

      event_store_params.png

  7. Launch

    • Save all your changes and let the build finish.

    • Right-click on your application (Main) and Launch ▷ Launch Active Build Config as Standalone.

      launch_standalone.png

Use the Jupyter notebook to load the data

Use the Db2 Event Store UI to add the CSV input file as a data asset.

  1. From the upper-left corner drop down menu, select My Notebooks.

    go_to_my_notebooks

  2. Scroll down and click on add data assets.

    add_to_my_notebooks

  3. Click browse and navigate to the data directory in your cloned repo. Open the file sample_IOT_table.csv.

    data_assets

Follow the same process as above to add and run a notebook. This time choose the file named Event_Store_Data_Feed.ipynb.

The notebook loads the table with one million records from the CSV file that you added as a project asset.

5. Query the table

Follow the same process to add and run a notebook. This time choose the file named Event_Store_Querying.ipynb.

This notebook demonstrates best practices for querying the data stored in the IBM Db2 Event Store database. Verify that you have successfully created and loaded the table before continuing.

6. Analyze the data

Next, run the data analytics notebook. Use the file Event_Store_Data_Analytics.ipynb.

This notebook shows how the IBM Db2 Event Store can be integrated with multiple popular scientific tools to perform various data analytics tasks. As you walk through the notebook, you'll explore the data to filter it and example the correlation and covariance of the measurements. You'll also use some charts to visualize the data.

Probability plots, box plots, and histograms for temperature data

plots

Scatter plots to show the relationship between measurements

scatters

7. Create and deploy a machine learning model

This section demonstrates building and deploying a machine learning model. The notebook uses Spark MLlib to build and test a prediction model from our IoT temperature sensor data. At the end, it demonstrates how to deploy and use the model.

Load the notebook, using the file Event_Store_ML_Model_Deployment.ipynb.

If you are using the Enterprise Edition of Db2 Event Store, the notebook will deploy the model using Db2 Event Store which is built with Watson Studio Local. You can run the notebook as is.

If you are using the Developer Edition of Db2 Event Store, you need an IBM Cloud Watson Machine Learning service instance to complete the deployment. You'll need to run the following steps to deploy:

  • Sign in and create the service here.
  • Create an API key or IAM token using the instructions here. Keep this key/token handy for the next step.
  • Scroll down to the section titled With Db2 Event Store Developer Edition plus Machine Learning on IBM Cloud, save the model with metadata. Set your apikey and url in the wml_credentials section like so
wml_credentials = {
  "url": "https://us-south.ml.cloud.ibm.com",
  "apikey": "<apikey>"
}

wml_creds

  • The notebook will pip install watson-machine-learning-client. After the install, you usually need to restart your kernel and run the notebook again from the top.

Once the model is built and deployed, you can easily send it a new measurement and get a predicted temperature (one at a time or in batches).

Given a new data point

new_data = {"deviceID" : 2, "sensorID": 24, "ts": 1541430459386, "ambient_temp": 30, "power": 10}

The result returns a predicted temperature

predictions:  [48.98055760884435]

Sample output

See all the notebooks with example output here.

License

This code pattern is licensed under the Apache License, Version 2. Separate third-party code objects invoked within this code pattern are licensed by their respective providers pursuant to their own separate licenses. Contributions are subject to the Developer Certificate of Origin, Version 1.1 and the Apache License, Version 2.

Apache License FAQ

About

IoT sensor temperature analysis and prediction with IBM Db2 Event Store

https://developer.ibm.com/patterns/iot-sensor-temperature-analysis-with-ibm-db2-event-store/

License:Apache License 2.0


Languages

Language:Jupyter Notebook 99.1%Language:Python 0.9%