Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check Spark Version [closed]

I want to check the spark version in cdh 5.7.0. I have searched on the internet but not able to understand. Please help.

like image 422
Ironman Avatar asked Jul 26 '16 10:07

Ironman


People also ask

How do I check my spark version?

Click on Admin -> Stack and Versions and you will find the version information under Version tab.

How do I open spark in terminal?

Go to the Apache Spark Installation directory from the command line and type bin/spark-shell and press enter, this launches Spark shell and gives you a scala prompt to interact with Spark in scala language. If you have set the Spark in a PATH then just enter spark-shell in command line or terminal (mac users).


1 Answers

Addition to @Binary Nerd

If you are using Spark, use the following to get the Spark version:

spark-submit --version 

or

Login to the Cloudera Manager and goto Hosts page then run inspect hosts in cluster

like image 108
BruceWayne Avatar answered Sep 24 '22 19:09

BruceWayne