I am following Microsoft's official Azure documentation: Analyze real-time Twitter sentiment with HBase in HDInsight tutorial to create a simple real-time tweets streaming service which will write tweets into a HBase table hosted on Azure HDInsight HBase cluster.
I have set my Twitter app credentials correctly. I am using the latest Microsoft HBase .NET Library and the latest TweetinviAPI .NET C# library (0.9.10.1).
var credential = Auth.SetUserCredentials(TWITTERAPPAPIKEY, TWITTERAPPAPISECRET, TWITTERAPPACCESSTOKEN, TWITTERAPPACCESSTOKENSECRET);
var stream = Stream.CreateFilteredStream(credential);
I couldn't understand the reason behind why there is no real-time tweets write into my HBase table from my streaming service program.
Appreciate any help!
Thanks in advance.