I'm having trouble reading data from azure spots using a spark stream
JavaDStream<String> lines = ssc.textFileStream("hdfs://ip:8020/directory");
code like above works for HDFS but cannot read file from Azure blob
https://blobstorage.blob.core.windows.net/containerid/folder1/
Above is the path that is shown in the azure UI, but it does not work, I am missing something and how can we get it.
I know Eventhub is an ideal choice for streaming data, but my current situation requires memory usage rather than queues
java azure apache-spark azure-storage-blobs spark-streaming
duck
source share