The way fileStream works is that by default it will process only new files that are created in the directory you specified. So if you run Spark Streaming program with fileStream and not create any new files, you may not see any output on screen.
Here are some of the things that you can try.
1. Verify that the directory actually exists, and that you are creating files in the directory.
2. Just using fileStream without specify the types of generics K, V F may not work. I would strongly suggest you use textFileStream() and generate plain text files to see whether it works.
3. There may be some issue with your HDFS setup (permissions, etc.). Try running the textFileStream with a local filesystem directory and see whether it works.
Keep me updated on what you find.
TD