I have MySQL DB with one table without joins with ~100 millions of rows. These items can be updated or removed and also new records are saved into MySQL DB periodically e.g. every minute. How can I reach updating indexes in Elasticsearch
when data is updated/changed/deleted in MySQL DB?
Actualizing data is must have for me it’s very important to stay up to date with MySQL. Is it possible? Thanks.
Also I have tried the solution with schedule => "* * * * *" and updated_at > :sql_last_value
but it is very slow.