Member since
06-09-2016
185
Posts
22
Kudos Received
5
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2161 | 04-21-2017 07:57 AM | |
1349 | 04-18-2017 07:07 AM | |
3191 | 02-27-2017 05:41 AM | |
890 | 12-09-2016 11:05 AM | |
1254 | 11-24-2016 11:20 AM |
04-16-2023
05:40 AM
Hello! I'm having a timeout problem when sending information to kafka. I have a docker environment with 3 containers: Nifi, Kafka and KafDrop. I'm using NiFi's PublishKafka_1_0 1.21.0 to send information to kafka, but I'm not getting it. I already tried to increase the Max 'Metadata Wait Time' field value to 30sec and I didn't succeed. Also, I ran the command ./kafka-acls.sh --authorizer kafka.security.auth.SimpleAclAuthorizer --authorizer-properties zookeeper.connect=localhost:2181 --add --allow-principal User:ANONYMOUS --operation Read --operation Write -- O peration Describe --topic topic1 because I thought it could be some authentication problem to the kafka host/topic. Also unsuccessful. I don't know what else to do. Help me.
... View more
01-25-2023
02:19 AM
@vi1, as this is an older post, you would have a better chance of receiving a resolution by starting a new thread. This will also be an opportunity to provide details specific to your environment that could aid others in assisting you with a more accurate answer to your question. You can link this thread as a reference in your new post.
... View more
07-07-2020
04:34 AM
Solr includes the specified file terms in an index. Indexing in Solr would be similar to creating an index at the end of a book that includes the words that appear in that book and their location, so basically we would take an inventory of the words that appear in the book and an inventory of the pages where said words appear That is, by including content in the index, we make said content available for search by Solr. This type of index, called an inverted index, is a way of structuring the information that will be retrieved by a search engine. You may find a longer answer of the way the information is stored and retrieved by solr in https://www.solr-tutorial.com/indexing-with-solr.html
... View more
04-30-2020
02:23 PM
Does streaming expressions in solr8.x work in a master/slave setup outside of Solr cloud?
... View more
09-20-2019
06:28 AM
I found the Ranger KMS Admin Guide for HDP 2.4.0, hopefully this is what you are looking for.
... View more
09-03-2019
01:28 PM
hi @nshawa, I am having the following error on PutHiveStreaming processor after running the template you provided: Any idea how to fix this?
... View more
08-10-2017
08:57 AM
Hi, 1. You can find logs for Schema Registry under this path : /usr/hdf/current/registry/logs 2. Remove all the spaces you have in the name of your properties and it would be fine {
"type" : "record",
"namespace" : "poc",
"name" : "Employee",
"fields" : [
{ "name" : "Name", "type" : "string"},
{ "name" : "Age", "type" : "int"}
]
}
... View more
07-21-2017
06:21 AM
Thanks @Jay SenSharma I will read more about maintenance mode. I learnt about what HDF includes, was wondering why in sandbox the other services are bundled..just to make demos work?
... View more
06-08-2017
05:28 PM
In Nifi, you can use the PutHiveStreaming processor, and it is designed to commit transactions in batch, which is configurable. https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-hive-nar/1.2.0/org.apache.nifi.processors.hive.PutHiveStreaming/index.html I think risky is not the correct term for using an ACID table, but careful may be better; that is, with careful design and configuration, you can avoid locking issues. Be sure to review the Hive documentation on this: https://cwiki.apache.org/confluence/display/Hive/Hive+Transactions
... View more