-
Notifications
You must be signed in to change notification settings - Fork 62
/
stream_pravega_to_console.py
41 lines (37 loc) · 1.32 KB
/
stream_pravega_to_console.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright (c) Dell Inc., or its subsidiaries. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
from pyspark.sql import SparkSession
import os
controller = os.getenv("PRAVEGA_CONTROLLER_URI", "tcp://127.0.0.1:9090")
scope = os.getenv("PRAVEGA_SCOPE", "examples")
allowCreateScope = os.getenv("PROJECT_NAME") is None
checkPointLocation = os.getenv("CHECKPOINT_DIR", "/tmp/spark-checkpoints-stream_pravega_to_console")
spark = (SparkSession
.builder
.getOrCreate()
)
(spark
.readStream
.format("pravega")
.option("allow_create_scope", allowCreateScope)
.option("controller", controller)
.option("scope", scope)
.option("stream", "streamprocessing1")
# If there is no checkpoint, start at the earliest event.
.option("start_stream_cut", "earliest")
.load()
.selectExpr("cast(event as string)", "scope", "stream", "segment_id", "offset")
.writeStream
.trigger(processingTime="3 seconds")
.outputMode("append")
.format("console")
.option("truncate", "false")
.option("checkpointLocation", checkPointLocation)
.start()
.awaitTermination()
)