Skip to content
Closed
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import org.apache.spark.streaming.{Duration, StreamingContext}
import org.apache.spark.streaming.api.java.{JavaReceiverInputDStream, JavaStreamingContext}
import org.apache.spark.streaming.dstream.ReceiverInputDStream

// TODO remove this change
object KinesisUtils {
/**
* Create an input stream that pulls messages from a Kinesis stream.
Expand Down
6 changes: 6 additions & 0 deletions hadoop-cloud/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,12 @@
</exclusion>
</exclusions>
</dependency>
<!-- Manage the AWS SDK version to match Kinesis et al -->
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
<version>${aws.java.sdk.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-openstack</artifactId>
Expand Down
1 change: 1 addition & 0 deletions python/pyspark/streaming/tests/test_kinesis.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
PySparkStreamingTestCase


# TODO remove this change
@unittest.skipIf(not should_test_kinesis, kinesis_requirement_message)
class KinesisStreamTests(PySparkStreamingTestCase):

Expand Down