I'm indexing a MySQL table in ElasticSearch (full-text search). Instead of sending each new row at the time of its creation, we do a SQL query each N seconds (~30 seconds) for new records in that table. We do that by storing the last processed record ID (auto_increment) and issuing a query like:
SELECT * FROM myTable where id > lastProcessedId
My question: is this a good way to handle this? Are there any critical drawbacks? Are there any better alternatives?
We were also planning to use the same approach to handle users 'likes' (facebook style). Every N seconds we do a SQL query to get the latest 'likes' then process them and update each users' timeline.
We are trying to do it this way to avoid to mess with an old code base. But I'm not very comfortable with issuing this type of query each second, for example.
Any thoughts or problems with this solution?