Anjanesh LekshminarayananforAnjanesh's Perception on Cloudanjanesh.cloud·Sep 28, 2023How to connect to a Google Cloud PostgreSQL 15.2 SQL instance remotely from WindowsI had previously .installed PostgreSQL 15.2 on my Windows 11 machine Stop a running instance of PostgreSQL on locahost:5432 net stop postgresql-x64-15 Create a new SQL instance at https://console.cloud.google.com/sql/ I choose PostgreSQL, it's simil...Discussgoogle cloud
John Mamodudatatechinsights.hashnode.dev·Sep 27, 2023Comparing Major Cloud Service Providers: AWS vs. Azure vs. Google CloudIntroduction In the rapidly evolving landscape of cloud computing, choosing the right provider can be a pivotal decision for businesses and individuals alike. Three major players dominate this space: Amazon Web Services (AWS), Microsoft Azure, and Go...Discuss·53 readsCloud Computing Services
Joan Kaburakaburaj.hashnode.dev·Sep 24, 2023Tafsiri- Outerbase's Multilingual Data Translation PluginIn our increasingly interconnected world, communication knows no boundaries. Whether you're running a global business, managing a multicultural team, or simply trying to connect with people from diverse linguistic backgrounds, language should never b...Discuss·13 likes·2.6K readsOuterbase
Gnana chandra Vutukurignanachandra.hashnode.dev·Sep 17, 2023Automated Node.js Backend Deployment with Google Cloud Run and Cloud Build: A Step-by-Step GuideIntroduction This guide will walk you through the step-by-step process of setting up an automated deployment pipeline for your Node.js backend. The services we will be using are Google Cloud Build, Google Cloud Run, and Artifact Registry. Prerequisit...Discuss·11 likes·69 readsgoogle cloud
Piotrekkrpiotrekkr.hashnode.dev·Sep 17, 2023Fixing "Connection to Cloud SQL instance at IP:3307 failed: timed out after 10s"This was a rather interesting problem to fix. I'm running a PHP app as Google Cloud Run Service. This app is connected to the Cloud SQL instance using a Cloud SQL connection like this: resource "google_cloud_run_service" "pricing" { provider ...Discuss#cloudrun
Nikhil Raonikhilrao.blog·Sep 13, 2023Google Dataflow Optimization: Streaming EngineWhat is Streaming Engine "By default, the Dataflow pipeline runner executes the steps of your streaming pipeline entirely on worker virtual machines, consuming worker CPU, memory, and Persistent Disk storage. Dataflow's Streaming Engine moves pipelin...DiscussApache Beam
Ronil Rodriguesronilrodrigues.hashnode.dev·Sep 10, 2023IAM Permissions and Roles in Google Cloud: A Comprehensive GuideIntroduction Google Cloud Platform (GCP) is a powerful suite of cloud services, and managing access to these resources is critical for security and efficient operation. This is where Identity and Access Management (IAM) comes in. IAM Overview IAM is ...DiscussIAM
Constantin Lungudatawise.dev·Sep 8, 2023Using MAX_BY / MIN_BY in BigQueryJust stumbled upon a nifty SQL function in BigQuery that was new to me. Did you know about MAX_BY / MIN_BY? They're essentially shortcuts for ANY_VALUE(columnA HAVING MIN/MAX(columnB)). And guess what? I had no idea you could use HAVING within ANY_VA...DiscussPractical BigQuerybigquery
Wilhelm Erasmusscooting.dev·Sep 8, 2023Cloud RunThe case for Cloud Run I'm sure by now you have heard the tales of the magical land called Kubernetes and all the benefits that come along with it. What may have slipped the cracks is the darker side of Kubernetes. Yes, I am referring to the proper m...Discuss#cloudrun
Nikhil Raonikhilrao.blog·Sep 5, 2023Apache Beam: WindowingWhat are Windows? Windows are a way to group your data by their event times. But, why do you want to group on time? So you can apply aggregations! An example might be if you have a stream of analytic data coming from mobile phones and want to count t...DiscussApache Beam