Member since
07-31-2013
1924
Posts
462
Kudos Received
311
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1975 | 07-09-2019 12:53 AM | |
| 11895 | 06-23-2019 08:37 PM | |
| 9159 | 06-18-2019 11:28 PM | |
| 10151 | 05-23-2019 08:46 PM | |
| 4587 | 05-20-2019 01:14 AM |
01-04-2017
07:30 AM
The property is not server side, its per-app (client side). All MR2 properties (save for shuffle) are client properties in YARN.
... View more
01-03-2017
04:46 PM
When you say something "doesn't work" could you please also always include the observed behaviour vs. expected? BTW the safety valve you've used is incorrect ("YARN Service MapReduce …"), as this is a client-side property. Use the safety valve under YARN Gateway called "MapReduce Client Advanced Configuration Snippet (Safety Valve) for mapred-site.xml".
... View more
12-20-2016
05:26 AM
1 Kudo
The ImportTSV utility comes included with your CDH installation.
... View more
12-18-2016
12:04 AM
1 Kudo
You are looking for the ImportTSV utility offered by HBase, and its bulk-load option. Read up more at http://archive.cloudera.com/cdh5/cdh/5/hbase/book.html#_importtsv to learn how to use the ImportTSV to prepare bulk-loadable output, followed by http://archive.cloudera.com/cdh5/cdh/5/hbase/book.html#arch.bulk.load.complete which shows how to load the prepared output finally into HBase. There's also a slightly dated example of the process on the Cloudera Engineering blog which uses a CSV example with the above process: http://blog.cloudera.com/blog/2013/09/how-to-use-hbase-bulk-loading-and-why/
... View more
12-15-2016
06:07 AM
If you use 5.9+ or can upgrade to it, add the disk to configuration, and use this feature: http://blog.cloudera.com/blog/2016/10/how-to-use-the-new-hdfs-intra-datanode-disk-balancer-in-apache-hadoop/
... View more
12-15-2016
03:22 AM
1 Kudo
The replication factor is one replica per DataNode _instance_, not per DataNode _Disk_. Regardless of how many disk (directories - dfs.datanode.data.dirs) you configure per DataNode, the replica on each DataNode host will be uniquely one and may reside on any one disk.
... View more
12-08-2016
10:37 PM
1 Kudo
From the stray quote in your exception, it would seem like something in your client program (the com.install4j.runtime.launcher.UnixLauncher class invocation script, the com.attivio.commandline.CommandLineRunner, etc.) has incorrectly set the JDK used system property of "https.protocols" to a value of "TLSv1" with the quotes partially included. if there is an override of "https.protocols" required on your JDK (such as is needed for using TLSv1.2 in JDK7 environments [1]) then please modify it to pass the value correctly without the quote wrapped around it. For ex. this is a good way to set it: -Dhttps.protocols=TLSv1.2 But this isn't gonna work: -Dhttps.protocols="TLSv1.2" From your error, if I were to guess, it seems to instead be set to something like: -Dhttps.protocols="TLSv1,2", which gives rise to the literal error of java.lang.IllegalArgumentException: "TLSv1 [1] - https://blogs.oracle.com/java-platform-group/entry/diagnosing_tls_ssl_and_https X-Refs: http://hg.openjdk.java.net/jdk8/jdk8/jdk/file/687fd7c7986d/src/share/classes/sun/net/www/protocol/https/HttpsClient.java#l161 and http://hg.openjdk.java.net/jdk8/jdk8/jdk/file/687fd7c7986d/src/share/classes/sun/security/ssl/ProtocolVersion.java#l164
... View more
12-02-2016
12:08 AM
1 Kudo
The HDFS Balancer utility respects and is aware of storage types. It balances each storage type individually with other available matching storage types in the cluster [1].
... View more
11-20-2016
06:48 AM
1 Kudo
You can try to pass an override specifying a singular URI in such a manner: sqoop import -Dhive.metastore.uris=thrift://only-one-of-your-HMS-host:9083 …(rest of arguments follow)… (The override argument via -D must precede all other arguments)
... View more
11-18-2016
02:37 AM
No. See doc for usage: http://archive.cloudera.com/cdh5/cdh/5/hbase/book.html#_export
... View more