This is a bit of a meta-question, and I'll try to include all the relevant bits and bobs. Also, it may be a completely preposterous idea, so don't hate me if it's stupid :)
Anyhow. For the project I'm currently working on, I need to collecting heaps and heaps of data. Currently I'm collecting the data from twitter, later on I might be collecting data from other sources. I've set up R to run on a server and I've written a piece of code (a simple infinite repeat
loop) that continuously collects data along some pre-defined parameters.
Since I started data collection 2 days ago the code hasn't failed. However, what if it does and I don't notice? I'm obviously not monitoring the data collection process constantly. Is there any way, maybe a package for R, or a creative piece of code, that could be built into the loop which would alert me to the fact that the code has failed, or perhaps just send me a daily status update?
I am aware that R is probably not the best way of getting these heaps of data from the web. As it happens, I'm a social scientist and trying to work my way through the whole computer science angle of using big data bit by bit. So, basically, I will try to properly learn Python in the future, as people keep telling me this is a more adequate tool for my endeavours. However, as it stands now, my code is working, and I'd like to make sure I don's miss out on an important development.
Thanks in advance for your help!