ansrivas / spark-structured-streaming

Spark structured streaming with Kafka data source and writing to Cassandra

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Closure issue

albertozeni opened this issue · comments

Hi, when running sbt clean compile run i get this warning and the execution stops, can you help me?
screenshot 2017-10-15 10 17 08

Hi @albertozeni,

The execution is not stopped here.

At this point you run python main.py, thus data is published on Kafka.
To check your data in Cassandra finally run this:

docker exec -it cas_01_test cqlsh -e 'select * from my_keyspace.test_table ;'

I will see what is the reason of this warning and will try to fix it, but this won't stop you from executing the project.

Thanks so much! It works!