Member since
09-25-2015
230
Posts
276
Kudos Received
39
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 28209 | 07-05-2016 01:19 PM | |
| 10625 | 04-01-2016 02:16 PM | |
| 2919 | 02-17-2016 11:54 AM | |
| 7379 | 02-17-2016 11:50 AM | |
| 14812 | 02-16-2016 02:08 AM |
12-03-2015
04:50 PM
@Simon Elliston Ball Thank you. I'm just starting with NiFi. Would you have a sample template that does it?
... View more
12-03-2015
05:35 AM
1 Kudo
I'm trying to use NiFi to replace a basic flume agent that uses Spooling Directory Source and send content to Kafka. http://flume.apache.org/FlumeUserGuide.html#spooling-directory-source The functionality of Flume Spooling Directory source is describe in flume documentation as: "This source lets you ingest data by placing files to be ingested into a “spooling” directory on disk. This source will watch the specified directory for new files, and will parse events out of new files as they appear. The event parsing logic is pluggable. After a given file has been fully read into the channel, it is renamed to indicate completion (or optionally deleted)." Looking for hints on how to do it with NiFi.
... View more
Labels:
- Labels:
-
Apache Flume
-
Apache Kafka
-
Apache NiFi
12-01-2015
03:09 PM
@Jonas Straub I'll try to get the commands, it's from Vmware Big Data Extension.
... View more
12-01-2015
02:33 PM
3 Kudos
version: Ambari 1.7.0 Have anyone seen error below when trying to deploy a new cluster using ambari api. 30 Nov 2015 17:24:06,826 WARN [ambari-action-scheduler] ActionScheduler:200 - Exception received
java.lang.RuntimeException: org.apache.ambari.server.ClusterNotFoundException: Cluster not found, clusterName=clusterID=6
at org.apache.ambari.server.actionmanager.ExecutionCommandWrapper.getExecutionCommand(ExecutionCommandWrapper.java:116)
at org.apache.ambari.server.actionmanager.ActionScheduler.isStageHasBackgroundCommandsOnly(ActionScheduler.java:428)
at org.apache.ambari.server.actionmanager.ActionScheduler.filterParallelPerHostStages(ActionScheduler.java:416)
at org.apache.ambari.server.actionmanager.ActionScheduler.doWork(ActionScheduler.java:246)
at org.apache.ambari.server.actionmanager.ActionScheduler.run(ActionScheduler.java:195)
at java.lang.Thread.run(Thread.java:745)
Caused by: org.apache.ambari.server.ClusterNotFoundException: Cluster not found, clusterName=clusterID=6
at org.apache.ambari.server.state.cluster.ClustersImpl.getClusterById(ClustersImpl.java:250)
at org.apache.ambari.server.actionmanager.ExecutionCommandWrapper.getExecutionCommand(ExecutionCommandWrapper.java:74)
... 5 more
30 Nov 2015 17:24:09,931 WARN [ambari-hearbeat-monitor] HeartbeatMonitor:146 - Heartbeat lost from host brtlvlts0233pl.redecorp.br
30 Nov 2015 17:24:09,931 WARN [ambari-hearbeat-monitor] HeartbeatMonitor:146 - Heartbeat lost from host brtlvlts0234pl.redecorp.br
30 Nov 2015 17:24:09,932 WARN [ambari-hearbeat-monitor] HeartbeatMonitor:146 - Heartbeat lost from host brtlvlts0232pl.redecorp.br
30 Nov 2015 17:24:09,932 WARN [ambari-hearbeat-monitor] HeartbeatMonitor:146 - Heartbeat lost from host brtlvlts0237pl.redecorp.br
30 Nov 2015 17:24:09,932 WARN [ambari-hearbeat-monitor] HeartbeatMonitor:146 - Heartbeat lost from host brtlvlts0235pl.redecorp.br
30 Nov 2015 17:24:09,932 WARN [ambari-hearbeat-monitor] HeartbeatMonitor:146 - Heartbeat lost from host brtlvlts0236pl.redecorp.br
30 Nov 2015 17:24:13,274 ERROR [alert-event-bus-1] AmbariJpaLocalTxnInterceptor:114 - [DETAILED ERROR] Rollback reason:
If we log in ambari webui, cluster stuck with install pending:
... View more
Labels:
- Labels:
-
Apache Ambari
12-01-2015
12:32 PM
1 Kudo
dont forget to change password in ambari as well, otherwise you will have issues restarting services: https://community.hortonworks.com/questions/1929/changing-ranger-ui-password-causing-namenode-issue.html
... View more
12-01-2015
11:44 AM
2 Kudos
@Ancil McBarnett See if this helps (from hcatalog project): https://github.com/apache/hcatalog/blob/branch-0.1/src/test/org/apache/hcatalog/mapreduce/TestHCatPartitioned.java
... View more
11-28-2015
12:25 AM
It should. Actually I'm using Spark 1.5.1 Technical Preview, but I think 1.5.2 should work also.
... View more
11-27-2015
11:13 PM
@Ali Bajwa I got this error when trying to connect to spark 1.4.1 thrift server using beeline that comes with sandbox 2.3.2. Spark 1.5.2 thrift server works fine with beeline 2.3.2. Looks like new zeppelin is using new sql client, what spark version are you using?
... View more
11-26-2015
11:44 PM
2 Kudos
@Scott Shaw What about Hive transform calling your python code? You can use whatever input format you want in your hive table. A simple code here: http://andreyfradkin.com/posts/2013/06/15/combining-hive-and-python/ a more detailed example (but using R instead of python): http://hortonworks.com/blog/using-r-and-other-non-java-languages-in-mapreduce-and-hive/ but you can also use map/reduce paradigm if you use distribute by clauses.
... View more