[ https://issues.apache.org/jira/browse/HIVE-19888?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16512777#comment-16512777 ]
Marcelo Vanzin commented on HIVE-19888: --------------------------------------- Tests haven't run, did I name the patch wrongly or something like that? > Misleading "METASTORE_FILTER_HOOK will be ignored" warning from SessionState > ---------------------------------------------------------------------------- > > Key: HIVE-19888 > URL: https://issues.apache.org/jira/browse/HIVE-19888 > Project: Hive > Issue Type: Bug > Components: HiveServer2 > Affects Versions: 3.0.0 > Reporter: Marcelo Vanzin > Assignee: Marcelo Vanzin > Priority: Minor > Attachments: HIVE-19888.1.patch > > > When I run things on my test cluster I see things like this in my logs: > {noformat} > 18/03/14 13:35:20 WARN session.SessionState: METASTORE_FILTER_HOOK will be > ignored, since hive.security.authorization.manager is set to instance of > HiveAuthorizerFactory. > 18/03/14 13:35:21 WARN session.SessionState: METASTORE_FILTER_HOOK will be > ignored, since hive.security.authorization.manager is set to instance of > HiveAuthorizerFactory. > {noformat} > That's because the code in SessionState.java is wrong: > {code} > String metastoreHook = > sessionConf.get(ConfVars.METASTORE_FILTER_HOOK.name()); > if > (!ConfVars.METASTORE_FILTER_HOOK.getDefaultValue().equals(metastoreHook) && > > !AuthorizationMetaStoreFilterHook.class.getName().equals(metastoreHook)) { > LOG.warn(ConfVars.METASTORE_FILTER_HOOK.name() + > " will be ignored, since hive.security.authorization.manager" + > " is set to instance of HiveAuthorizerFactory."); > } > {code} > It's using {{.name()}} which is the enum name, not the actual config key. -- This message was sent by Atlassian JIRA (v7.6.3#76005)