ldnclj

Find us on #clojure-uk
thomas 2015-12-16T08:51:10.000626Z

morning

afhammad 2015-12-16T08:52:59.000627Z

morning

afhammad 2015-12-16T08:57:33.000628Z

non clojure specific question: What do you guys use for advanced reporting (medium data, not big data)? do you build reports from scratch with each new system? do you dump your data to a separate denormalised db? use a 3rd party tools and just plugin ur queries?

xlevus 2015-12-16T08:58:43.000629Z

Morning

xlevus 2015-12-16T08:59:00.000630Z

@afhammad: my $client dumps all their data into Big Query

xlevus 2015-12-16T08:59:48.000631Z

like, all their data.

afhammad 2015-12-16T09:00:41.000632Z

@xlevus: does it have its own reporting UI?

xlevus 2015-12-16T09:01:29.000633Z

nah. But they build queries to report on it daily.

xlevus 2015-12-16T09:02:01.000634Z

which are run/export into google docs

xlevus 2015-12-16T09:03:06.000635Z

it's not the prettiest. But it allows them to do other things, like run their marketing poo off bigquery too

afhammad 2015-12-16T09:04:03.000636Z

interesting, will look into it, thanks

xlevus 2015-12-16T09:04:50.000637Z

I've also found it helps for debugging. Shit goes wrong, you can spend a day drudging through terrabytes of data working out why

xlevus 2015-12-16T09:08:17.000638Z

It's probably closer to the 'big' size of data. Some of the tables are in the tens of millions of rows a month area

afhammad 2015-12-16T09:13:13.000639Z

Yeh not quite at that level, more so in the hundreds of thousands. I have a couple of clients (currently running on Rails) that are approaching the need for more advanced reporting, im looking for options to decouple it from their systems and kill a few birds with one stone.

mccraigmccraig 2015-12-16T10:31:01.000640Z

@afhammad: i've used elasticsearch to great effect - the aggregations framework is great for building fast analytic queries - responses in <100ms over tens of millions of docs

mccraigmccraig 2015-12-16T10:31:51.000641Z

@afhammad: e.g. http://www.techmap.london/

afhammad 2015-12-16T10:39:06.000643Z

@mccraigmccraig: thanks. I’ve used elasticsearch briefly and its one of the options i’m considering.

glenjamin 2015-12-16T22:07:03.000644Z

Amazon redshift seems pretty good