Member since
09-23-2015
81
Posts
108
Kudos Received
41
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
5733 | 08-17-2017 05:00 PM | |
2283 | 06-03-2017 09:07 PM | |
2795 | 03-29-2017 06:02 PM | |
5297 | 03-07-2017 06:16 PM | |
1976 | 02-26-2017 06:30 PM |
01-06-2020
03:02 AM
How can i assign the existing topic partition to newly added node ?
... View more
01-28-2019
11:09 AM
@Greg Keys I am having the same issue with hdf 3.3.1. I have checked the schema file and the input file as well. I have done what was mentioned by @Sriharsha Chintalapani Schema {
"namespace": "hdf.heaptrace.com",
"type": "record",
"name": "PatientField",
"fields": [
{"name": "Patient_name","type": "string"}
]
} JSON data {"Patient_name":"john"}
Please help !!! I have converted data from json to avro and then back again as well using avro tools.
... View more
08-16-2017
10:44 PM
@Kirk DeMumbrane saw your comments. Will need to send upgrades scripts against 3.0 release.
... View more
06-04-2017
04:38 AM
It did the trick for me. I sure hope it helps out @Joan Viladrosa, too! Thanks, Sriharsha!
... View more
03-22-2017
07:21 PM
Looks like openscoring also offers jpmml under a BSD license for a fee, see below. Unfortunately, it appears there's a gray area between "we just want to use the software" and "want to redistribute proprietary software based on this code." The wording of the attached blurb from openscoring suggests they think "use" of AGPL code is fine, even though the FSF stance seems to be that GNU AGPL is only compatible w/ GPL: https://www.gnu.org/licenses/why-affero-gpl.en.html
... View more
02-13-2019
02:08 PM
Why would you put a Google Drive link to something protected in a blog post? 🙂
... View more
08-26-2016
09:32 PM
HDP kafka has a patch for old client api (consumer, producer) to work with kerberorized kafka cluster. So you need to make sure the dependencies you set are coming from the hortonworks maven repo <dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.10</artifactId>
<version>0.8.2.0</version>
");"><exclusions>
");"><exclusion>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
</exclusion>
");"><exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency> The above is from Apache. You can use this http://repo.hortonworks.com/content/groups/public/org/apache/kafka/kafka_2.10/0.9.0.2.4.2.8-3/ instead of the above. Add repo.hortonworks.com as one of the maven repo and use the version 0.9.0.2.4.2.8-3 instead of 0.8.2.0 like above.
... View more