dnskr opened a new pull request, #6530:
URL: https://github.com/apache/kyuubi/pull/6530

   # :mag: Description
   ## Issue References ๐Ÿ”—
   
   This pull request fixes https://github.com/apache/kyuubi/issues/6523
   
   ## Describe Your Solution ๐Ÿ”ง
   
   `KyuubiServer` respects configuration properties provided as `--conf` cli 
options with highest priority.
   
   
   ## Types of changes :bookmark:
   <!--- What types of changes does your code introduce? Put an `x` in all the 
boxes that apply: -->
   - [ ] Bugfix (non-breaking change which fixes an issue)
   - [x] New feature (non-breaking change which adds functionality)
   - [ ] Breaking change (fix or feature that would cause existing 
functionality to change)
   
   ## Test Plan ๐Ÿงช
   
   #### Behavior Without This Pull Request :coffin:
   REST endpoint starts at `10099` port:
   ```shell
   bin/kyuubi run --conf kyuubi.frontend.rest.bind.port=9999
   ...
   2024-07-10 17:57:24.998 INFO main 
org.apache.kyuubi.server.KyuubiRestFrontendService: 
Service[KyuubiRestFrontendService] is started.
   2024-07-10 17:57:24.999 INFO main 
org.apache.kyuubi.server.KyuubiRestFrontendService: Exposing REST endpoint at: 
http://0.0.0.0:10099
   2024-07-10 17:57:24.999 INFO main org.apache.kyuubi.server.KyuubiServer: 
Service[KyuubiServer] is started.
   ```
   
   #### Behavior With This Pull Request :tada:
   REST endpoint starts at `9999` port:
   ```shell
   bin/kyuubi run --conf kyuubi.frontend.rest.bind.port=9999
   ...
   2024-07-10 17:49:41.659 INFO main 
org.apache.kyuubi.server.KyuubiRestFrontendService: 
Service[KyuubiRestFrontendService] is started.
   2024-07-10 17:49:41.660 INFO main 
org.apache.kyuubi.server.KyuubiRestFrontendService: Exposing REST endpoint at: 
http://0.0.0.0:9999
   2024-07-10 17:49:41.660 INFO main org.apache.kyuubi.server.KyuubiServer: 
Service[KyuubiServer] is started.
   ```
   
   #### Related Unit Tests
   `kyuubi-common/src/test/scala/org/apache/kyuubi/config/KyuubiConfSuite.scala`
   
   ---
   
   # Checklist ๐Ÿ“
   <!--- Go over all the following points, and put an `x` in all the boxes that 
apply. -->
   <!--- If you're unsure about any of these, don't hesitate to ask. We're here 
to help! -->
   
   - [ ] This patch was not authored or co-authored using [Generative 
Tooling](https://www.apache.org/legal/generative-tooling.html)
   
   **Be nice. Be informative.**
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@kyuubi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@kyuubi.apache.org
For additional commands, e-mail: notifications-h...@kyuubi.apache.org

Reply via email to