Skip to main content
improved
Source Link
Ajeet Shah
  • 19.5k
  • 8
  • 62
  • 95

(same as above i.e. Class org.apache.spark.Logging is not found.)


(same as above)


(same as above i.e. Class org.apache.spark.Logging is not found.)


improved
Source Link
Ajeet Shah
  • 19.5k
  • 8
  • 62
  • 95

Class org.apache.spark.Logging is available in Spark version 1.5.2 or lower (though I didn't test on all lower versionversions) but is not available in versions higher than the same.

As you can see that org.apache.spark.Logging which is required by the Spark-Streaming-Twitter, is available in Spark version 1.5.2 or lower, so I would recommend you to use 1.5.2 ofor a lower version of spark.

Hence, you should use replace your maven dependencies with as followsfollowings: (Assuming that you are using Scala 2.11.x)

Class org.apache.spark.Logging is available in Spark version 1.5.2 or lower (though I didn't test on lower version) but is not available in versions higher than the same.

As you can see that org.apache.spark.Logging which is required by the Spark-Streaming-Twitter is available in Spark version 1.5.2 or lower, so I would recommend you to use 1.5.2 of lower version of spark.

Hence, you should use replace your maven dependencies with as follows: (Assuming that you are using Scala 2.11.x)

Class org.apache.spark.Logging is available in Spark version 1.5.2 or lower (though I didn't test on all lower versions) but is not available in versions higher than the same.

As you can see that org.apache.spark.Logging which is required by the Spark-Streaming-Twitter, is available in Spark version 1.5.2 or lower, so I would recommend you to use 1.5.2 or a lower version of spark.

Hence, you should replace your maven dependencies with followings: (Assuming that you are using Scala 2.11.x)

Source Link
Ajeet Shah
  • 19.5k
  • 8
  • 62
  • 95

TLDR;

Class org.apache.spark.Logging is available in Spark version 1.5.2 or lower (though I didn't test on lower version) but is not available in versions higher than the same.


It all comes down to using *incompatible* version of [`Apache Spark`](https://spark.apache.org/downloads.html):

1. Let's try to import org.apache.spark.Logging on Spark 2.0.0:

user@ubuntu:~$ /opt/spark/bin/spark-shell
Welcome to
  ____              __
 / __/__  ___ _____/ /__
_\ \/ _ \/ _ `/ __/  '_/
/___/ .__/\_,_/_/ /_/\_\   version 2.0.0
   /_/      
Using Scala version 2.11.8 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_101)
scala> import org.apache.spark.Logging
<console>:23: error: object Logging is not a member of package org.apache.spark
import org.apache.spark.Logging
          ^

Class org.apache.spark.Logging is not found.


2. Let's try to import org.apache.spark.Logging on Spark 1.6.2:

(same as above)


3. Let's try to import org.apache.spark.Logging on Spark 1.5.2:

user@ubuntu:~$ /opt/spark-1.5.2-bin-hadoop2.6/bin/spark-shell
Welcome to
      ____              __
     / __/__  ___ _____/ /__
    _\ \/ _ \/ _ `/ __/  '_/
   /___/ .__/\_,_/_/ /_/\_\   version 1.5.2
      /_/
Using Scala version 2.10.4 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_101)
scala> import org.apache.spark.Logging
import org.apache.spark.Logging

YES! It is available and successfully imported

As you can see that org.apache.spark.Logging which is required by the Spark-Streaming-Twitter is available in Spark version 1.5.2 or lower, so I would recommend you to use 1.5.2 of lower version of spark.

Hence, you should use replace your maven dependencies with as follows: (Assuming that you are using Scala 2.11.x)

<dependency>
    <groupId>org.apache.spark</groupId>
    <artifactId>spark-core_2.11</artifactId>
    <version>1.5.2</version>
</dependency>

<dependency>
    <groupId>org.apache.spark</groupId>
    <artifactId>spark-streaming_2.11</artifactId>
    <version>1.5.2</version>
</dependency>

<dependency>
    <groupId>org.apache.spark</groupId>
    <artifactId>spark-streaming-twitter_2.11</artifactId>
    <version>1.6.2</version>
</dependency>

Note that the artifactId: 2.11 refers to scala version and version: 1.5.2 or 1.6.2 refers to the library (spark-core or spark-streaming-twitter) version.