Posts

Showing posts with the label #Hortonworks

downloading folders from google drive.

I wanted to download some course material on RL shared by the author via Google drive using the command line.  I got a bunch of stuff using wget a folder in google drive was a challenge. I looked it up in SO which gave me a hint but no solution. I installed gdown using pip and then used: gdown --folder --continue https://drive.google.com/drive/folders/1V9jAShWpccLvByv5S1DuOzo6GVvzd4LV if there are more than 50 files you need to use --remaining-ok and only get the first 50. In such a case its best to download using the folder using the UI and decompress locally. Decompressing from the command line created errors related to unicode but using the mac UI I decompressed without a glitch.

Streaming events to BigQuery

Image
Here are my notes from "Streaming events with Kafka to BigQuery and Logging" Meeting of Big Things Meetup which took place at Poalim Tech Offices. The work space is quite amazing and there were many people working as late as 10 PM. Poalim Tech has is a great host for medium sized meetups. On the left, the obligatory pizza overdose BigQuery - a serverless analytics warehouse is the destination for the data. Google BigQuery in brief BigQuery is Google's Analytics serverless database  solution based on colosul and providing as yet unmatched scaling capabilities. Usage cost are typically 5 USD per TB processed. Pros are:  serverless data warehouse solution. a powerful command line interface. an SQL based interface with noSql performance. Good code examples. Cons are:  that queries can eat up many thousands of USD of compute time. clunky web interface. Apache Kafka in brief Kafka is used to build  streaming data pipelines ...

Popular posts from this blog

downloading folders from google drive.

Random Thoughts on Linear Regressions

SQL - Selection v.s. Projection