Member since
01-20-2017
29
Posts
0
Kudos Received
0
Solutions
04-24-2022
01:25 AM
No it is not. You get the exact same error as before. Does anybody know how to actually fix this broken program?
... View more
09-28-2018
01:03 PM
HI, I Have downloaded clodera quickstart 5.13.x and allocated 9 gb ram and 2 processors Still i am facing hangout issue when i am open cloudera manager, Could you please help on this issue Thanks, Madhan
... View more
04-14-2017
08:31 PM
It is the below line which is setting the data types for both the fields as StringType: val schema =
StructType(
schemaString.split(" ").map(fieldName => StructField(fieldName, StringType, true))) You can define your custom schema as follows : val customSchema = StructType(Array(
StructField("name", StringType, true),
StructField("age", IntegerType, true))) You can add additional fields as well in the above schema definition. And then you can use this customSchema while creating the dataframe as follows: val peopleDataFrame = sqlContext.createDataFrame(rowRDD, customSchema) Also for details, please see this page.
... View more
04-04-2017
06:00 AM
While you are waiting on a Hue expert on this I wanted to chime in on the Quickstart VM just in case it applies to this instance.
A little more information on how you set up the VM may be helpful. We have a Community Article on How to Set Up Cloudera Quickstart VM which may also be of interest. It states, specifically, around using Cloudera Manager in the VM, a minimum of 8 GiB of RAM and 2 virtual CPU cores is required. After launching Cloudera Manager, all of the services in CDH are started, although it might take several minutes for Cloudera Manager to start all of the services. To conserve resources and improve performance, it is recommended that you stop services you do not plan to use.
I hope this helps.
... View more
03-22-2017
01:51 PM
@dmishraoc You can get the parameters mentioned in step 1 & 2 from yarn-site.xml and follow the step3: go to the path /var/log/hadoop-mapreduce Note: If you have 10 history file + one current file and each file size is 201M, then you are good. It is automatically purging & you don't need to purge anything
... View more
03-21-2017
03:34 AM
"sqoop" causes errors in the <command> tag. See OOZIE-2816 for some detail
... View more