-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.ini
80 lines (48 loc) · 2.06 KB
/
config.ini
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[Paths]
# Input directory, where Spark execution logs are stored
input_path = logs
# Output directory, where SparkCAD stores the execution DAG of each application/log as .dot, .json and .pdf files
output_path = Spark-DAGs
[Output]
# Could be pdf, png or json
selected_format = pdf
view_after_render = true
[Drawing]
# If the number of iterations is huge then the graph readability will be poor. To avoid this, users can determine the maximum amount of iterations the tool shall generate
max_iterations_count = 100
# Alternatives could be founded in https://graphviz.org/doc/info/shapes.html
iterative_action_shape = doublecircle
# Alternatives could be founded in https://graphviz.org/doc/info/colors.html
iterative_action_collor = deepskyblue4
# Alternatives could be founded in https://graphviz.org/doc/info/shapes.html
rdd_shape = cylinder
# Alternatives could be founded in https://graphviz.org/doc/info/shapes.html
anomaly_shape = cylinder
# Alternatives could be founded in https://graphviz.org/doc/info/shapes.html
action_shape = circle
# Alternatives could be founded in https://graphviz.org/doc/info/colors.html
action_bg_collor = lightblue
# Alternatives could be founded in https://graphviz.org/doc/info/colors.html
narrow_transformation_color = black
# Alternatives could be founded in https://graphviz.org/doc/info/colors.html
wide_transformation_color = red
# Alternatives could be founded in https://graphviz.org/doc/info/colors.html
cached_rdd_bg_color = green
show_rdd_id = true
show_rdd_name = false
rdd_name_max_number_of_chars = 200
show_action_id = true
show_action_name = false
action_name_max_number_of_chars = 10
[Caching_Anomalies]
show_number_of_rdd_computations = false
# How many time an RDD is called
show_number_of_rdd_usage = false
highlight_recomputed_rdds = true
rdds_computation_tolerance_threshold = 1
highlight_unneeded_cached_rdds = true
# Alternatives could be founded in https://graphviz.org/doc/info/colors.html
highlight_color = crimson
show_caching_plan = true
include_caching_anomalies_in_caching_plan = true
show_memory_footprint = true