[
https://issues.apache.org/jira/browse/HADOOP-17982?focusedWorklogId=698292&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-698292
]
ASF GitHub Bot logged work on HADOOP-17982:
-------------------------------------------
Author: ASF GitHub Bot
Created on: 18/Dec/21 18:04
Start Date: 18/Dec/21 18:04
Worklog Time Spent: 10m
Work Description: steveloughran commented on pull request #3599:
URL: https://github.com/apache/hadoop/pull/3599#issuecomment-997239784
What do you recommend we do here?
--
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]
Issue Time Tracking
-------------------
Worklog Id: (was: 698292)
Time Spent: 1.5h (was: 1h 20m)
> OpensslCipher initialization error should log a WARN message
> ------------------------------------------------------------
>
> Key: HADOOP-17982
> URL: https://issues.apache.org/jira/browse/HADOOP-17982
> Project: Hadoop Common
> Issue Type: Improvement
> Components: kms, security
> Reporter: Wei-Chiu Chuang
> Assignee: Wei-Chiu Chuang
> Priority: Trivial
> Labels: pull-request-available
> Fix For: 3.4.0
>
> Time Spent: 1.5h
> Remaining Estimate: 0h
>
> We spent months troubleshooting a RangerKMS performance problem, only to
> realize that the openssl library wasn't even loaded properly.
> The failure to load openssl lib is currently logged as a debug message during
> initialization. We really should upgrade it to at least INFO/WARN.
> {code}
> static {
> String loadingFailure = null;
> try {
> if (!NativeCodeLoader.buildSupportsOpenssl()) {
> PerformanceAdvisory.LOG.debug("Build does not support openssl");
> loadingFailure = "build does not support openssl.";
> } else {
> initIDs();
> }
> } catch (Throwable t) {
> loadingFailure = t.getMessage();
> LOG.debug("Failed to load OpenSSL Cipher.", t);
> } finally {
> loadingFailureReason = loadingFailure;
> }
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]