Member since
06-27-2017
9
Posts
0
Kudos Received
0
Solutions
09-22-2017
04:02 AM
1 Kudo
@Rui Ornellas Junior Based on the error it looks like a configuration issue. Failed: Container size (3,00GB) should be greater than minimum allocation(3,93GB)java.lang.IllegalArgumentException: Container size (3,00GB) should be greater than minimum allocation(3,93GB) . https://github.com/apache/hive/blob/rel/release-2.1.1/llap-server/src/java/org/apache/hadoop/hive/llap/cli/LlapServiceDriver.java#L232-L240 Based on the above code it looks like following parameter value is set incorrectly (means the minimum value is set higher than the max value). final long minAlloc = conf.getInt(YarnConfiguration.RM_SCHEDULER_MINIMUM_ALLOCATION_MB, -1); Please check the "yarn.scheduler.minimum-allocation-mb" setting value, Based on the error it should be lower than the size "--size 3072m" parameter that we see in your command. (OR) try increasing the "--size" parameter value more than the "yarn.scheduler.minimum-allocation-mb" .
... View more
09-12-2017
01:44 PM
@Rui Ornellas Junior I am not sure I understand your setup. Are you trying to integrate MIT KDC with AD ? What documentation did you follow for the kerberos setup? Can you describe your cluster setup? Number of node and their distribution (Master,Slave etc) Helpful to have the HDP/Ambari versions too What option of kerberos setup did you execute correctly as stated in your initial posting? Please help me understand to help you better
... View more
09-05-2017
12:05 PM
Hi @Rui Ornellas Junior The problem is probably the case of your realm name. Realm names MUST be all capital letters according to the widely accepted realm naming convention. The MIT Kerberos library appears to adhere to this convention and tends to generate failures when the convention is not satisfied. On top of this, the case of the realm name MUST match the case of your KDC. If the realm name known to you KDC is lowercase, then you will need to fix the KDC (or Active Directory). Many have tried to get around this case issue with no luck.
... View more
07-12-2017
08:29 AM
@Rui Ornellas Junior You need restart HDFS, YARN, MAPREDUCE and HIVE services.
... View more