google-cloud-datastore Questions

3

Solved

I created a new property for my db model in the Google App Engine Datastore. Old: class Logo(db.Model): name = db.StringProperty() image = db.BlobProperty() New: class Logo(db.Model): name ...
Imphal asked 28/2, 2009 at 20:16

7

Solved

I am a first time user of Gcloud. When I run the following command: gcloud beta functions deploy FirstBot --stage-bucket [BUCKET_NAME] --trigger-http I'm getting this error in my cmd: ERROR: (...
Lysippus asked 26/7, 2017 at 4:30

5

I am building an application that will run on Google App Engine (GAE). It will need access to data stored by the user in other systems (e.g. the user's Nest thermostat, Yahoo mail). The application...

1

As part of the implementation of a Cloud Function under Google Cloud Platform, executed with Nodejs 8, I have to store information in GCP Datastore. I use TypeScript which is compiled in Javascrip...

2

Solved

I'm learning about Google App Engine and Googles datastore from here and they keep mentioning "low-level Java API." What exactly is a "low-level Java API" and how does it differ from a "high-leve...
Armistead asked 17/6, 2015 at 16:14

1

I am trying to unit test the below listEntities function by mocking runQuery and createQuery functions. Maybe I should just give up and do an integration test with an emulator. Anyway, here is my c...

3

Solved

Context:- We are using GAE with Python3 and so GAE APIs package isn't available so we are using google-cloud-* packages for interacting with GAE services i.e. google-cloud-tasks for push queues, ...

4

Solved

I am currently receiving the following error when attempting to access the google cloud service via a java client: Caused by: com.google.api.client.googleapis.json.GoogleJsonResponseException: 40...

2

Solved

I'm running a local stand-alone datastore emulator using the gcloud tool: $ gcloud beta emulators datastore start It works fine, but I'm missing the integrated /_ah/admin page the old appengine ...
Redpoll asked 1/1, 2017 at 15:41

1

Solved

When I deploy a python3 application using Google App Engine Flex I get the following error: File "<frozen importlib._bootstrap>", line 994, in _gcd_import File "<frozen importlib._boots...
Falcongentle asked 5/6, 2020 at 20:22

3

I want to use google's Data Studio tool to make visualizations for the data I have in the Datastore. But it is not available as a source of data on the interface. How can I approach doing this?

5

Solved

Google announced Firestore, the new document datastore on the block. I have been developing an application using Google Cloud Datastore for over six months now and after reading the blog, I feel F...

1

Solved

I have a web application which uses Google's Datastore, and has been running out of memory after enough requests. I have narrowed this down to a Datastore query. A minimum PoC is provided below, a...
Tuneless asked 23/4, 2020 at 20:59

9

Solved

What is the difference between Google Cloud Bigtable and Google Cloud Datastore / App Engine datastore, and what are the main practical advantages/disadvantages? AFAIK Cloud Datastore is build on t...

6

I found this example on the official site of DialogFlow using Node.js and it is working fine, but I dont know how do I integrate this into my web application. Is it possible that I can integrate t...

2

Solved

There seems to be an increasing overlapping and proliferation of cloud database technologies. In order to make sense of it a comparative approach might help. What are the exact differences betwee...

4

Solved

I'm trying to create a webservice using webapp2 and datastore in python. But whenever i try to run "dev_appserver.py app.yaml" it throws me the following error ERROR 2017-10-11 05:44:16,207 instan...

6

Solved

I'm having trouble with Google's App engine indexes. When running my app via the GoogleAppEngineLauncher, the app is working fine. When deploying the app, I get the following error: NeedIndexError...

2

i am using google cloud storage and google cloud datastore api (locally, for now), in a Standard Environment app. I am having a very weird behaviour trying to running my tests (with pytest): i hav...

1

Solved

The recommended path for upgrading a Python 2 AppEngine app to the new runtime is to switch datastore code to Google Cloud NDB. However, I can't find anything about unit testing code that uses Clou...

6

Solved

https://developers.google.com/datastore/docs/overview It looks like datastore in GAE but without ORM (object relation model). May I used the same ORM model as datastore on GAE for Cloud Datastore...
Backwards asked 20/5, 2013 at 3:12

2

Solved

I am trying to query the Datastore, and my query looks like this: SELECT * FROM mydb WHERE Latitude = "18.1" AND Number > "1" It doesn't work though. I get this error in the Datastore query b...

3

Solved

We are migrating some data from our production database and would like to archive most of this data in the Cloud Datastore. Eventually we would move all our data there, however initially focusing ...
Faucher asked 31/8, 2015 at 16:47

4

Right now I get a blank page when localhost runs, but the deployed app is fine. The logs show the "database is locked". How do I "unlock" the database for localhost?
Somatic asked 14/12, 2013 at 1:42

8

Solved

Is it Oracle or MySQL or something they have built themselves?
Reason asked 12/12, 2008 at 14:48

© 2022 - 2024 — McMap. All rights reserved.