Skip to Content
Industrial Internet Application Development
book

Industrial Internet Application Development

by Alena Traukina, Jayant Thomas, Prashant Tyagi, Veera Kishore Reddipalli
September 2018
Intermediate to advanced
412 pages
11h 12m
English
Packt Publishing
Content preview from Industrial Internet Application Development

Developing the streaming analytics

Spark is a microbatch-based streaming engine that processes the data in batches. In the following example, it is configured to process the batch data acquired within one second. If the data points are ingested at a rate of 100 ms, then within one second, 10 data points can be accumulated by the time the batch is processed.

Creating a streaming context using spark API:

sc = SparkContext(appName="IIoTSparkStreamingApp")ssc = StreamingContext(sc, Seconds(1))

Configure the Kafka brokers and topic to listen for the input stream:

brokers = “localhost:9092”topic = “test”

Create a direct stream for the input stream data:

message = KafkaUtils.createDirectStream(ssc, [topic], {"metadata.broker.list": brokers})

Transform ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Hands-On Industrial Internet of Things

Hands-On Industrial Internet of Things

Giacomo Veneri, Antonio Capasso
What Employees Want Most in Uncertain Times

What Employees Want Most in Uncertain Times

Kristine W. Powers, Jessica B.B. Diaz

Publisher Resources

ISBN: 9781788298599Supplemental Content