Google Cloud Collective

Google Cloud provides organizations with leading infrastructure, platform capabilities and industry solutions to help them solve their most critical business problems.
Google Cloud provides organizations with leading infrastructure, platform capabilities and industry solutions to help them solve their most critical business problems.

Questions

Browse questions with relevant Google Cloud tags

278,437 questions

0 votes
0 answers
5 views

Cloud Storage & Manipulation with External APIs (Azure/AWS)

More of a non-technical question. Apologies if this isn't the place for it. Background Info: At the moment I've connected an external API from an Accounting Software service to Excel where I use Power ...
user avatar
  • 86
0 votes
1 answer
5 views

How to pre-load data to avoid multiple firebase reads in Angular

Problem: A specific component in my web app reads a large amount of data from Firebase Firestore every time a user navigates there. This causes hundreds of thousands of un-necessary reads to my ...
user avatar
  • 57
0 votes
0 answers
3 views

How do I get url with token of uploaded file to firebase storage?

I am trying to get the URL of a file I'm uploading to Firebase Storage. I want the URL that includes the token at the end, the one that looks like this: https://firebasestorage.googleapis.com/v0/b/...
user avatar
  • 45
0 votes
0 answers
5 views

How can I store two digit month in Firebase using Java?

I've now tried a couple of different methods to get the format I want in my Firebase Database: I use the java.util.Calendar import in Android Studio. Method 1: if (endMonth <= 9) { ...
user avatar
0 votes
0 answers
6 views

Firebase - Should I create a new app or keep it as one large app?

What would you all say is the best time to split off into a new “app” under the same Firebase project. For example, if you have a student portal that accesses info from the database for students, but ...
user avatar
0 votes
1 answer
8 views

How to retrieve other child value when a specific child value is known

https://i.stack.imgur.com/HHuaO.png I wonder if there's any way where when I try to retrieve the specific email, I get the other child value which is the id. For example, I retrieve the louis@gmail....
user avatar
0 votes
0 answers
9 views

Loop through a string arrayList while using a string on firebase

So I have a simple ecommerce app that has products(custom objects) on the cart and a proceed to checkout button. When the button is pressed I send an ArrayList with product ids with the intent so I ...
user avatar
0 votes
1 answer
7 views

Set a default Cloud Run region? (GCP)

Whenever running a Cloud Run service on Cloud Shell: gcloud run deploy myapp --image gcr.io/myproject-1831713/myapp I'm always asked to input a Cloud Run region as shown below: Please specify a ...
user avatar
0 votes
0 answers
11 views

Firebase Auth - How to update user email and execute catch if email is already registered

I know in order to update a user's email the user must have been recently been logged in which I have taken care of with reauthenticateWithCredential(credential) Where I'm at now is trying to update ...
user avatar
0 votes
0 answers
3 views

Uploading an mp3 to Firebase Storage with React Native Expo

I am attempting to upload an mp3 to firebase storage using expo and react native. So far I've got the file into firebase storage, but it's only 9bytes large, so I'm doing something wrong. I've ...
user avatar
0 votes
0 answers
11 views

DatabaseReference for each listview item

so i am working on groupchats for my app, and im trying to display the last message sent. i have got the listview through a fragment and thats why this custom view is made in a separate class. it ...
user avatar
0 votes
0 answers
7 views

helm - provide file as a cert

I am defining the path to the certs: root path certs (folder) templates (folder) value.yaml tlsSecret: enabled: true secrets: - name: ca-secret key: values.schema.json ...
user avatar
  • 17
0 votes
0 answers
6 views

Firestore Recyclerview item doest update when doing add, update, delete data

i have problem when doing add, update, and delete with my firestore recyclerview. The problem is my recyclerview item updating automaticcaly when doing add, update, and delete. But when i open my ...
user avatar
-2 votes
0 answers
19 views

Cloud Run concurrent request limits ( blocked at 3000 req/ second) at 1000 requests per container

I have a load balancer that ties 3 cloud run instances (1 in AU, 1 in UK, 1 in US). For the testing case I am targeting the AU instance via the load balancer. Cloud run configuration: 1GB memory 2CPU ...
user avatar
  • 1
1 vote
0 answers
9 views

Beam to BigQuery silently failing to create BigQuery table

I am building a data pipeline from PubSub to Beam (Direct/Dataflow Runner) to Big Query. Today we started to run into issues where beam IO BigQuery connector stopped creating tables automatically and ...
user avatar
-2 votes
1 answer
29 views

something wrong with error function in react

There is something wrong with my error function when I look at my browser error and I don't why putting down a console.log with error would be a problem. I could use help figuring out this problem. It'...
user avatar
0 votes
0 answers
12 views

Create messaging apps using real time database in java

I am working on the creation of a java project on Android Studio using the real time database on Firebase, the application is a messaging application in which the user has a list of contacts with ...
user avatar
0 votes
0 answers
6 views

How to deploy Nuxt SSR in Firebase with Cloud functions

I'm playing with Nuxt in mode SSR and Firebase + Cloud functions, after deploy, everything working fine, no errors in the console from nuxt project, no errors in the functions log, but I got a page ...
user avatar
-3 votes
0 answers
22 views

Node.js function never returns and keeps running

Excuse my poor code form, I'm a newbie to Node.js. Essentially this code has been working for me for a couple of months but I've had the problem where the function only triggers once (I've tested it ...
user avatar
0 votes
1 answer
8 views

Reattach shell session to process running on Ubuntu

I have an ongoing process running on a GCP vm. When initially start the program it spits our logs in real-time from the shell session, however when I exit the session and re-connect the next day the ...
user avatar
-1 votes
0 answers
8 views

firebase java.lang.IllegalArgumentException: Modal model must have a title

I'm using Firebase In App Message in my application and trying to use custom display in the messages. When i try to use the markAsClicked callback, he asks for an Action as argument, but the getAction ...
user avatar
0 votes
0 answers
13 views

Updating text moderation in real time

I am implementing a real time chat with text moderation. I'd like for moderators to be able to add words to the filter and have it be applied to the Google Cloud function instantly. Two ideas I had: ...
user avatar
0 votes
0 answers
14 views

GCP PubSub java client's Publisher - concurrency not working with Kafka Consumer

I am trying to consume messages from Kafka and publish them to Google PubSub. We have 4 Kafka concurrent consumer threads and I injected the Google pubsub client's Publisher. But the Publisher is not ...
user avatar
0 votes
1 answer
8 views

best way to gracefully shutdown process running on Google Cloud VM

I'm running a blockchain node validator in a GCP ubuntu vm and need to shut it down so I can restart it. What's the best way to stop just the validator, and not the entire vm? The blockchain docs ...
user avatar
0 votes
0 answers
6 views

Return Browser-Understandable Status Code with Callable Firebase Cloud Functions

I'm aware that a status code that is interpretable by the browser can be sent via Firebase Cloud Functions when using the onRequest method, however, I would like to return a status code using on ...
user avatar
  • 849
0 votes
0 answers
9 views

Can I automatically do Rolling, Blue-Green and Canary Deployments on Cloud Run (GCP)

I come from AWS. I used to automatically do Rolling, Blue-Green and Canary Deployments with CodeDeploy on AWS. Then, when I came to GCP and read Rollbacks, gradual rollouts, and traffic migration, it ...
user avatar
1 vote
1 answer
9 views

Can I change Storage Type from HDD to SSD on Cloud SQL after creating an instance? (GCP)

I'm trying to change Storage Type from HDD to SSD on Cloud SQL after creating an instance as shown below but there are no options to do it: Is it impossible to change Storage Type from HDD to SSD on ...
user avatar
0 votes
0 answers
9 views

Run Websockets with SSL for a Production Application (py2exe)

I am building a python application that is packaged as an EXE. This application runs as a Websockets server and communicates with a web app hosted on Firebase. However, the issue is that the web app ...
user avatar
  • 306
1 vote
3 answers
27 views

How to find employee department changes?

I have a table that has the old departments and new departments of various employees: EmployeeID OldDept NewDept 123 Design Design 234 Software Engineering 345 Design Software 456 Advertising ...
user avatar
  • 19
0 votes
1 answer
33 views

'firebase' is not defined error using React

I looked at the websites with this problem, but none of those apply to my situation. I don't know why 'firebase' is not defined. I don't know what's wrong with my code, I need someone to look at it. ...
user avatar
0 votes
0 answers
12 views

How to create index in BigQuery on a jsonPayload field of a GCP log?

I'm exporting my GCP logs to BigQuery to view them better. From here, it seems like fields in the jsonPayload of my logEntry, would be turned into a jsonPayload. field in the BigQuery table. One of ...
user avatar
1 vote
0 answers
31 views

How can I construct a user from a user json?

I am using the CDN import method for SDK v9. I would like to know, given that I have a JSON-serializable representation of a user object, how can I construct a user object, so that I can use it with ...
user avatar
  • 456
0 votes
0 answers
3 views

How do I use my Personal Google ID with docker build when using Google Artifact Registry?

Currently I have the following Docker file... FROM node:16-alpine RUN apk add curl gnupg RUN (curl -Ls https://cli.doppler.com/install.sh || wget -qO- https://cli.doppler.com/install.sh) | sh RUN ...
user avatar
  • 19.4k
0 votes
0 answers
7 views

I tried to update a label from my app and recieve data from others classes and this happened:

This is the first code: def press(self): name1 = accont.name1 email1 = accont.email1 screen4 = self.root.get_screen("screen4") screen4.ids.home_text.text = f'Hello {str(...
user avatar
0 votes
0 answers
12 views

Data ingestion with dataflow write to bq file error

I'm trying to ingest a csv file into bigquery using apache beam and dataflow here's my code: import logging import apache_beam as beam from apache_beam.options.pipeline_options import PipelineOptions ...
user avatar
0 votes
0 answers
11 views

Flutter FirebaseAuth error The function can't be unconditionally invoked because it can be 'null' Want to get QR Code

I want to create a flutter code to generate and show the QR Code. The QR Code is the current logged-in user uid from firebase. But I've got an error in firebase auth. How can I fix this?
user avatar
0 votes
1 answer
14 views

How to ignore "image not found" error in cloudbuild.yaml when deleting images from the artifact registry?

Currently the cloudbuild.yaml looks like this: steps: - name: 'gcr.io/cloud-builders/gcloud' args: [ 'artifacts', 'docker', 'images', 'delete', 'location-docker.pkg.dev/$PROJECT_ID/repository/image' ...
user avatar
0 votes
1 answer
8 views

Pass data to redirect page JS

I use fire base auth with javascript and i want to send client to his profile page using his id i want to send the userId through the window.location.href I tried jquery post request but i didnt know ...
user avatar
0 votes
1 answer
11 views

How to execute simple query of Big Query table from Google App Script

I'm having trouble figuring out how to execute a simple delete query against a Big Query Table from an app script function. The query works when executing from the Big Query console. The error is ...
user avatar
0 votes
1 answer
22 views

Flutter: Error when loading scaffold body from a row page seperate file

I have a home file that contains a bottom app bar, I use it to navigate through 4 other pages by returning them in the Scaffold's body property, I also have an authentification file which also returns ...
user avatar
0 votes
0 answers
11 views

Firebase cloud functions folder not showing

I am using firebase with react native . Trying to write some firebase cloud functions. For that i have used firebase init . On console it gives a success message but the function folder is not been ...
user avatar
0 votes
0 answers
13 views

delete cell from listview and database fire base in xamarin forms

I have a list view which contains cells like this : <StackLayout Orientation="Horizontal" Margin="30,0,20,0" VerticalOptions="Center"> <Label Grid.Row="0&...
user avatar
-1 votes
0 answers
8 views

How does Firebase and MongoDB Atlas Synchronise Time?

Does anyone know how the following services take their time references from. In other words: with what source do they sync their time reference? Firebase MongoDB Atlas Found out that AWS services ...
user avatar
  • 636
0 votes
0 answers
18 views

Installing python packages in Serverless Dataproc GCP

I wanted to install some python packages (eg: python-json-logger) on Serverless Dataproc. Is there a way to do an initialization action to install python packages in serverless dataproc? Please let me ...
user avatar
  • 1
0 votes
0 answers
4 views

Firebase google login working in release build, but review team gets error 12501

In Firebase I have added the Google SHA-1 hashes listed under the "app integrity" section in the Play console. The login system is working on the signed release build. I am using my own ...
user avatar
0 votes
0 answers
8 views

get .apk app info programmatically on cloud

So, I am new to Cloud Shell Basically I have a Firebase Project, and android .apk (from Flutter). I don't want to use "App Distribution" or "Play Store", I want my own app ...
user avatar
  • 11
0 votes
0 answers
10 views

Attaching Godaddy domain name to firebase

Why this is showing in firebase hosting that my Go daddy domain name may be connected with another project. I have not connected my domain name with any project. Now when my i am trying to connect my ...
user avatar
0 votes
0 answers
10 views

Error on child(localKey).setValue(item) to update firebase

i set private Query requests; for a query on firebase requests = db.getReference("Requests") .orderByChild("status") .endAt("1"); and on ...
user avatar
-1 votes
0 answers
20 views

Flutter- Future<int> is not changing to int

I am trying to make a PopupMenuButton that takes items from my firebase collection, counts the number of items, then makes that many tabs in the Popup area. However, it keeps telling me that I need to ...
user avatar
0 votes
1 answer
8 views

How to count elements based on a unique value in BigQuery

I have this table 1 in Bigquery and I need to count the elements in column segments and category that correspond to a single user id. Desired outcome presented in table 2. I haven't been able to ...
user avatar


15 30 50 per page
1
2 3 4 5
5569