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 | |
1508 | 03-28-2017 02:27 AM |
03-02-2017
12:58 PM
Here's a good article for that https://community.hortonworks.com/articles/85165/scheduled-incremental-ingestion-of-ms-sql-data-to.html
... View more
03-02-2017
08:58 AM
Then the opposite is true, if you only have 100mb of data, why do you need so many regions? Typically in HDP we default to 10GB per region.
... View more
03-02-2017
08:32 AM
HBase scales as the number of RS goes up, with only two RS, I can't think of any way to make things faster. Do you need to fetch all of the column? Typically, you'd want to move less-frequently column data to either to its own table or new column family. That way only most relevant data is being fetched. That also makes single row span multiple files thereby improving IO.
... View more
03-01-2017
02:11 PM
If you can browse to Ambari on your phone you should be able to see alerts, you can also receive email alerts. Smartsense does not have a mobile version, you can use one of the supported browsers http://docs.hortonworks.com/HDPDocuments/SS1/SmartSense-1.3.1/bk_installation/content/browser_requirements.html
... View more
03-01-2017
02:06 PM
I'm afraid we need more info from you, like how your regions are split, how big is your cluster, are you writing all your rows to one RS.
... View more
03-01-2017
02:02 PM
There are a few examples available on HCC, here's one my colleague created https://community.hortonworks.com/content/kbentry/47854/accessing-facebook-page-data-from-apache-nifi.html
... View more
03-01-2017
03:36 AM
More specifically http://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.5.3/bk_zeppelin-component-guide/content/config-access-control-notes.html
... View more
03-01-2017
03:34 AM
Yes, please take a look at http://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.5.3/bk_zeppelin-component-guide/content/config-access-control.html
... View more
03-01-2017
01:31 AM
Netezza list-databases command is not supported, please see the sqoop user guide for special note https://sqoop.apache.org/docs/1.4.6/SqoopUserGuide.html#_example_invocations_8 I am curious whether using --direct mode implemented the list-databases option, please try and if you can report back. Note This only works with HSQLDB, MySQL and Oracle. When using with Oracle, it is necessary that the user connecting to the database has DBA privileges.
... View more
02-28-2017
09:12 PM
1 Kudo
1. Yes, you have to go to host and decommission RS first, it will put HBase RS into drain mode, then you can continue with decommissioning DN. 2. RS can live without DN but due to data locality it is best to coexist 3.see #1 https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.5.3/bk_administration/content/ch_slave_nodes.html
... View more