How to check the version of Spark and Scala in Zeppelin?

When I launch the interactive spark shell, I show the version of spark (2.2.0) and scala (2.11.8)

Welcome to
      ____              __
     / __/__  ___ _____/ /__
    _\ \/ _ \/ _ `/ __/  '_/
   /___/ .__/\_,_/_/ /_/\_\   version 2.2.0
      /_/

Using Scala version 2.11.8 (OpenJDK 64-Bit Server VM, Java 1.8.0_131)

However, I want to check that Spark and scala version that I use with Zeppelin (localhost)

I'm not sure Zeppelin is launching the same spark / scala with my interactive shell.

(I checked https://community.hortonworks.com/questions/54918/how-do-i-tell-which-version-ofspark-i-am-running.html , but I do not want this because I post Zeppelin on localhost)

+4
source share
1 answer

sc.version scala util.Properties.versionString zeppelin

+7

Source: https://habr.com/ru/post/1688996/


All Articles