You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By setting up port forwarding on 18080 the UI can be opened by pointing your browser to `http://localhost:18080`:
66
66
67
67
image::history-server-ui.png[History Server Console]
68
+
69
+
== Configuration Properties
70
+
71
+
For a role group of the Spark history server, you can specify: `configOverrides` for the following files:
72
+
73
+
- `security.properties`
74
+
75
+
=== The security.properties file
76
+
77
+
The `security.properties` file is used to configure JVM security properties. It is very seldom that users need to tweak any of these, but there is one use-case that stands out, and that users need to be aware of: the JVM DNS cache.
78
+
79
+
The JVM manages it's own cache of successfully resolved host names as well as a cache of host names that cannot be resolved. Some products of the Stackable platform are very sensible to the contents of these caches and their performance is heavily affected by them. As of version 3.4.0, Apache Spark may perform poorly if the positive cache is disabled. To cache resolved host names, and thus speeding up queries you can configure the TTL of entries in the positive cache like this:
80
+
81
+
[source,yaml]
82
+
----
83
+
nodes:
84
+
configOverrides:
85
+
security.properties:
86
+
networkaddress.cache.ttl: "30"
87
+
networkaddress.cache.negative.ttl: "0"
88
+
----
89
+
90
+
NOTE: The operator configures DNS caching by default as shown in the example above.
91
+
92
+
For details on the JVM security see https://docs.oracle.com/en/java/javase/11/security/java-security-overview1.html
0 commit comments