I would be suspicious of most tech talks on this. If someone is giving a tech talk on their analytics systems, they are either working at enormous scale (Facebook, Google), selling something (Splunk), or over engineering their system (many startups). I second advice elsewhere in this thread. Log it into PostgreSQL. If you start overloading that, look into sampling your data before you look into a fancier system. Make…
Ask HN: Good tech talks on how analytics systems are implemented?
51–60 of 87 posts
Re: Ask HN: Good tech talks on how analytics systems are implemented?
#52I would be suspicious of most tech talks on this. If someone is giving a tech talk on their analytics systems, they are either working at enormous scale (Facebook, Google), selling something (Splunk), or over engineering their system (many startups). I second advice elsewhere in this thread. Log it into PostgreSQL. If you start overloading that, look into sampling your data before you look into a fancier system. Make…
Re: Ask HN: Good tech talks on how analytics systems are implemented?
#53Re: Ask HN: Good tech talks on how analytics systems are implemented?
#54 https://www.youtube.com/watch?v=XBuQg1ZElao
http://www.erlang-factory.com/static/upload/media/1395920416434704ef2014_anton_lavrik.pdfRe: Ask HN: Good tech talks on how analytics systems are implemented?
#55I would be suspicious of most tech talks on this. If someone is giving a tech talk on their analytics systems, they are either working at enormous scale (Facebook, Google), selling something (Splunk), or over engineering their system (many startups). I second advice elsewhere in this thread. Log it into PostgreSQL. If you start overloading that, look into sampling your data before you look into a fancier system. Make…
Can you elaborate on the log then load advice? Specifically the problems it solves or issues it prevents?
Re: Ask HN: Good tech talks on how analytics systems are implemented?
#56- Who will be viewing these reports when they are done? Who do you want to have a view of the data eventually?
- How fresh do you need the data to be? Is 24 hours, 4 hours, or 4 seconds okay to wait?
- Do you need to be alerted of anomalies in the data?
- How long do you intend to store the raw data? Aggregated data?
- Does your data need to contain anything that could personally identify a user in order to make a useful analysis? Do you serve customers in the EU?
I'll check back later today and see if I can provide any insights based on your response.
Re: Ask HN: Good tech talks on how analytics systems are implemented?
#57I would be suspicious of most tech talks on this. If someone is giving a tech talk on their analytics systems, they are either working at enormous scale (Facebook, Google), selling something (Splunk), or over engineering their system (many startups). I second advice elsewhere in this thread. Log it into PostgreSQL. If you start overloading that, look into sampling your data before you look into a fancier system. Make…
Re: Ask HN: Good tech talks on how analytics systems are implemented?
#58https://github.com/countly/countly-server
While we have used MongoDB, Nodejs, Linux as underlying platforms, there are several options out there you may check.
Note that some (if not most) of the effort would go into SDK development, and to tell you the truth, SDK development is no easy task as it requires knowledge of how different platforms work.
The point is (and take it as a warning): you will never be satisfied with what you have - after you are done with vital data, then there is custom events, raw data, user profiles, online users, and then you will start eating your own dog food as it becomes your part-time job.
Re: Ask HN: Good tech talks on how analytics systems are implemented?
#59Earlier quoted context omitted.
Alternately, log to disk and have another process ingest and write to the database. Appending to files is an amazing persistent queue.
How does your writer process deal with failures / tracking state of what it has written / prune the file when it doesn't need old data anymore? You don't have to use SQS but this problem has tons of available options, I wouldn't resort to rolling your own (if anything just pick up something that works off a leveldb/sqlite/etc file and has already implemented all this boring stuff for you)