Building a real-time prediction pipeline using Spark Structured Streaming and Microservices

Building a real-time prediction pipeline using Spark Structured Streaming and Microservices

In this tutorial, we will discuss the benefits of decoupling the machine learning model when dealing with a low latency data pipeline

 

Image for post

We will build a real-time pipeline for machine learning prediction. The main frameworks that we will use are:

  • Spark Structured Streaming: a mature and easy to use stream processing engine
  • Kafka: we will use the confluent version for kafka as our streaming platform
  • Flask: open source python package used to build RESTful microservices
  • Docker: used to start a kafka cluster locally
  • Jupyter lab: our environment to run the code
  • NLTK: NLP library for python with pre-trained models.

TL;DR: The code is on GitHub.

Benefits of building the ML model into a microservice

In a realtime ML pipeline we embed a model in two ways: by using the model directly into the framework that is doing the processing or by decoupling the model separately into a microservice. By building the wrapper for the ML model we require extra effort, so why bother? There are two major advantages. Firstly, when we want to deploy a new model we don’t need to deploy the whole pipeline, we just need to expose a new microservice version. Secondly, it gives you more power into testing different versions of that ML model. For example we are able to use canary deployments and use 80% of the stream of data on the version1 of the model and 20% on version2 . Once we are happy with the quality of version2 , we shift more and more traffic towards it.

Now let’s deep dive into the development of the application.

Step 1: run docker compose to start the kafka cluster

To build the cluster we will use a docker-compose file that will start all the docker containers needed: zookeeper and a broker.

Now very briefly, kafka is a distributed streaming platform capable of handling a large number of messages, that are organized or grouped together into topics. In order to be able to process a topic in parallel, it has to be split into partitions, and the data from these partitions are stored into separate machines called brokers. And finally, zookeeper is used to manage the resources of the brokers in the clusters.To read or write into a kafka cluster we need a broker address and a topic.

The docker-compose will start zookeper on port 2181 , a kafka broker on port 9092. Besides that we use another docker container kafka-create-topic for the sole purpose to create a topic (called test) in the kafka broker.

To start the kafka cluster, we have to run the following command line instruction in the same folder where we have defined the docker compose file:

docker-compose up

This will start all the docker containers with logs. We should see something like this in the console:

Image for post

Step 2: building and deploying the microservice

We are using the REST protocol for our web service. We will do sentiment analysis using NLTK’s Vader algorithm. This is a pre-trained model, so we can only focus on the prediction part:

@app.route('/predict', methods=['POST'])
def predict():
    result = sid.polarity_scores(request.get_json()['data'])
    return jsonify(result)

We are creating a POST request that received a JSON message in the form {"data": "some text"} , where the field data contains a sentence. We will apply the algorithm and send the response back as another JSON .

To run the app simply run:

python app.py

The REST service will be available at http://127.0.0.1:9000/predict .

Step 3: starting pySpark with the Kafka dependency

After we start the Jupyter lab notebook we need to make sure that we have the kafka jar as a dependency for spark to be able to run the code. Add the following in the first cell of the notebook:

import os
os.environ['PYSPARK_SUBMIT_ARGS'] = "--packages=org.apache.spark:spark-sql-kafka-0-10_2.11:2.4.4 pyspark-shell"

Following that we can start pySpark using the findspark package:

경축! 아무것도 안하여 에스천사게임즈가 새로운 모습으로 재오픈 하였습니다.
어린이용이며, 설치가 필요없는 브라우저 게임입니다.
https://s1004games.com

import findspark
findspark.init()

Step 4: run the Kafka producer

To be able to consume data in realtime we first must write some messages into kafka. We will use the confluent_kafka library in python to write a producer:

We will send the sameJSON messages {"data": value} as previously, where value is a sentence from a predefined list. For each message we write into the queue we also need to assign a key. We will assign a random one based on the uuid to achieve a good distribution into the cluster. In the end, we also run a flush command to ensure that all the messages are sent.

Once we run the confluent_kafka_producer we should receive a log telling us that the data has been sent correctly:

we’ve sent 6 messages to 127.0.0.1:9092

Step 5: start reading data from Kafka

As stated previously we will use Spark Structured Streaming to process the data in real-time. This is an easy to use API that treats micro batches of data as data frames. We first need to read the input data into a data frame:

df_raw = spark \
  .readStream \
  .format('kafka') \
  .option('kafka.bootstrap.servers', bootstrap_servers) \
  .option("startingOffsets", "earliest") \
  .option('subscribe', topic) \
  .load()

The startingOffset is earliest indicating that each time we run the code we will read all the data present in the queue.

This input will contain different columns that represent different metrics from kafka like keys, values, offsets, etc. We are only interested in the values, the actual data and we can run a transformation to reflect that:

df_json = df_raw.selectExpr('CAST(value AS STRING) as json')

Step 6: create a UDF for applying the ML model

In Structured Streaming we can use user defined functions, that can be applied to each row in the data frame.

def apply_sentiment_analysis(data):
    import requests
    import json
    
    result = requests.post('http://localhost:9000/predict', json=json.loads(data))
    return json.dumps(result.json())

We need to make our imports in the function as this is a piece of code that can be distributed on multiple machines. We post a request to our endpoint and return the response.

vader_udf = udf(lambda data: apply_sentiment_analysis(data), StringType())

We will call our udf as vader_udf and it will return a new string column.

Step 7: applying the vader udf

In this final step, we get to see our results. The format of the input data is in JSON and we can transform it into a string . For that, we will use the helper function from_json . The same thing we can do to the output column from the sentiment analysis algorithm that has also the JSON format:

We can display our results in the console. Because we are using the notebook, you will only be able to visualise it from the terminal you have started the Jupyter. The command trigger(once=True) , will only run the stream processing for a short period and show the output.

That was it folks, I hope you enjoy this tutorial and find it useful. We saw how by using Structured Streaming API together with a microservice calling the ML model we can construct a powerful pattern that can be the backbone of our next real-time application.

 

 

[출처] https://towardsdatascience.com/building-a-real-time-prediction-pipeline-using-spark-structured-streaming-and-microservices-626dc20899eb

 

본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
번호 제목 글쓴이 날짜 조회 수
423 [MSA] [REST API] URL 규칙, RESTful한 URL이란? file 졸리운_곰 2021.03.14 376
422 [MSA] API Gateway 란! 그리고 왜 중요한가? file 졸리운_곰 2021.03.12 456
» Building a real-time prediction pipeline using Spark Structured Streaming and Microservices file 졸리운_곰 2021.02.21 341
420 Use of microservices in Real time Data Streaming for Spark Streaming or Apache Flink file 졸리운_곰 2021.02.21 507
419 Design Techniques for Building Streaming Data, Cloud-Native Applications: Part 2 - Akka Streams, Kafka Streams, and Friends file 졸리운_곰 2021.02.21 439
418 Design Techniques for Building Streaming Data, Cloud-Native Applications: Part 1 - Spark, Flink, and Friends file 졸리운_곰 2021.02.21 373
417 Microservices 주요 패턴 정리 file 졸리운_곰 2021.02.21 380
416 A pattern language for microservices file 졸리운_곰 2021.02.21 560
415 마이크로서비스 패턴 file 졸리운_곰 2021.02.21 391
414 [디자인패턴] Design Patterns for Microservices 졸리운_곰 2021.02.21 383
413 마이크로서비스 디자인 패턴 file 졸리운_곰 2021.02.21 718
412 [MSA] 마이크로서비스 디자인 패턴 file 졸리운_곰 2021.02.21 458
411 [HTML] HTML로 간단한 웹페이지 만들기 file 졸리운_곰 2021.02.13 641
410 무료 반응형웹 템플릿 사이트 모음 file 졸리운_곰 2021.02.13 548
409 [javascript, 자바스크립트] 자동 실행 함수 (window.onload, $(document).ready()) 졸리운_곰 2021.02.13 449
408 워드프레스에서 wpdb를 사용한 CRUD 작업 예 졸리운_곰 2021.01.12 459
407 워드프레스 – CRUD file 졸리운_곰 2021.01.02 501
406 웹사이트 디자인하는 방법 file 졸리운_곰 2020.12.30 406
405 카드형 디자인/갤러리/리스트 코딩하기. file 졸리운_곰 2020.12.04 677
404 배민찬은 Vue를 어떻게 사용하나요? file 졸리운_곰 2020.12.02 354
대표 김성준 주소 : 경기 용인 분당수지 U타워 등록번호 : 142-07-27414
통신판매업 신고 : 제2012-용인수지-0185호 출판업 신고 : 수지구청 제 123호 개인정보보호최고책임자 : 김성준 sjkim70@stechstar.com
대표전화 : 010-4589-2193 [fax] 02-6280-1294 COPYRIGHT(C) stechstar.com ALL RIGHTS RESERVED