[
https://issues.apache.org/jira/browse/METRON-1424?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16406341#comment-16406341
]
ASF GitHub Bot commented on METRON-1424:
----------------------------------------
Github user cestella commented on a diff in the pull request:
https://github.com/apache/metron/pull/960#discussion_r175767522
--- Diff:
metron-platform/metron-solr/src/main/java/org/apache/metron/solr/writer/SolrWriter.java
---
@@ -239,4 +245,12 @@ public void close() throws Exception {
solr.close();
}
}
+
+ private boolean isKerberosEnabled(Map stormConfig) {
+ if (stormConfig == null) {
+ return false;
+ }
+ String value = (String)
stormConfig.get("java.security.auth.login.config");
--- End diff --
Can we make this a constant?
> Kerberos: Solr
> --------------
>
> Key: METRON-1424
> URL: https://issues.apache.org/jira/browse/METRON-1424
> Project: Metron
> Issue Type: Sub-task
> Reporter: Justin Leet
> Priority: Major
>
> Verify that our Mpack passes the right credentials to Solr. Verify that Solr
> kerberizes out of the box. This'll need to be spun up so we can find any
> issues.
> This should also be spun up for at least the ticket expiration time (over 24
> hours by default). We'd seen some issues with lowering the ticket expiration
> time not seeming to be reflected in configs, so we should be careful to make
> sure ticket expiration works as expected.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)