-
Notifications
You must be signed in to change notification settings - Fork 0
Technical architecture
SnowPlow has a very different architecture from conventional open-source web analytics packages such as Piwik piwik or [Open Web Analytics] owa. Where those packages are built on a tightly-coupled LAMP stack, SnowPlow has a polyglot, loosely-coupled architecture, involving:
- A JavaScript event tracker
- A CDN ([Amazon CloudFront] cloudfront)
- An immutable flatfile-based data store ([Amazon S3] s3)
- JVM-based "big data" storage and querying tools ([Apache Hadoop] hadoop and Hive hive).
In the rest of this page we explain our rationale for this architecture, map out the technical components and finally flag up the strengths and limitations of this architecture.
SnowPlow's distinctive architecture has been informed by a set of key design principles:
- Extreme scalability - SnowPlow should be able to scale to tracking billions of customer events without affecting the performance of your client (e.g. website) or making it difficult to subsequently analyse those events
- Track everything - conventional analytics packages encourage you to only track the "important" events - but how can you know what's important until you come to the analysis stage (maybe months later)? With SnowPlow, we recommend you track as many events as you can, and figure out what they mean later
- Separation of concerns - event tracking and event analysis should be two separate systems, only loosely-coupled. In particular, business logic in your analysis system should not bleed into the client-side tracking setup
- Permanent event store - events should be stored in a simple, non-relational, immutable data store: there should be no costly "updates in place", and no subsequent analysis should corrupt the raw event data
- Direct access to that event store - you should have direct access to your raw event data at the atomic level, not intermediated by a third-party vendor, or a slow HTTP API. and it should be easy to join the SnowPlow event data to other data sources (e.g. demographic, CRM, e-commerce transactional or geographic)
- Extremely flexible. SnowPlow should make it easy for business analysts, data scientists and engineers to query and analyse its event data in as wide a range of analytical tools (e.g. Hive, R, Cascalog, Sky EQL) as possible
The current technical architecture for SnowPlow looks like this:
![SnowPlow Technical Architecture] tech-architecture
This section to come.
This section to come.
Home | About | Project | Setup Guide | Technical Docs | Copyright © 2012-2013 Snowplow Analytics Ltd