forked from pravega/pravega-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstream_generated_data_to_pravega.py
35 lines (31 loc) · 1.03 KB
/
stream_generated_data_to_pravega.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
# 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", "tcp://127.0.0.1:9090")
scope = os.getenv("PRAVEGA_SCOPE", "examples")
spark = (SparkSession
.builder
.getOrCreate()
)
(spark
.readStream
.format("rate")
.load()
.selectExpr("cast(timestamp as string) as event", "cast(value as string) as routing_key")
.writeStream
.trigger(processingTime="3 seconds")
.outputMode("append")
.format("pravega")
.option("controller", controller)
.option("scope", scope)
.option("stream", "streamprocessing1")
.option("checkpointLocation", "/tmp/spark-checkpoints-stream_generated_data_to_pravega")
.start()
.awaitTermination()
)