DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Why Queues Don’t Fix Scaling Problems
  • Resilient Kafka Consumers With Reactor Kafka
  • Integration Patterns in Microservices World
  • The Phantom Write Problem: Why Your Idempotency Implementation Is Silently Losing Data

Trending

  • The ORM Is Over: AI-Written SQL Is the New Data Access Layer
  • The Agent Protocol Stack: MCP vs. A2A vs. AG-UI
  • S3 Vectors: How to Build a RAG Without a Vector Database
  • From APIs to Actions: Rethinking Back-End Design for Agents
  1. DZone
  2. Coding
  3. Tools
  4. Advanced XML Processing With Apache NiFi 1.9.1

Advanced XML Processing With Apache NiFi 1.9.1

In this post, we'll be using Apache NiFi to simply process very complex XML and RSS data files.

By 
Tim Spann user avatar
Tim Spann
DZone Core CORE ·
Apr. 02, 19 · Tutorial
Likes (7)
Comment
Save
Tweet
Share
20.5K Views

Join the DZone community and get the full member experience.

Join For Free

Advanced XML Processing With Apache NiFi 1.9.1

With the latest version of Apache NiFi, you can now directly convert XML to JSON or Apache AVRO, CSV, or any other format supported by RecordWriters. This is a great advancement. To make it even easier, you don't even need to know the schema beforehand. There is a built-in option to Infer Schema.

The results of an RSS (XML) feed converted to JSON and displayed in a slack channel.

Besides just RSS feeds, we can grab regular XML data including XML data that is wrapped in a Zip file (or even in a Zipfile in an email, SFTP server or Google Docs).

Get the Hourly Weather Observations for the United States

Decompress That Zip

Unpack That Zip into Files

One ZIP becomes many XML files of data.

An example XML record from an NOAA weather station.

Converted to JSON Automagically

Let's Read Those Records With A Query and Convert the results to JSON Records

Read RSS Feed of Travel Warnings

In this one simple example, we are ingesting all of the observed weather from all observation stations in the United States via one downloaded ZIP file containing all of the hourly XMLs. Apache NiFi can easily acquire this file, decompress it, and unpack the files from the zip. We can then convert all of them as records by inferring their schema and building new records in the output format of our choice. We can then pull apart values we need or push this new cleaned format to one or more storage options including HBase, HDFS, Hive, SQL Database, MongoDB, or elsewhere. We can also send this data on via Apache Kafka to a streaming engine such as Kafka Streams or Spark Structured Streaming for more processing or joining with other datasets.


QueryRecord is allowing us to write a SQL query such as SELECT * FROM FLOWFILE reading XML records and producing JSON records as a result. We can change fields or add things like SUMs and AVGs.

References

  • Hourly Update: https://w1.weather.gov/xml/current_obs/all_xml.zip
  • https://pierrevillard.com/2017/09/07/xml-data-processing-with-apache-nifi/
  • https://community.hortonworks.com/articles/199310/xml-record-writer-in-apache-nifi-170.html
  • https://community.hortonworks.com/articles/115311/convert-csv-to-json-avro-xml-using-convertrecord-p.html
  • https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-record-serialization-services-nar/1.9.1/org.apache.nifi.xml.XMLReader/index.html
  • https://pierrevillard.com/2018/06/28/nifi-1-7-xml-reader-writer-and-forkrecord-processor/
  • https://w1.weather.gov/xml/current_obs/KTTN.xml
XML Apache NiFi Database file IO Processing kafka

Opinions expressed by DZone contributors are their own.

Related

  • Why Queues Don’t Fix Scaling Problems
  • Resilient Kafka Consumers With Reactor Kafka
  • Integration Patterns in Microservices World
  • The Phantom Write Problem: Why Your Idempotency Implementation Is Silently Losing Data

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook