Member since
04-25-2016
579
Posts
609
Kudos Received
111
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2939 | 02-12-2020 03:17 PM | |
| 2141 | 08-10-2017 09:42 AM | |
| 12496 | 07-28-2017 03:57 AM | |
| 3444 | 07-19-2017 02:43 AM | |
| 2537 | 07-13-2017 11:42 AM |
07-19-2016
07:08 AM
1 Kudo
increase spark.executor.memory to the desired and then adjust spark.memory.storageFraction value which is default .5 (with this default value .9*.5*executor memory will be used as storage memory)
... View more
07-18-2016
05:00 PM
@jj
@JJ Yang after ssh into the box you can set the password for admin by running this command ambari-admin-password-reset
... View more
07-18-2016
10:09 AM
1 Kudo
@Sasikumar Natarajan its better to shade common-lang dependency in your topologoy jars instead of upgrading jar provided with storm distribution.
... View more
07-18-2016
08:14 AM
@Gautam Marya can you try this val fs = org.apache.hadoop.fs.FileSystem.get(new java.net.URI("hdfs://sandbox.hortonworks.com:8030"), sc.hadoopConfiguration) fs.delete(new org.apache.hadoop.fs.Path("/tmp/xyz"),true) // isRecusrive= true
... View more
07-14-2016
03:00 PM
1 Kudo
on very high level,once map task get complete it notify Application master through heartbeat, AM keeps track mapping between map output and hosts. Reducer polla AM for map output locations untill it get all.
... View more
07-13-2016
11:58 AM
check resources on node where this task failed, seems a resource problem there .. from log - unable to create new native thread at
... View more
07-11-2016
11:50 AM
1 Kudo
add these lines to hive-log4j.properties
logger.PerfLogger.name = org.apache.hadoop.hive.ql.log.PerfLogger logger.PerfLogger.level = DEBUG
... View more
07-01-2016
12:09 PM
@suresh krish if you look at white list param,this param(tez.shuffle-vertex-manager.min-src-fraction) is not in white list so the following piece of code(HiveConf.java) throws cannot modify exception. public void verifyAndSet(String name, String value) throws IllegalArgumentException {
if (modWhiteListPattern != null) {
Matcher wlMatcher = modWhiteListPattern.matcher(name);
if (!wlMatcher.matches()) {
throw new IllegalArgumentException("Cannot modify " + name + " at runtime. "+ "It is not in list of params that are allowed to be modified at runtime");
}
}
if (restrictList.contains(name)) {
throw new IllegalArgumentException("Cannot modify " + name + " at runtime. It is in the list"+ "of parameters that can't be modified at runtime");
}
isSparkConfigUpdated = isSparkRelatedConfig(name);
set(name, value);
}
... View more
06-30-2016
12:55 PM
open hivecli and do set hive.security.authorization.sqlstd.confwhitelist; that will give you complete whitelist
... View more