Initial Release
This demo shows how we can use IRIS Interoperability to stream tweets using the standard HTTP Streaming Protocol and the Twitter Streaming API. This Twitter API is different from the Search API because we can receive the tweets in real time. It is also different from the Firehose Streaming API because we are not receiving all the tweets but a fraction that will depend on the traffic. But for many applications such as sentiment analysis that is just fine.
You will be able to take your phone and make a tweet with the content you want (ex.: “This phone is not that bad! The weather will be great today! #irisdemo”). You have to use the #irisdemo hashtag because the Business Service is configured to filter tweets by this hash tag.
Then you will be able to see the tweet coming into your production and being stored on the database layer. The production will then go on and call a service on the database layer that uses IRIS Natural Language Processing (NLP) to give you a sentiment score. The service layer picks the sentiment score and uses the rest of the metadata on the tweet such as number of followers the user has, and number of times the tweet has been retwetted. An IRIS Business Rule will use all this information to determine if the call center needs to be notified about this tweet or not.
The picture bellow shows the workflow:
You will also notice that this is also the demo’s landing page and that there are buttons at the bottom of it. One of them says Show Instructions. Click on that button to see the next instructions on how to start receiving realtime tweets!
To run this demo you must have a Twitter Developer account and a twitter application created on twitter. The application you create on twitter will provide you with your Consumer API Keys and Access token & access token secret credentials.
Start the process of getting the developer account WEEKS BEFORE you decide to try this demo. There is no formula to getting a twitter developer account. They are very strict about giving developer accounts to people. You can try opening one with your personal e-mail account, telling them that you are studying the Twitter API and that you don’t have an application in mind right now. Or you can say that you are a consultant that is studying a twitter library and need a developer account to do some tests (I like this better). They will ask you what is the nature of your business or customer. They are very worried about how you are going to use twitter data.
Once you get your twitter developer account, you can create your twitter application. Here is the screenshot of the twitter application I created for me:
After creating the App, click on the Details button on the right of your new application and click on the Keys and Tokens tab. You will see your Consumer API Keys and Access token & access token secret credentials.
Don’t forget to click on the Instructions button at the landing page of the demo. It will give you detailed instructions on how to use the demo.
To just run the demo on your PC, make sure you have Docker installed on your machine. You can quickly get it up and running with the folloing commands:
wget https://raw.githubusercontent.com/intersystems-community/irisdemo-demo-twittersentiment/master/docker-compose.yml
docker-compose up
If you are using Windows, you can also right click on this link and chose Save As… from the context menu to save the file on your disk if you are using Windows.
You can also clone this repository to you local machine to get the entire source code. You will need git installed and you would need to be on your git folder:
git clone https://github.com/intersystems-community/irisdemo-demo-twittersentiment
cd irisdemo-demo-twittersentiment
docker-compose up
Both techniques should work and should trigger the download of the images that compose this demo and it will soon start all the containers.
When starting, it is going to show you lots of messages from all the containers that are staring. That is fine. Don’t worry.
When it is done, it will just hang there, without returning control to you. That is fine too. Just leave this window open. If you CTRL+C on this window, docker compose will stop all the containers (and stop the demo!).
After all the containers have started, open the demo landing page on http://localhost:9092/csp/appint/demo.csp.
Use the username SuperUser and the password sys. This is just a demo that is running on your machine, so we are using a default password. You will see the demo landing page. Everything that is purple on this screen is something you can click an open a specific screen of the demo. Click on the bottom/right button that reads Show Instructions to understand how to configure your Twitter credentials on the demo.
This demo uses docker-compose to start four services:
This demo helps us to demonstrate:
There are other IRIS demo applications that touch different subjects such as NLP, ML, Integration with AWS services, Twitter services, performance benchmarks etc. Here are some of them:
Here are additional resources related to this application:
Please, report any issues on the Issues section.
If you are facing any type of problems, please check the Troubleshooting document for guidance.