Member since
01-09-2014
283
Posts
70
Kudos Received
50
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1723 | 06-19-2019 07:50 AM | |
2776 | 05-01-2019 08:07 AM | |
2825 | 04-10-2019 08:49 AM | |
2718 | 03-20-2019 09:30 AM | |
2369 | 01-23-2019 10:58 AM |
07-25-2017
07:43 AM
the hbase-indexer morphlines.conf is managed by CM, and will automatically be distributed to each node in the /var/run/cloudera-scm-agent/process directory when hbase-indexer starts. You'll want to specify a relative path name in the morphline-hbase-mapper.xml, and it will pick it up from the process directory: https://www.cloudera.com/documentation/enterprise/latest/topics/search_hbase_batch_indexer.html#concept_q3l_2tb_4r -pd
... View more
07-13-2017
10:16 AM
The error is indicating that its not authenticating properly via kerberos. Did you update your code to use the Krb5HttpClientConfigurer? https://cwiki.apache.org/confluence/display/solr/Kerberos+Authentication+Plugin -pd
... View more
06-20-2017
09:52 AM
Here is an example for creating a simple java RSS reader and setting flume up to read the output: http://www.ibm.com/developerworks/library/bd-flumews/ -pd
... View more
06-20-2017
09:42 AM
Thats definitely unusual, the sentry.service.allow.connect governs access and would throw that exception you are observing. Can you confirm that you do have the kafka system user as 'kafka' and that there aren't any typos? Can you include the sentry stack trace with the exception? Additionally, can you run the following, both on the kafka broker and sentry node and confirm they match: id kafka -pd
... View more
06-05-2017
09:21 AM
You could have an issue with certificates...if you enable DEBUG for the client, you should be able to determine what it's having issues with: cp /etc/kafka/conf/tools-log4j.properties /var/tmp sed -i -e 's/INFO/DEBUG/g' /var/tmp/tools-log4j.properties export KAFKA_OPTS="-Dlog4j.configuration=file:/var/tmp/tools-log4j.properties -Djava.security.auth.login.config=/path/to/jaas.conf" -pd
... View more
04-26-2017
08:31 AM
Modifying the flume classpath to insert the plugins directory first isn't a recommended solution, as it could cause unintended side affects due to class version incompatibilities (if thats why you are attempting to load them first). If you have duplicate classes with higher versions, the recommendation would be to use the maven shade plugin (https://maven.apache.org/plugins/maven-shade-plugin/) with relocation in order to load the needed duplicate classes. -pd
... View more
04-20-2017
03:01 PM
There isn't any current functionality to handle this. Part of the issue is, for a newly created collection, what is considered 'appropriate' permissions? Someone normally needs to determine what those are for that new specific collection -pd
... View more
03-27-2017
12:11 PM
1 Kudo
meta.properties was likely left over from a previous instance of the kafka broker. Did you remove the broker role instances and recreate them on the same machine? When that happens, the broker.id changes and kafka won't start properly as a safety measure. A good rule of thumb is if you need to remove the role instances and recreate, then delete everything from the kafka data dir (unless you need to use the partitions), in which case, you'll have to update that meta.properties file manually. -pd
... View more
03-27-2017
11:19 AM
This appears to be your problem: 17/03/26 19:26:24 INFO utils.VerifiableProperties: Property metadata.broker.list is overridden to 0.0.0.0:9092 Are you setting metadata.broker.list in your kafka.properties on the brokers? What is your LISTENERS property set to on the brokers? -pd
... View more
03-22-2017
03:00 PM
Mathieu is correct, you can use: solrctl instancedir --update collection1 /path/to/collection1 solrctl collection --reload collection -pd
... View more