Member since
09-23-2015
81
Posts
108
Kudos Received
41
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
5567 | 08-17-2017 05:00 PM | |
2205 | 06-03-2017 09:07 PM | |
2680 | 03-29-2017 06:02 PM | |
5070 | 03-07-2017 06:16 PM | |
1918 | 02-26-2017 06:30 PM |
08-17-2017
05:00 PM
2 Kudos
@Timothy Spann @Greg Keys This is a known issue with HDF-3.0.1 release and we fixed did a release HDF-3.0.1.1. Please find the details here http://dev.hortonworks.com.s3.amazonaws.com/HDPDocuments/HDF3/HDF-3.0.1.1/bk_release-notes/content/ch_hdf_relnotes.html#repo-location. 1. Take a backup of existing SAM app. You can export the app to your local computer. 2. Upgrade the cluster to 3.0.1.1 3. If you have existing data in a Kafka topic that was ingested with the above bug. Make sure you create a new topic or delete the existing topic. 4. Import the SAM topology, make sure you configure the topic and other cluster details in the app.
... 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
08-14-2017
06:00 PM
@Kirk DeMumbrane Pushed one more fix into those scripts and tested against postgres. Can you please try one more time getting the latest files from master here https://github.com/hortonworks/registry/
... View more
08-10-2017
05:49 PM
@Kirk DeMumbrane Thanks for the details. In HDF-3.0 release we supported mysql as GA and postgres as TechPreview. This is a an issue with our Postgres create table scripts. You can pickup the latest postgres scripts from here https://github.com/hortonworks/registry/tree/master/bootstrap/sql/postgresql and run the following commands. These commands will delete any existing data and re-create the tables. Make sure you take the backup of your data.
copy the above postgresql files under here
cp *.sql /usr/hdf/current/registry/bootstrap/sql/postgresql
run the following command
/usr/hdf/current/registry/bootstrap/bootstrap-storage.sh drop-create
... View more
08-09-2017
08:36 PM
@David Streever this is very strange. I just tried in my own installation and couldn't reproduce. If you have the registry still running with this data. Can you please run following sql query against registry database and paste the results here. select * from schema_metadata_info;
... View more
06-03-2017
09:07 PM
1 Kudo
@Lester Martin
Work around is to add the following in your pom.xml <dependency>
<groupId>org.apache.storm</groupId>
<artifactId>storm-kafka-clients</artifactId>
<version>1.1.0.2.6.0.3-8</version>
<exclusions>
<exclusion>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</groupId>
<version>0.10.0.2.6.0.0-598</version>
</dependency>
... View more
03-29-2017
06:02 PM
2 Kudos
@Ward Bekker can you copy bootstrap/notifier-jars/streamline-notifier*.jar onto /tmp/b7ea53f1-77ca-495f-b9f7-ed28f3097ac1.jar and try re-deploying
... View more
03-29-2017
05:57 PM
@Ward Bekker are you using notifications or custom processor in your topology
... View more
03-22-2017
04:21 PM
1 Kudo
@Edgar Orendain Can you make your schema registry server accessible from Storm's Supervisor nodes.
... View more
03-22-2017
04:19 PM
@Eric Brosch With AGPL we are not allowed to package the JPMML dependency along with our ASLv2 Licensed Storm or SAM (Streamline). We build this as a compile time dependency and when users deploy the topology we fetch JPMML artifacts from maven central repo during the deployment. Its users who are in control which version of JPMML artifact they would like to use and there are older versions which are compatible with AGPL license.
... View more