Member since
05-30-2018
1322
Posts
715
Kudos Received
148
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 4039 | 08-20-2018 08:26 PM | |
| 1936 | 08-15-2018 01:59 PM | |
| 2369 | 08-13-2018 02:20 PM | |
| 4102 | 07-23-2018 04:37 PM | |
| 5006 | 07-19-2018 12:52 PM |
07-03-2016
05:15 AM
I am running hbase export table to HDFS which I want to run a hive query on. I do this as export: bin/hbase org.apache.hadoop.hbase.mapreduce.Export table_name file:///tmp/db_dump/ Now I want to create a hive external table. Does anyone have a example? I need to build the correct hive create table statement. Also what is the fields terminated by? this is most important for me.
... View more
Labels:
- Labels:
-
Apache HBase
-
Apache Hive
07-03-2016
03:01 AM
@vpoornalingam I believe your right. Might actually be safer to stop first.
... View more
07-03-2016
02:59 AM
1 Kudo
@Alex Miller I have reviewed internal HWX jira and G1GC is not supported.
... View more
07-03-2016
01:17 AM
Documentation folks, please update the correct HDP HAWQ sandbox link. Documentation link here. If you click on the sandbox link shown below it errors out.
... View more
Labels:
07-03-2016
01:14 AM
1 Kudo
@Jay Johnson your right the link does not work. Please try this link.
... View more
07-03-2016
01:09 AM
@mqureshi Can you try setting the environment variable in your HADOOP_CONF_DIR and YARN_CONF_DIR in your code? Then set your log levels to debug to verify it is pointing to correct location.
... View more
07-03-2016
01:05 AM
@Jon Maestas Are you simply testing solr? as a general practice for production I would not use hdfs with solr. I just SAS/SSD DAS storage and point local directories. Create replicas (3x) across your solr nodes. For your issue do you mind attaching log file?
... View more
06-30-2016
04:00 PM
1 Kudo
@Dim Guy please take a look at documentation here. Removing a Host (2.1.0) Verified against releases 2.1.0 The preferred way to remove a host is to move the master services from the host, decommission the slave nodes and then remove the host afterdeleting all the host components. However, there are situations such as the host is lost and cannot be brought back online for graceful removal. Under this circumstances the following API calls can be used to clean up the host. 1. Get a list of host components mapped to the host curl -u admin:admin -H "X-Requested-By: ambari" -X GET http: //AMBARI_SERVER_HOST:8080/api/v1/clusters/c1/hosts/HOSTNAME
See the property, "host_components" for all the host. Sample: Output:
...
"host_components" : [
{
"href" : "http://AMBARI_SERVER_HOST:8080/api/v1/clusters/CLUSTERNAME/hosts/HOSTNAME/host_components/DATANODE" ,
"HostRoles" : {
"cluster_name" : "CLUSTERNAME" ,
"component_name" : "DATANODE" ,
"host_name" : "HOSTNAME"
}
},
{
"href" : "http://AMBARI_SERVER_HOST:8080/api/v1/clusters/CLUSTERNAME/hosts/HOSTNAME/host_components/GANGLIA_MONITOR" ,
"HostRoles" : {
"cluster_name" : "CLUSTERNAME" ,
"component_name" : "GANGLIA_MONITOR" ,
"host_name" : "HOSTNAME"
}
}]
...
2. DELETE all host components mapped to this host E.g. Delete DATANODE
curl -u admin:admin -H "X-Requested-By: ambari" -X DELETE http: //AMBARI_SERVER_HOST:8080/api/v1/clusters/CLUSTERNAME/hosts/HOSTNAME/host_components/DATANODE
3. DELETE the host curl -u admin:admin -H "X-Requested-By: ambari" -X DELETE http: //AMBARI_SERVER_HOST:8080/api/v1/clusters/CLUSTERNAME/hosts/HOSTNAME
... View more
06-30-2016
03:58 PM
@avoma Can you verify you have oozie client install on all the nodes. From the error logs it seems the client is missing on the node the job is running.
... View more