-
Notifications
You must be signed in to change notification settings - Fork 62
/
batch_file_to_pravega.py
46 lines (39 loc) · 1.13 KB
/
batch_file_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
36
37
38
39
40
41
42
43
44
45
46
# 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
filename = "sample_data.json"
spark = (SparkSession
.builder
.getOrCreate()
)
df = (spark
.read
.format("json")
.load(filename)
.selectExpr(
"to_json(struct(*)) as event", # Re-encode all the fields as a JSON string
"key as routing_key" # Optional routing key
)
)
df.show(20, truncate=False)
(df
.write
.mode("append")
.format("pravega")
.option("allow_create_scope", allowCreateScope)
.option("controller", controller)
.option("scope", scope)
.option("stream", "batchstream1")
.option("default_num_segments", "5")
.save()
)
print("Done.")