Skip to main content
The 2024 Developer Survey results are live! See the results

Google Cloud Collective

Articles

Browse articles with relevant Google Cloud tags

18 articles

2 votes
473 views
3 minute read
How-to guide

How to set maximum storage size limit per user in Google Cloud Storage?

Google Cloud Storage is a highly scalable, durable, and reliable object storage service. It is also cost-efficient as you only pay for what you use. A lot of applications use Google Cloud Storage to ...
Dharmaraj's user avatar
  • 50.2k
1 vote
177 views
1 minute read
Knowledge article

Understanding Multi-Attach Errors in Google Kubernetes Engine

Recently, I encountered the following error while working with a statefulset that had only one replica: Warning FailedAttachVolume attachdetach-controller Multi-Attach error for volume <pvc_name>...
Nani's user avatar
  • 807
6 votes
461 views
1 minute read
Knowledge article

The upgrade to GKE 1.26+ activates cgroup v2, causing disruptions to java based workloads.

Hey folks at GKE As the GKE v1.25 is nearing its end-of-life, it is important to understand the impact of the upgrade before proceeding with the cluster upgrade operation. I have come across an issue ...
Nani's user avatar
  • 807
3 votes
21k views
3 minute read
How-to guide

How to complete GCP Docs/Tutorial when your Organization Policy blocks External IPs?

How to complete GCP Docs/Tutorial When Your Organization policy blocks External IPs on VMs? In this how-to you will be resolving a common Organization policy constraint of not allowing External IPs on ...
codeangler's user avatar
46 votes
3k views
1 minute read
How-to guide

Listen for authentication state in Android

In Android apps that use Firebase Authentication, you can always get the user who is currently signed in with code like: FirebaseAuth auth = FirebaseAuth.getInstance(); FirebaseUser user = auth....
Frank van Puffelen's user avatar
0 votes
172 views
2 minute read
Knowledge article

Solving Firebase v9 Code Clutter with a Dot Pattern Helper Class in TypeScript To Help Maximize Firebase v9 bundle Efficiency

Since the release of firebase v9, the bundle size of the client has reduced substantially since now the functions that are used are the only ones being imported and bundled. But this modularity comes ...
Frank van Puffelen's user avatar
2 votes
541 views
6 minute read
Knowledge article

8 Labs by Google Cloud The Arcade — Trivia Jul 2023

If you've never heard The Arcade by Google Cloud, it's a Qwiklabs and Google Cloud program where they create a learning experience for you where you can win prizes and measure your cloud knowledge ...
Maureen Barahona's user avatar
3 votes
978 views
2 minute read
Knowledge article

Why might I be seeing a reCaptcha when doing Phone Auth?

If you've built (or used) an Android app that uses Firebase Authentication recently, you may have noticed a reCaptcha popup to verify that you are NOT a robot. What's going on here? Why do you see ...
Alexander N.'s user avatar
  • 1,578
0 votes
227 views
1 minute read
Knowledge article

Why to choose Serverless Microservices?

Serverless microservices are cloud-based services using serverless functions to complete a specific role in the application. Serverless computing is basically a method of providing backend-managed ...
Srinivas's user avatar
-3 votes
693 views
3 minute read
Knowledge article

Limiting costs on BigQuery and Looker — Batch and Stream analytics

There are a few options on how to address high costs on BigQuery and Looker, and that’s what I’ll be going through in this post What lead me to write this? I was trying to limit costs on an ETL ...
Renato Cesar de Oliveira's user avatar
5 votes
460 views
2 minute read
How-to guide

Offline file upload with Firebase

Offline file sync with Firebase Main goal Let the user add files/images to Firebase Storage regardless of network connection. The UX should let the user see the files added immediately in the UI. The ...
Tarik Huber's user avatar
  • 7,340
2 votes
190 views
2 minute read
Knowledge article

Selecting the right method for data transfer from BigQuery to Google Sheets via connected sheets

TL;DR You can export up to 15,000 rows of data from BigQuery to Google Sheets with minimal impact on performance and refresh time You should use "aggregate extraction" for datasets that ...
Dimi's user avatar
  • 472
-4 votes
174 views
1 minute read
How-to guide

Google Sheets: Conditional Formatting Based Upon Past, Today, or Future

How can I automatically change the colour of a cell, based on another cell's date? Example Data for Exams: Let's imagine I had the following spreadsheet, and Today's Date is the 1st January 2022: ...
taylor.2317's user avatar
2 votes
411 views
1 minute read
How-to guide

How to Resize GKE PVC disk

Expand the GKE PVC disk storage. Expand the PVC in GKE : Check your storage class configuration first and look for allowVolumeExpansion: true apiVersion: storage.k8s.io/v1 kind: StorageClass metadata:...
Harsh Manvar's user avatar
  • 29.2k
5 votes
231 views
1 minute read
How-to guide

How to highlight duplicates through conditional formatting in Google Sheets

How can I make all duplicate values in Column C bold in Google Sheets? Instructions Select the whole of column C Click on Format --> Conditional Formatting Click "+ Add another rule" ...
taylor.2317's user avatar
-14 votes
2k views
1 minute read
How-to guide

Faster Cloud Storage transfers using the gcloud command-line

A new set of Cloud Storage commands in Cloud SDK – gcloud storage – includes a new approach to parallelization that can accelerate both small and large data migrations. While gsutil cp remains ...
thomasmaclean's user avatar
0 votes
194 views
3 minute read
How-to guide

How to use service account on behalf of Google Workspace domain administrator - AdminAPI/.NET Framework

A service account is a special kind of account used by an application, rather than a person. You can use a service account to access data or perform actions by the robot account itself, or to access ...
Ryan M's user avatar
  • 19.7k
1 vote
613 views
2 minute read
How-to guide

Upload Image with Expo and Firebase Cloud Storage

User-uploaded images are common in mobile apps, how can be done with Expo and Firebase cloud storage? - let's find out the solution. Request a device media library files access permission Both iOS and ...
Fiston Emmanuel's user avatar