Tagged Questions
0
votes
0answers
31 views
Google Appengine Java - getServingUrl from CloudStorage
i'm trying to get a servingUrl from a file store in GCS. Here is the code to generate the BlobKey from the cloudStorage data
public BlobKey getCloudStorageBlobKey(String bucket_name, String ...
2
votes
2answers
44 views
Understanding datastore Query object
When looking at debug view of a com.google.appengine.api.datastore.Query object, here is a sample of what I can see:
SELECT * FROM Greetings WHERE greeting = good morning
Is this standard SQL or ...
0
votes
1answer
33 views
Using Objectify to concurrently write data on GAE
Let's for example say I have the following objectify model:
@Cache
@Entity
public class CompanyViews implements Serializable, Persistence {
@Id
private Long id;
private Date created;
...
0
votes
0answers
34 views
Algorithm to merge two immutable Query objects
I'm working on a project called Mungo, a document mapping API to the GAE Datastore.
I'm having some problems with the code below, where goal is to build a datastore Query object out of the given ...
0
votes
0answers
12 views
Google Eclipse Plugin does not like FetchOptions
For some reason whenever I use FetchOptions in my code, eclipse underlines it in red and tells me to remove the FetchOptions so that for example,
Iterable fans = ...
0
votes
2answers
40 views
datastore count query fetchOptions
I want to do the following:
PreparedQuery pq = datastore.prepare(q);
int count = pq.countEntities(FetchOptions.ALL);
But there is no ALL option. So how do I do it?
For context, say I want to count ...
0
votes
1answer
44 views
StackOverFlowError while doing a One-To-One relationship in GAE Datastore using JPA 2.0
I have two tables Folder & VirtualSystemEntry I tried to follow this Dataneclous Turorial but it always results with StackOverFlowException here what I tried so far
Folder.java
@Entity
public ...
0
votes
1answer
24 views
google datastore aggregate query
I have been reading a lot on ways to do aggregate queries on the datastore (thru stackoverflow and elsewhere). The preponderance of answers is that it cannot be done in a pleasant way. But then those ...
1
vote
1answer
40 views
How to create a reliable chat using Google App Engine Data Store (HRE)?
In my application I want to have a live chat feature - in which multiple people (perhaps 5 or more) can chat together at the same time.
I am using a Java based Google App Engine - this is really the ...
0
votes
1answer
37 views
Lazily loaded embedded objects are not fetched completely GAE datastore
I am facing weird problem with Embedded entity inside my parent entity.
Following is the code
Below is my child entity.
@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class ...
0
votes
1answer
24 views
How to add tagging to a database
Say I am working on a free for all blog where writers are allowed to tag their posts (basically twitter et all). How do I do that so that queries are optimized for speed?
I am thinking of having a ...
0
votes
1answer
33 views
Write HTTPServletRequest stream to Datastore of Google App Engine
I am pretty new to App Engine and Java Development and try to receive a InputStream via Http Post and store it into Datastore.
To test this I use the uptime from another computer and send 10 uptime ...
0
votes
2answers
62 views
Designing an app to be deployed with AND without Google App Engine
After I finish developing an app using Google App Engine, how easy will it be to distribute if I ever need to do so without App Engine? The only thing I've thought of is that GAE has some proprietary ...
0
votes
0answers
43 views
Service Unavailable, Deploying Application on Google App Engine
HTTP Error 503 (Service Unavailable): The server is currently unable to handle the request. This code indicates that this is a temporary condition and that the server will be up again after a delay.
...
0
votes
1answer
43 views
How to create a local_db.bin from a live app engine application
Is there a way to export a google app engine's datastore and use it to create a local_db.bin file for use with eclipse?
0
votes
1answer
105 views
Error:The import com.google.appengine.api.datastore cannot be resolved JPA GAE GWT
Error in Development Mode
[ERROR] [cbd] - Line 15: The import com.google.appengine.api.datastore cannot be resolved
User.java
@Entity
public class User implements Serializable {
...
0
votes
1answer
46 views
GAE datastore put and get
Hi I'm just playing around with the datastore and hoping someone can tell my why my simple code doesn't work? I have just been playing around with how to put and get strings from the datastore... ...
0
votes
1answer
40 views
JDO - Querying/linking child by parent (Google App Engine)?
I've been trying to get JDO working with parent/child relationships, but I'm not having much success. Using the relationship setup as seen here and queries as seen here, I want to be able to link a ...
0
votes
0answers
28 views
putting an array into blob property and then into datastore
I am a complete scrub with web applications and GAE in particular. I was recently given some advice to use blobproperty for which I could store a md-array into the gae datastore. After having tried to ...
1
vote
1answer
123 views
Java, Google App Engine, and JSONArray/JSONObject
I'm working on an assignment and I can't seem to get a response from my instructor or the TA. The goal of the assignment is to use the Google App Engine to deploy an app that takes the URL of an ...
1
vote
1answer
23 views
HRD with no unapplied jobs on GAE Java Dev Server
For testing purposes I would need to run a local App Engine Java development server with the high-replication datastore (HRD), but with no unapplied jobs. I would like to have the same effect that I ...
0
votes
1answer
37 views
GAE Datastore Text messes up JSON representation
The following code excerpt builds a Google App Engine Datastore Entity from a Java Map. Short strings (less than 450 characters) are stored directly, long strings are converted to Text objects.
for ...
1
vote
1answer
48 views
Storing and Retrieving Multi-Valued properties in Datastore
Can anyone tell me how can i store Multiple values for an property in Google App Engine DataStore. I'am trying to do this in Java.
I have an property named tag and i want this property to contain ...
0
votes
0answers
43 views
Index cost on OR AND operations in datastore query [closed]
I wanted to know what is the indexing cost for an query which involves OR or AND operations in an composite filter. How many indexes would be required for such queries.
Suppose i have a property on ...
0
votes
2answers
46 views
Google App Engine - Deleted Entity is not deleted
I'm trying to delete an entity in google datastore
String keyValue = "someValue";
Key tweetKey = KeyFactory.createKey("tweetKey", keyValue);
Entity someEntity = new Entity(tweetKey);
Entity ...
1
vote
1answer
115 views
How to save unicode string into datastore google appengine using java
I'm working Google App Engine using Java, i receive data from form fields and save into datastore. I receive Unicode string from HttpServletRequest like this:
...
0
votes
1answer
66 views
GAE datastore: Entity deleted only after multiple calls to delete()
I'm playing with the GAE datastore on a local machine with Eclipse. I've created two servlets - AddMovie and DeleteMovie:
AddMovie
Entity movie = new Entity("movie",System.currentTimeMillis());
...
1
vote
1answer
26 views
GAE - Is there a setParameters counterpart to declareParameters for Datastore queries?
In the Datastore Queries documentation an example can be seen of the query being set using the Query object method calls:
Query q = pm.newQuery(Person.class);
q.setFilter("lastName == ...
0
votes
0answers
43 views
GAE+JPA: Transaction not working on Production
i got strange thing here. I use JPA for CRUD process in datastore Google App Engine. i use transaction for edit and deleting some entity, but it works well on my development machine but its not ...
0
votes
1answer
37 views
Best way to check if a set ok keys exist
What's the best way to check withs keys exist from a set of Keys using Objectify?
Currently I'm using:
List<T> list2LookFor= ...;
Map<Key<T>,T> objects = ...
0
votes
1answer
65 views
How to inject Google App Engine datastore with Guice?
I'm trying to inject Google App Engine's datastore via Guice into my service:
public class FooServiceImpl implements FooService {
private final DatastoreService datastoreService;
@Inject
...
0
votes
0answers
30 views
Can I use @Transactional from Guice with Google App Engine's Datastore?
Can I do something like this? Would it still be a transaction even though I did not use ds.get(tx, key) and ds.put(tx, key)?
public class MyClass {
private final DatastoreService ds;
...
0
votes
2answers
34 views
How to implement EndCursors in GAE/J - JDO
I have a GAE/J app using JDO on top of the Datastore and I've been able to paginate query results using cursors. The default implementation is something we call startCursor in my team (i.e give me ...
0
votes
2answers
98 views
Google App Engine Datastore Modeling
General question on how to model a Google App Engine datastore. I'm confused about the entity groups part. Lets take for instance a Facebook example where there are 3 entities: Users, Posts, and ...
2
votes
1answer
55 views
Birthday query in Google App Engine
I want to have a list of contact that celebrates their birthday disregarding the year, but I can't seem to disregard the year when I do gql.
The closest that I get is the code
SELECT * FROM Contact ...
0
votes
1answer
48 views
Failure to open write channel after upgrading App Engine Java SDK
I'm trying to upgrade the version of the App Engine SDK we are using for our Play! web application from 1.6.0 to 1.7.6.
After the upgrade we're no longer able to write files to the blobstore of the ...
0
votes
2answers
135 views
Does appengine have a new limitation on “Exceeded maximum allocated IDs”?
My app is running fine for months. Today it starts to give error on "Exceeded maximum allocated IDs" with datastore put. Is this something new with appengine quota and limitation?
...
0
votes
0answers
75 views
How do make a query with Entity key and sort it to App Engine datastore in Java?
I've been programming an app which uses GAE and I store the entities with a specific Key depending on the user nick logged in Google.
The problem is that I can't make a query that retrieves the ...
0
votes
1answer
50 views
Downloading google app engine database (java project)
I would download the google app engine datastore. I'm following several guides, but none of those helps me.
My web.xml file is setted correctly for the use of remote_api.
I have installed the python ...
2
votes
1answer
67 views
Java equivalent for Python app-engine model/entity representation and operation
Consider the following app-engine models in python.
class Account(ndb.Model):
email = ndb.StringProperty()
nickname = ndb.StringProperty()
phone = ndb.IntegerProperty()
date = ...
1
vote
1answer
51 views
Retrieving an object from Datastore by an attribute in its child object
I'm creating a Java web app in Google App Engine with JDO.
I have a class User that has an attribute SessionToken. Both classes are persistent with an owned one-to-one relationship.
...
0
votes
1answer
105 views
Error creating an entity in Google Datastore with JDO
I'm creating a web application in Google App Engine with JDO and I get a JDOFatalUserException:
javax.jdo.JDOFatalUserException: Detected attempt to establish User(15) as the
parent of ...
1
vote
4answers
119 views
Backup and restore entities from Google App engine
I am looking to implement a way to transfer data from one application to another programmatically in Google app engine.
I know there is a way to achieve this with database_admin console but that ...
1
vote
0answers
71 views
GAE : rerun the enhancer and check for errors in the output
I know you must have a question saying its a duplicate question and has been answered. But I tried all the mentioned steps "Remove duplicate datanuc jar file (I never had a duplicate jar file) and ORM ...
1
vote
1answer
73 views
Concurrent write-only transactions
The datastore documentation says that:
Upon commiting a transaction for the entity groups, App Engine again
checks the last update time for the entity groups used in the
transaction. If it has ...
0
votes
1answer
110 views
Google App Engine (Java) - JDO PersistenceManager makePersistentAll Slowing Down
I have an application that is a mini-CRM. I am trying to add functionality to allow for bulk user imports. The upload handler reads the data from a CSV file and then calls my CustomerService class to ...
0
votes
0answers
78 views
How to use JDO in appengine to query datastore that has been populated?
I've populated an AppEngine datastore with Entities of Kind "A". I want to leverage JDO so that I can get a list of objects back from my query. My JDO object is "com.example.Person". How can I create ...
0
votes
0answers
129 views
How to Store Large Amounts of Data in Java Google AppEngine Local Datastore
I am having a problem storing a large number of Entities to the Google AppEngine local datastore in Java. It appears the local datastore is running entirely out of memory, and when the total datastore ...
0
votes
1answer
62 views
About google app engine entity delete
i want to delete all of the entity.
i found that if i want to delete a entity,
// Key employeeKey = ...;
datastore.delete(employeeKey);
Upper code can delete a one entity. but i want to delete all ...
1
vote
1answer
63 views
Google app engine datastore transaction commit throws InterruptedException
Any ideas anyone? We are using other frontend threads simultaneously so I wonder if that is somehow related.
java.lang.InterruptedException
at ...


