From 9733de9452e699dfec655690b60b9c68463cf797 Mon Sep 17 00:00:00 2001 From: miinhho Date: Sun, 19 Jul 2026 15:18:12 +0900 Subject: [PATCH 1/2] [ZEPPELIN-6498] Fix interpreter binding mode documentation link --- docs/usage/interpreter/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/interpreter/overview.md b/docs/usage/interpreter/overview.md index 5186b9ed5f8..e58d163ff50 100644 --- a/docs/usage/interpreter/overview.md +++ b/docs/usage/interpreter/overview.md @@ -123,7 +123,7 @@ This approach works, but is not convenient. Inline generic configuration can pro `ConfInterpreter` is a generic interpreter that can be used by any interpreter. You can use it just like defining a java property file. It can be used to make custom settings for any interpreter. However, `ConfInterpreter` needs to run before that interpreter process is launched. When that interpreter process is launched is determined by the interpreter binding mode setting. -So users need to understand the [interpreter binding mode setting](../usage/interpreter/interpreter_bindings_mode.html) of Zeppelin and be aware of when the interpreter process is launched. E.g., if we set the Spark interpreter setting as isolated per note, then under this setting, each note will launch one interpreter process. +So users need to understand the [interpreter binding mode setting](./interpreter_bindings_mode.html) of Zeppelin and be aware of when the interpreter process is launched. E.g., if we set the Spark interpreter setting as isolated per note, then under this setting, each note will launch one interpreter process. In this scenario, users need to put `ConfInterpreter` as the first paragraph as in the below example. Otherwise, the customized setting cannot be applied (actually it would report `ERROR`). From 569b907bb561009f12d78b9e70b502d17f9de12e Mon Sep 17 00:00:00 2001 From: miinhho Date: Sun, 19 Jul 2026 15:32:58 +0900 Subject: [PATCH 2/2] [ZEPPELIN-6498] Remove extra s --- docs/usage/interpreter/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/interpreter/overview.md b/docs/usage/interpreter/overview.md index e58d163ff50..fe5cf3bd0b9 100644 --- a/docs/usage/interpreter/overview.md +++ b/docs/usage/interpreter/overview.md @@ -123,7 +123,7 @@ This approach works, but is not convenient. Inline generic configuration can pro `ConfInterpreter` is a generic interpreter that can be used by any interpreter. You can use it just like defining a java property file. It can be used to make custom settings for any interpreter. However, `ConfInterpreter` needs to run before that interpreter process is launched. When that interpreter process is launched is determined by the interpreter binding mode setting. -So users need to understand the [interpreter binding mode setting](./interpreter_bindings_mode.html) of Zeppelin and be aware of when the interpreter process is launched. E.g., if we set the Spark interpreter setting as isolated per note, then under this setting, each note will launch one interpreter process. +So users need to understand the [interpreter binding mode setting](./interpreter_binding_mode.html) of Zeppelin and be aware of when the interpreter process is launched. E.g., if we set the Spark interpreter setting as isolated per note, then under this setting, each note will launch one interpreter process. In this scenario, users need to put `ConfInterpreter` as the first paragraph as in the below example. Otherwise, the customized setting cannot be applied (actually it would report `ERROR`).