X

Cloudera Tutorials

Optimize your time with detailed tutorials that clearly explain the best way to deploy, use, and manage Cloudera products. Login or register below to access all Cloudera tutorials.

Cloudera named a leader in 2022 Gartner® Magic Quadrant™ for Cloud Database Management Systems Get the report

Ready to Get Started?

 

NOTICE

 

As of January 31, 2021, this tutorial references legacy products that no longer represent Cloudera’s current product offerings.

Please visit recommended tutorials:

 

Introduction

You will build a NiFi DataFlow and package it into a process group to simulate the NextBus API transit feed and check the data generating from the simulator.

sf_ocean_view_route_nifi_streaming

Figure 1: Here is a visualization of the transit data you will be ingesting into NiFi.

Prerequisites

  • Completed the prior tutorials within this tutorial series

Outline

If you prefer to build the dataflow manually step-by-step, continue on to Approach 1. Else if you want to see the NiFi flow in action within minutes, refer to Approach 2.

Approach 1: Build SimulateXmlTransitEvents Process Group

1.1 Create Label for Process Group

1. Go to the components toolbar, drag and drop the Label icon label_icon onto the NiFi canvas.

label_generic

2. Click on the right bottom corner and stretch the label over approximately 24 squares.

stretch_label

3. Right click, select configure and name it Generate Transit Location via Data Seed based on NextBus API. Change the font size to 18px.

label_for_simulatexmltransitevents

Step 1: Create a Process Group

1. Go to the components toolbar, drag and drop the Process Group icon process_group onto the NiFi canvas. Name it SimulateXmlTransitEvents. Press ADD.

SimulateXmlTransitEvents

2. Double click on new process group. At the bottom left corner, breadcrumbs will show you entered SimulateXmlTransitEvents Process Group.

breadcrumb_SimulateXmlTransitEvents

Step 2: Add GetFile to Ingest NextBus Data Seed

1. Add the processor icon processor_nifi_iot onto the graph.

2. Select the GetFile processor and press ADD.

getfile_processor

  • Creates FlowFiles from files in a directory. NiFi will ignore files it doesn’t have read permissions for.

3. Right click on the GetFile processor, click configure from dropdown menu

configure_processor_nifi_iot

4. Enter the Properties tab. Add the properties listed in Table 1 to update the processor's appropriate properties. Press OK after changing a property.

Table 1: Update GetFile Properties Tab

Property Value
Input Directory /sandbox/tutorial-files/640/nifi/input
Keep Source File true
  • Input Directory location at which data is ingested into the dataflow

  • Keep Source File source files in directory remain after all data is ingested

5. Once each property is updated, go to the Scheduling tab, add the configuration information listed in Table 2.

Table 2: Update GetFile Scheduling Tab

Name Value
Run Schedule 6 sec
  • Run Schedule the processor executes a task every 6 seconds

6. Click Apply.

Step 3: Add UnpackContent to Decompress the Zipped Data

1. Add the UnpackContent processor onto the NiFi canvas.

2. Connect GetFile to UnpackContent processor by dragging the arrow icon from the first processor to the next. When the Create Connection window appears, verify success checkbox is checked, else check it. Click Add.

arrow_icon

Figure 2: Arrow Icon Appears When Hovering Over GetFile Processor

drag_arrow_icon_connect

Figure 3: Drag Arrow Icon to Connect two Processors (GetFile -> UnpackContent)

connection_window_checkbox

Figure 4: "Create Connection" Window for GetFile -> "UnpackContent" -> success checkbox checked.

3. Open the UnpackContent processor configuration properties tab. Add the properties listed in Table 3 to update the processor's appropriate properties.

Table 3: Update UnpackContent Properties Tab

Property Value
Packaging Format zip
  • Packaging Format tells the processor of packaging format used to decompress the file

4. Once each property is updated, enter the Scheduling tab, add the configuration information listed in Table 4.

Table 4: Update UnpackContent Scheduling Tab

Name Value
Run Schedule 1 sec
  • Run Schedule the processor executes a task every 1 second and avoids back pressure downstream to the next processor

5. Open the processor config Settings tab, under Auto terminate relationships, check the failure and original checkboxes. Click Apply.

unpackcontent_settings_tab_original_failure

Figure 5: UnpackContent Settings Tab Window

Step 4: Add ControlRate to Regulate Data Flow Speed

1. Add the ControlRate processor onto the NiFi canvas.

2. Connect UnpackContent to ControlRate processor. When the Create Connection window appears, verify success checkbox is checked, else check it. Click Add.

unpackcontent_to_controlrate

Figure 6: Connect UnpackContent to ControlRate

3. Open the processor configuration properties tab. Add the properties listed in Table 5 to update the processor's appropriate properties.

Table 5: Update ControlRate Properties Tab

Property Value
Rate Control Criteria flowfile count
Maximum Rate 20
Time Duration 6 second
  • Rate Control Criteria instructs the processor to count the number of FlowFiles before a transfer takes place

  • Maximum Rate instructs the processor to transfer 20 FlowFiles at a time

  • Time Duration makes it so only 20 FlowFiles will transfer through this processor every 6 seconds.

4. Open the processor config Settings tab, under Auto terminate relationships, check the failure checkbox. Click Apply.

Step 5: Add UpdateAttribute to Make Each FlowFile Name Unique

1. Add the UpdateAttribute processor onto the NiFi canvas.

2. Connect ControlRate to UpdateAttribute. When the Create Connection window appears, verify success checkbox is checked, else check it. Click Add.

controltate_to_updateattribute

Figure 7: Connect ControlRate to UpdateAttribute

3. Add a new dynamic property for NiFi expression, click on the plus button "+" in the top right corner. Insert the following property name and value into your properties tab as shown in the table below:

Table 6: Add UpdateAttribute Properties Tab

Property Value
filename transit-data-${UUID()}.xml

updateattribute_property

Figure 8: UpdateAttribute Property Tab Window

  • filename updates each FlowFile with a unique identifier

4. Click Apply.

Step 6: Add PutFile to Store RawTransitEvents to Disk

1. Add the PutFile processor onto the NiFi canvas.

2. Connect UpdateAttribute to PutFile. When the Create Connection window appears, verify success checkbox is checked, else check it. Click Add.

updateattribute_to_putfile

Figure 9: Connect UpdateAttribute to PutFile

3. Open the processor configuration properties tab. Add the property listed in Table 7 to update the processor's appropriate properties.

Table 7: Update PutFile Properties Tab

Property Value
Directory /sandbox/tutorial-files/640/nifi/output/rawtransitevents

4. Open the processor config Settings tab, under Auto terminate relationships, check the failure and success checkboxes. Click Apply.

Step 7: Add Output Port for External Component Connection

1. Add the Output Port output_port component onto the NiFi canvas. Name it RawTransitEvents.

2. Connect UpdateAttribute to RawTransitEvents output port. When the Create Connection window appears, verify success checkbox is checked, else check it. Click Add.

simulatexmltransitevents_flow

Figure 10: Connect UpdateAttribute to Output Port (RawTransitEvents)

Step 8: Check Data Stored to Local File System Via Web Shell Client

1. With the NiFi DataFlow unselected, hit the start button start_button_nifi_iot located in the Operate Palette to activate the SimulateXmlTransitEvents process group dataflow.

2. Let the flow run for about 1 minute, then stop the flow by hitting the stop button.

3. Launch Sandbox Web Shell Client via Cloudera DataFlow (CDF) Splash Screen from Advanced HDF SB Quick Links Link.

Figure 11: SB Quick Link for Web Shell Client

Note: Username is "root", initial password is "hadoop".

web_shell_client

You have now SSH'd into the CDF Sandbox Server.

4. Navigate to the output directory in which the transit data is being written to:

cd /sandbox/tutorial-files/640/nifi/output/rawtransitevents

5. Run the ls command to list files in the current directory:

ls

6. Run the cat command to output the content of the data file to the console:

cat transit-data-{flowfile-UUID}.xml

check_data_written_to_fs

Figure 12: Output of Transit Data in Web Shell Client

Approach 2: Import NiFi SimulateXmlTransitEvents Process Group

1. Download the tutorial-3-nifi-flow-SimulateXmlTransitEvents.xml template file.

2. Use the template icon nifi_template_icon located in the Operate Palette.

3. Browse, find the template file, click Open and hit Upload.

4. From the Components Toolbar, drag the template icon nifi_template_icon onto the graph and select the tutorial-3-nifi-flow-SimulateXmlTransitEvents.xml template file.

5. Right click on the process group, hit the start button start_button_nifi to activate the dataflow.

run_dataflow_lab1_nifi_learn_ropes

Figure 13: NiFi Flow that pulls in San Francisco Muni Transit Events from the XML Simulator, stores the raw transit events to the local file system and also sends the data out to the rest of the flow through the output port.

The building blocks of every dataflow consist of processors. When sections of the flow become complex, you can start grouping processors inside process groups. These tools perform actions on data to ingest, route, extract, split, aggregate or store it. Our dataflow process group above contains processors, each processor includes a high level description of their role in the tutorial:

  • SimulateXmlTransitEvents (Process Group)
    • GetFile fetches the vehicle location simulator data for files in a directory.
    • UnpackContent decompresses the contents of FlowFiles from the traffic simulator zip file.
    • ControlRate controls the rate at which FlowFiles are transferred to follow-on processors enabling traffic simulation.
    • UpdateAttribute renames every FlowFile to give them unique names
    • PutFile stores data to local file system
    • Output Port makes the connection for the process group to connect to other components (process groups, processors, etc)

Refer to NiFi's Documentation to learn more about each processor described above.

Summary

Congratulations! You just built a NiFi SimulateXmlTransitEvents process group to replicate the NextBus API, which generates transit data for passengers. You learned to use GetFile processor to ingest the transit data seed. The UnpackContent processor decompressed the transit data seed zip file and routed the data onto the rest of the flow. ControlRate processor controlled the rate at which each FlowFile was distributed to the remaining components of the flow. The Output Port allows for FlowFiles to be dispersed to the next process group you will learn to build in the next tutorial called ParseTransitEvents.

Further Reading



Your form submission has failed.

This may have been caused by one of the following:

  • Your request timed out
  • A plugin/browser extension blocked the submission. If you have an ad blocking plugin please disable it and close this message to reload the page.