HackerTrans
TopNewTrendsCommentsPastAskShowJobs

AntonioL

no profile record

Submissions

Beyond the hype

albertosadde.com
2 points·by AntonioL·w zeszłym roku·0 comments

comments

AntonioL
·w zeszłym roku·discuss
Reminds me of the work from Bob Coecke at the University of Oxford. He came up with a pictorial language for quantum processes.
AntonioL
·2 lata temu·discuss
Try engage with Entrepreneur First. Great community
AntonioL
·3 lata temu·discuss
At my shop we do exactly this, we do ELT as opposed to ETL. (E=Extract, L=Load, T=Transform). We put our input files (think of JSON documents) in the database, and then the data processing is a materialised SQL query. This has a few benefits: - The SQL dumps are very light as they will consist only of the input files, the materialisation is just a query, no need to store the transformed data. - Some time there is an error in the business logic, how do we backfill? That is easy, we update the body of the materialised SQL query and then refresh the materialisation. - Transactions are very hard.

We find this great for batch use cases.

Exciting to see progress in this space in the last years: - materialize for incremental maintenance of materialised views - postgres has a patch to start support incremental maintenance of materialised views in the works .
AntonioL
·4 lata temu·discuss
It was initially an one-man side project, inspiring how it grew!
AntonioL
·4 lata temu·discuss
Thanks for sharing
AntonioL
·5 lat temu·discuss
Lot of interesting ideas to move computation close to where the data reside can be found in this paper: http://www.cs.ox.ac.uk/dan.olteanu/papers/soc-sigmod16.pdf this is an example of how linear regression can be implemented which is intimately related to the article.