Member since
10-20-2015
35
Posts
23
Kudos Received
5
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2434 | 09-15-2016 03:32 PM | |
2768 | 04-19-2016 05:26 PM | |
1321 | 04-06-2016 07:24 AM | |
1738 | 01-25-2016 06:32 PM | |
2378 | 12-28-2015 06:54 PM |
04-06-2016
07:30 AM
2 Kudos
@Anandha L Ranganathan You can refer http://docs.hortonworks.com/HDPDocuments/Ambari-2.2.1.1/bk_upgrading_Ambari/content/_ambari_upgrade_guide.html
... View more
04-06-2016
07:24 AM
4 Kudos
You can use configs.sh for this https://cwiki.apache.org/confluence/display/AMBARI/Modify+configurations /var/lib/ambari-server/resources/scripts/configs.sh set localhost cl1 cluster-env "myproperty" "myvalue"
########## Performing 'set' myproperty:myvalue on (Site:cluster-env, Tag:version1)
########## PUTting json into: doSet_version1459927360931285086.json
########## NEW Site:cluster-env, Tag:version1459927360931285086
... View more
03-07-2016
07:16 PM
Is /usr/hdp on root? If you are using a GCE cluster you can setup such that /usr/hdp is on larger drive # On each VM, mkdir /grid/0/hdp mkdir /usr/hdp mount --bind /grid/0/hdp /usr/hdp If you have done upgrades in the past and dont intend to go back to the older version, you could remove the old version bits from /usr/hdp/old-version
... View more
03-07-2016
07:01 PM
@Ali Gouta The auto-restart functionality in AMBARI-10029 requires few ambari config changes. Did you make appropriate config changes?
... View more
03-07-2016
06:47 PM
1 Kudo
I guess there is a typo. Looks like space missing after "-d"
... View more
02-26-2016
02:00 AM
1 Kudo
Additional resources https://cwiki.apache.org/confluence/display/AMBARI/Alerts https://cwiki.apache.org/confluence/display/AMBARI/Creating+a+Script+Alert
... View more
01-25-2016
08:45 PM
Actually, I tried with wasb URI in a cluster and it worked. Can you check if wasb in the list of supported filesystems in oozie-site.xml? <key>oozie.service.HadoopAccessorService.supported.filesystems</key> <value>hdfs,hftp,webhdfs,asv,wasb,asvs,wasbs,swebhdfs,adl</value>
... View more
01-25-2016
06:32 PM
1 Kudo
I dont have a cluster handy to validate this, but I think this should work. If you have Namenode HA enabled try with -fs hdfs://{dfs.nameservices} (i.e. oozie-setup.sh sharelib create -fs hdfs://mycluster).
... View more
12-28-2015
07:20 PM
2 Kudos
curl -u <USERNAME>:<PASSWORD> -H 'X-Requested-By:ambari' -X PUT -d '{"RequestInfo":{"context":"Stop All Services","operation_level":{"level":"CLUSTER","cluster_name":"cl1"}},"Body":{"ServiceInfo":{"state":"INSTALLED"}}}' http://<AMBARI-SERVER>:8080/api/v1/clusters/cl1/services
... View more
12-28-2015
06:54 PM
Hive schema is created only if the hive schema has not already been created and is created before starting Hive Metastore. create_schema_cmd = format("export HIVE_CONF_DIR={hive_server_conf_dir} ; "
"{hive_bin}/schematool -initSchema "
"-dbType {hive_metastore_db_type} "
"-userName {hive_metastore_user_name} "
"-passWord {hive_metastore_user_passwd!p}") check_schema_created_cmd = as_user(format("export HIVE_CONF_DIR={hive_server_conf_dir} ; "
"{hive_bin}/schematool -info "
"-dbType {hive_metastore_db_type} "
"-userName {hive_metastore_user_name} "
"-passWord {hive_metastore_user_passwd!p}"), params.hive_user) Execute(create_schema_cmd,
not_if = check_schema_created_cmd,
user = params.hive_user
)
... View more
- « Previous
-
- 1
- 2
- Next »