Member since
02-02-2016
583
Posts
518
Kudos Received
98
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3174 | 09-16-2016 11:56 AM | |
1354 | 09-13-2016 08:47 PM | |
5345 | 09-06-2016 11:00 AM | |
3097 | 08-05-2016 11:51 AM | |
5171 | 08-03-2016 02:58 PM |
05-06-2016
04:21 PM
2 Kudos
@AKILA VEL
I don't think we have any direct method to do that, however there are few workaround to achieve this One way is to write a custom java mapreduce job to convert xls to csv or create your own custom serd to access xls.
... View more
05-06-2016
03:34 PM
@Raghu Ramamoorthi What happens if you start hbase from Ambari UI? I believe ranger is not mandatory for hbase .
... View more
05-06-2016
02:37 PM
1 Kudo
@Raghu Ramamoorthi Can you try below command on same shell and run the script again? export CLASSPATH=$CLASSPATH:`hbase classpath` Also, we should start/stop services from Ambari always.
... View more
04-29-2016
07:55 PM
1 Kudo
@sarfarazkhan pathanI think you can't ignore this guy 🙂 Awesome explanation with code examples. http://www.michael-noll.com/blog/2014/10/01/kafka-spark-streaming-integration-example-tutorial/
... View more
04-26-2016
03:21 PM
1 Kudo
@fnu rasool Your SQOOP_HOME may be pointing to other location, please set it like below. set SQOOP_HOME=C:\hadoop\hdp\sqoop-<version>
... View more
04-26-2016
09:55 AM
@JR Cao Thanks for the update, I think you don't need to specify spark-env since you already had --deploy-mode client.
... View more
04-26-2016
09:34 AM
2 Kudos
@vadivel sambandam Spark input splits works same way as Hadoop input splits, it uses same underlining hadoop InputFormat API's. When it comes to the spark partitions, by default it will create one partition for each hdfs blocks, For example: if you have file with 1GB size and your hdfs block size is 128 MB then you will have total 8 HDFS blocks and spark will create 8 partitions by default . But incase if you want further split within partition then it would be done on line split.
... View more
04-25-2016
08:12 PM
@fnu rasool Ok then lets try to set CLASSPATH manually. set CLASSPATH=%CLASSPATH%;<\directory location where jar file exist>
... View more
04-25-2016
07:26 PM
@fnu rasool That's true but these jars are not accessible by sqoop due to class path issue, can you please try setting below env variable just before running sqoop command? SQOOP_HOME=c:\hdp
... View more
04-25-2016
07:03 PM
@wayne2chicago thanks, Also if my answer if matching to your expectation then can you please accept it as answer?
... View more