aryangupta1998 opened a new pull request, #10811:
URL: https://github.com/apache/ozone/pull/10811
## What changes were proposed in this pull request?
HttpFS launcher currently sets httpfs.log.dir and httpfs.temp.dir under
`OZONE_HOME (${OZONE_HOME}/log`, `${OZONE_HOME}/temp)`.
HttpFSServerWebApp initializes through ServerWebApp, and Server.init()
validates these directories at startup. If `${OZONE_HOME}/temp` is missing,
startup fails with `S01: Dir .../temp` does not exist, and Jetty stops the
connector.
Fix: switch launcher defaults to runtime-managed directories:
```
httpfs.log.dir=${OZONE_LOG_DIR}
httpfs.temp.dir=${OZONE_PID_DIR}
```
This removes dependency on install-tree temp/log paths and makes HttpFS
startup more robust across deployment layouts.
## What is the link to the Apache JIRA
https://issues.apache.org/jira/browse/HDDS-15912
## How was this patch tested?
Tested Manually.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]