Member since
10-01-2015
3933
Posts
1150
Kudos Received
374
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3360 | 05-03-2017 05:13 PM | |
2789 | 05-02-2017 08:38 AM | |
3064 | 05-02-2017 08:13 AM | |
3002 | 04-10-2017 10:51 PM | |
1506 | 03-28-2017 02:27 AM |
03-07-2017
12:20 PM
Multiple people reported same issues last night. We will get some clarity on what happened later today.
... View more
03-06-2017
09:08 PM
2 Kudos
I'm doing the following sudo yum update ambari-server
sudo ambari-server upgrade
Using python /usr/bin/pythonUpgrading ambari-serverERROR: Unexpected TypeError:
print_info_msg() takes exactly 1 argument (2 given)For more info run
ambari-server with -v or --verbose option
sudo ambari-server upgrade -v
Using python /usr/bin/pythonUpgrading ambari-serverINFO: Loading properties from
/etc/ambari-server/conf/ambari.propertiesTraceback (most recent call
last): File "/usr/sbin/ambari-server.py",
line 941, in <module> mainBody() File "/usr/sbin/ambari-server.py",
line 911, in mainBody main(options, args, parser) File "/usr/sbin/ambari-server.py",
line 863, in main action_obj.execute() File "/usr/sbin/ambari-server.py",
line 78, in execute self.fn(*self.args, **self.kwargs) File
"/usr/lib/python2.6/site-packages/ambari_server/serverUpgrade.py",
line 337, in upgrade print_info_msg("Upgrade Ambari
Server", True)TypeError: print_info_msg()
takes exactly 1 argument (2 given) This is an HA NN and RM cluster with MIT
Kerberos on Centos 7.
... View more
Labels:
- Labels:
-
Apache Ambari
03-06-2017
12:32 PM
Spark2 action in Oozie is not supported in HDP 2.5 or earlier. Spark2 action will ship as part of Oozie 5.0 which is still unreleased by community. HDP is on Oozie 4.2, there are discussions to bring Spark2 into Oozie sooner.
... View more
03-04-2017
02:09 PM
col1 is already int based on your schema in load statement. You can check with describe data; If you want to change type with generate, you can do so like this X = FOREACH A GENERATE c1 AS x1:int;
... View more
03-04-2017
05:17 AM
@Jesse Passwaters please share job.properties and workflow.xml files
... View more
03-03-2017
07:16 PM
2 Kudos
Need to know about:
1.communication
between RS can be encrypted 2.hbase client to
ZK 3.phoenix jdbc client
connection encryption 4. within
ZK znodes, is there any customer information that needs to be protected
... View more
Labels:
- Labels:
-
Apache HBase
-
Apache Phoenix
03-03-2017
03:25 PM
@Venkat Ranganathan from my experience, I think the goal was achieved. I love this product, planning to write more parts once blockers are addressed.
... View more
03-03-2017
11:44 AM
1 Kudo
Here's an example I'm using piggybank UDF library, jar is on local filesystem REGISTER /usr/hdp/current/pig-client/piggybank.jar;
A = LOAD 'input' USING PigStorage();
STORE A INTO 'output' USING org.apache.pig.piggybank.storage.MultiStorage('output', '0');
... View more
03-02-2017
11:41 PM
If you're using Hortonworks Data Cloud, HDInsights or Cloudbreak, you can leverage node recipes to execute custom actions. For on premise clusters there is nothing out of the box you can leverage except for extending Ambari to custom service via API. If you're running RPM derivative OS, you can use Ansible as RHEL sells enterprise support with OS. For home-baked solution, you can still use Ansible, Chef, Puppet, CFEngine or Salt Stack across all OS flavors but it has nothing to do with Ambari.
... View more
03-02-2017
02:22 PM
StreamingContext expects spark Conf. Can you pass conf instead of sc context? A StreamingContext object can be created from a SparkConf object. From https://spark.apache.org/docs/latest/streaming-programming-guide.html#initializing-streamingcontext
import org.apache.spark._
import org.apache.spark.streaming._
val conf = new SparkConf().setAppName(appName).setMaster(master)
val ssc = new StreamingContext(conf, Seconds(1))
... View more