Tagged Questions
The datastore tag has no wiki summary.
5
votes
7answers
595 views
Self hosted S3 alternative
I am looking for an S3 alternative which relies on a RESTful API, so that I can simply insert links such as http://datastore1.example.com/ID and they are directly downloadable.
I have looked at RIAK ...
4
votes
5answers
695 views
Store array of numbers in database field
Context: SQL Server 2008, C#
I have an array of integers (0-10 elements). Data doesn't change often, but is retrieved often.
I could create a separate table to store the numbers, but for some ...
4
votes
1answer
102 views
Is there a good utility / 3rd party library to manage the AppEngine datastore?
I have been developing an app using appengine. We are likely to be storing a lot of records in the datastore but I find the admin functionality you are given to manage this data lacking.
As an ...
4
votes
2answers
579 views
Column names in dynamically generated datawindows
When I dynamically create a datastore using SyntaxFromSQL (in order to generate datastore source code, based on a SQL SELECT statement), with syntax like this
string ERRORS, sql_syntax, dwsyntax_str, ...
3
votes
2answers
82 views
App Engine: Development datastore cleared each time I turn off my computer. How to avoid this?
I've been using App Engine with Python for a few months. Now that my application has a fair amount of code, I'm trying to solve a problem I've ignored so far:
Each time I turn off my computer, all my ...
3
votes
2answers
136 views
Connecting methods Python
I am currently using Oauth to allow a user to sign in through Foursquare, I then create a new session for this user. If the user is new to the system they are asked to sign in through Hunch, this can ...
3
votes
2answers
173 views
What is the maximum size to store data
I am working an app which stores some large amount of data (hundreds of mbs) in application's own library.
can anyone tell me if there is any size limit for an app to store data?
I also want to know ...
3
votes
3answers
174 views
How to scale a lot of Records on Google App Engine
I´m thinking about to write an application will have to store a small amount of records per user (<300) but hopefully will have a lot of users (>>1000).
I did some research for a platform that ...
3
votes
1answer
186 views
Can a GQL query execute an order by over two or more kinds?
I have two entity kinds in my python GAE app - both with similar attributes - and I'd like to query both lists and order the result according to an attribute common to both kinds. So something along ...
2
votes
1answer
80 views
Best Data Store for huge data with large number of reads and writes
I need to store around 100 millions of records on the database. Around 60-70% of them will be deleted daily and same amount of records are inserted daily. I feel a document database like Hbase, Big ...
2
votes
1answer
47 views
db.get() vs Model.get()
I have started working on the datastore and I found that we can get the instance(s) by this method get() which was available in db and in Model class. But what the difference between them I don't find ...
2
votes
3answers
195 views
NSUrl is not stored as absolutestring in NSUserDefault
I am referring Previous Post for storing NSURL of iPod Library in NSUserDefault. But it is not stored in NSUserDefault after application is closed.
I am using other NSStrings to store in ...
2
votes
3answers
63 views
Is there a way to cache the fetch output?
I'm working on a closed system running in the cloud.
What I need is a search function that uses user-typed-in regexp to filter the rows in a dataset.
phrase = re.compile(request.get("query"))
data = ...
2
votes
1answer
41 views
Error message when querying the datastore
I am new to Java, Eclipse, Google App Engine and the Datastore and am writing my first app to teach myself some new technology both for work and for professional development purposes.
I have a Java ...
2
votes
1answer
312 views
Saving numpy array in mongodb
I have a couple of MongoDB documents wherein one my the fields is best represented as a matrix (numpy array). I would like to save this document to MongoDB, how do I do this?
{
'name' : 'subject1',
...
2
votes
1answer
130 views
Google App Engine Datastore Data Privacy
I'm playing around with the Google App Engine and the Datastore.
Really amazing stuff going on over there.
But I couldn't help and wonder what Google is allowed to do with the data my application is ...
2
votes
4answers
184 views
Store ListView data C#
I'm trying to make me a little program in C # (using Visual Studio 2010) to keep track of the films that I keep on my computer. The interface is just a ListView with 7 Columns and a Add button. Add ...
2
votes
3answers
337 views
How best to reduce CPU time used by a datastore put
I have a cron job which I run every three minutes, which pulls some data from a remote API, and then stores it in my local datastore. However, this is taking a huge amount of CPU time (Appstats) in ...
2
votes
2answers
114 views
How to delete a column (attribute) from a GAE datastore?
I have a persistent class stored in a GAE datastore. I have removed one of the attributes from the class. The new records in this table show a value <none> for the removed attribute. But is there a ...
2
votes
1answer
48 views
I am looking for a key-value datastore which has following (preferable) properties
I am trying to build a distributed task queue, and I am wondering if there is any data store, which has some or all of the following properties. I am looking to have a completely decentralized, ...
2
votes
1answer
151 views
Google App engine with external app?
Is it possible to use the Google App Engine with datastore only and keep your application on an external traditional server?
I'm interested in the GAE for Business SQL service coming soon but I only ...
2
votes
1answer
110 views
Set a kind name independently of the model name (App Engine datastore)
As a Python programmer, I like my code to be reusable, I'm trying to avoid kind name conflicts in my code (where two different models share the same kind name).
Currently I just prepend some ...
2
votes
2answers
170 views
How to trigger datastore update if condition is met? (Google App Engine - Python)
In my application I have a column display with values y or n. Default value is n and the item is not displayed. When payment is received the value is changed to y and the item is displayed. If the ...
2
votes
1answer
543 views
Programming Geoserver 2.0.2 to add a new data store and layer without the UI
I have a directory of imagery that will be updated continually. From this imagery, I am making Image Pyramids using the Geotool's PyramidBuilder utility. I need to setup a cron job to automatically ...
2
votes
2answers
424 views
How to fetch all entities in App engine datastore?
in http://code.google.com/appengine/docs/python/datastore/entities.html#Saving_Getting_and_Deleting_Entities
the batch operation for getting the entity are stated below:
A batch get. ...
2
votes
1answer
459 views
ListProperty vs StringListProperty on Google App Engine
I want to store lists of integers (user ids), should I make them strings and use a StringListProperty, or just use a ListProperty, I'm wondering what is more optimized, the specific StringListProperty ...
2
votes
1answer
198 views
GQL: Not equal filter on a multivalued property
Tinkering a little with GAE's datastore i've found that i can't think a proper way to filter out results using the inequality filter '!=' on a multivalued property:
class Entry(db.Model):
...
...
2
votes
4answers
1k views
How the data stored on Cloud?
I am novice to Cloud Computing. Is it a server ? Is the data stored on the Cloud move from server per to server ? or Actually what does it mean by storing data on Cloud ?
2
votes
2answers
3k views
Ext.form.ComboBox: Use template for displayField
Is there any way to apply a template to the selected value of a ComboBox? I'm using a template to display the drop down values of the ComboBox, but as soon as i select one, the plain value from the ...
2
votes
1answer
374 views
Multiple inequality conditions (range queries) in NoSQL
I have an application where I'd like to use a NoSQL database, but I still want to do range queries over two different properties, for example select all entries between times T1 and T2 where the ...
2
votes
2answers
4k views
QueryReadStore loads JSON into DataGrid, but JsonRestStore does not (from the same source)
I'm building a Dojo DataGrid from JSON data provided by my REST interface. The DataGrid loads the data fine using a QueryReadStore, but doesn't seem to work with the same same data piped into a ...
2
votes
7answers
728 views
Are there any stable and production quality nosql datastores?
Are there are production quality nosql stores that I can use on a production system. I have looked at cassandra, tokyodb, couchdb etc but none of them seem to be ready for deployments on production ...
2
votes
2answers
2k views
Blackberry - application settings save/load
I know two ways to save/load application settings:
use PersistentStore
use filesystem (store, since SDCard is optional)
I'd like to know what are you're practicies of working with application ...
2
votes
1answer
1k views
Advanced JavaScript data store & grid widget
We have written a data store / grid widget system in JavaScript that automatically updates all widgets associated with a data store whenever some of the data changes.
Its nice features are:
it ...
1
vote
2answers
20 views
Datastore in GAE Testing environment leaks data between JUnit tests
i have the following problem. I want to do some automated datastore tests for the Google App Engine locally with Junit.
I have written a class 'Agent.java' with three Strings 'name', 'owner' and ...
1
vote
3answers
51 views
Putting many PropertyList's into Google App Engine datastore (in Go) and loading them again with Query.GetAll
I am putting entities (as a datastore.PropertyList) into the datastore like this:
// save one
var plist datastore.PropertyList = make(datastore.PropertyList, 3)
plist = append(plist, ...
1
vote
1answer
208 views
EmberJS, EmberJS/Data and Sproutcore-Datastore
With the move from SproutCore 2.0 to EmberJS there was the namespace and Github repo migration. Core things seem to have moved to the http://github.com/emberjs organization Github account while there ...
1
vote
1answer
50 views
Aside from RPC calls, what could be taking my App Engine Program so long
I'm trying to performance optimize a page load in GAE, and I'm a bit stumped what is taking so long to serve the page.
When I first got appstats running I found the page was calling about 500-600 RPC ...
1
vote
2answers
33 views
partial and fetches before deletion from the AppEngine datastore
I'd like to delete a bunch of objects from the AppEngine datastore within a transaction:
def F():
items_to_delete = []
for item in db.Query().ancestor(...):
if item.aaa ... item.bbb:
...
1
vote
4answers
380 views
Google app engine excessive small datastore operations
I'm having some trouble with the google app engine datastore. Ever since the new pricing model was introduced, the cost of running my app has increased massively.
The culprit appears to be "Datastore ...
1
vote
1answer
90 views
Using the appengine datastore admin to move data to a new application - how long should this take?
I am moving to the high-replication datastore which is relatively simple when using the AppEngine Datastore Admin feature to copy all data from the old application to the high-replication application.
...
1
vote
2answers
83 views
Check if a field is present in an entity
I have updated my model in Datastore so now it has an additional field. Now I have entities with and without that field but I need to add this field to all entities that don't yet have it. Idea is to ...
1
vote
3answers
113 views
In App Engine for Python, is it possible to persist a class with another object nested inside it?
In App Engine for Python, is there anything like Objectify (Java Library) where I can easily embed a class within another and save it to the datastore?
This class would be modeled like the following ...
1
vote
1answer
129 views
Google App Engine Performance - Checking Existence of an Object
I am coding a system using Google App Engine and I need to put an object in the datastore only if it doesn't exist yet. I would be fine using the datastore.put() method, except I need to know whether ...
1
vote
1answer
157 views
App Engine Datastore join with filter on reference
I'm very new to App Engine Datastore and I could not figure this out.
I have these models:
class SomeUser(User):
name = db.StringProperty()
class Group(db.Model):
title = ...
1
vote
1answer
40 views
google datastore many to one references
So i have two model classes:
class Dog(db.model):
dogName = StringProperty()
dogBreed = StringProperty()
class Cat(db.model):
catName = StringProperty()
catBreed = StringProperty()
and ...
1
vote
2answers
45 views
What data store technology/solution allows very fast inserts, lookups and 'selects'
Here's my problem.
I want to ingest lots and lots of data .... right now millions and later billions of rows.
I have been using MySQL and I am playing around with PostgreSQL for now.
Inserting is ...
1
vote
2answers
1k views
Sencha Touch JSONP Store Data not showing up in Panel
I've got my sencha-touch app wired up as I believe it should be, and when I load it into Chrome, the Javascript console doesn't throw any errors. The WebService is finally returning the appropriate ...
1
vote
2answers
112 views
How to keep version history of datastore entities in Appengine
I'm storing an Entity A in my datastore on appengine. A has an id of type Long. I'd like to keep a history of all changes made to A's fields. What are the best practices to doing this type of version ...
1
vote
1answer
101 views
Problem posting to datastore with deferred.defer tasks
I am trying to do this on Google App Engine in Python:
def add_to_db(person):
a = PersonDb(key_name = person)
# get some data
data1 = a.name
data2 = a.age
a.put()
for person ...