| 1 | = 2013-08-14 = |
| 2 | |
| 3 | {{{ |
| 4 | #!html |
| 5 | <br /> with_country = STREAM notbots THROUGH `ipwrapper.sh $GEO`<br /> AS (country_code, country, state, city, ip, time, uri, bytes, userAgent);</p> |
| 6 | <p>geo_uri_groups = GROUP with_country BY country_code;</p> |
| 7 | <p>geo_uri_group_counts = FOREACH geo_uri_groups GENERATE<br /> group,<br /> COUNT(with_country) AS cnt,<br /> SUM(with_country.bytes) AS total_bytes;</p> |
| 8 | <p>geo_uri_group_counts = ORDER geo_uri_group_counts BY cnt DESC;</p> |
| 9 | <p>STORE geo_uri_group_counts INTO 'by_country.tsv';<br /> |
| 10 | }}} |