This is an automated email from the ASF dual-hosted git repository.
tbonelee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push:
new 03c9d16c10 [ZEPPELIN-6498] Fix broken interpreter binding mode link in
interpreter overview docs
03c9d16c10 is described below
commit 03c9d16c10ef76d36c4749ad5d246961ca766c80
Author: Minho Jang <[email protected]>
AuthorDate: Sun Jul 19 15:40:36 2026 +0900
[ZEPPELIN-6498] Fix broken interpreter binding mode link in interpreter
overview docs
### What is this PR for?
This PR fixes a broken relative link in the ConfInterpreter section of the
interpreter overview documentation.
The page previously linked to
`../usage/interpreter/interpreter_bindings_mode.html`, but the actual
interpreter binding mode document is `interpreter_binding_mode.md` and is
published as `interpreter_binding_mode.html`. This updates the link to the
correct relative target
### What type of PR is it?
Documentation
### What is the Jira issue?
* https://issues.apache.org/jira/browse/ZEPPELIN-6498
### How should this be tested?
* Search the file for the broken target:
```
rg -n
"interpreter_bindings_mode|\.\./usage/interpreter/interpreter_binding"
docs/usage/interpreter/overview.md
```
* Confirm `docs/usage/interpreter/interpreter_binding_mode.md` exists.
### Questions:
* Does the license files need to update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No
Closes #5321 from miinhho/docs/fix-broken-interpreter-binding-link.
Signed-off-by: ChanHo Lee <[email protected]>
---
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 5186b9ed5f..fe5cf3bd0b 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_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`).
<img
src="{{BASE_PATH}}/assets/themes/zeppelin/img/screenshots/conf_interpreter.png"
width="600px">