[appengine-java] Re: Snapshots...

2011-09-27 Thread Jose Montes de Oca
Hi Daniel,

Take a look at our Bulkloader Tool: 
http://code.google.com/appengine/docs/python/tools/uploadingdata.html

Here is a great post: 
http://ikaisays.com/2010/06/10/using-the-bulkloader-with-java-app-engine/

Hope this helps your needs!

Best,
Jose Montes de Oca

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/mqMA-JEDmFQJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Snapshots...

2011-09-27 Thread Didier Durand
Hi,

I do personally scan each entity type via an ad hoc request and store
each instance as entry in an xml file stored in the blobstore.

You can then externalize it via download from another machine.

Another possible way is to store you data on Amazon S3: you can then
also store them 1 by 1 if you wish so.

regards

didier

On Sep 27, 11:45 pm, Daniel Viveiros  wrote:
> Hi all,
>
> What's the best way to take snapshots of the GAE's database in a way it's
> possible to backup/restore it if needed?
>
> Thanks,
> Daniel V.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Snapshots...

2011-09-27 Thread Daniel Viveiros
Hi all,

What's the best way to take snapshots of the GAE's database in a way it's
possible to backup/restore it if needed?

Thanks,
Daniel V.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] Re: GAE - Vote counting system

2011-09-27 Thread Jeff Schnitzer
Yeah, messy.

I'd use a backend for this.  Possibly a set of backends if you need to
shard the data for write volume.  I'd use Memcache only to cache the
count reads.

The basic entity is just an id and a count.  An increment request goes
to a backend, which simply tracks the change.  A batch process goes
through and writes any changed counts to both datastore and memcache
(as an update; read increment write in a txn) every 5 minutes and
clears the memory count.

If write volume is too high for a single backend to handle, shard it
by thingId % number of shards.  You can change the shard count on the
fly this way.

All reads should be read from the memcache, read-through to the
datastore as necessary.

This should be able to handle any volume you want.  If a backend
crashes you'll lose its accumulated counts but I presume that's not a
big deal.

Jeff

On Tue, Sep 27, 2011 at 10:38 AM, Peter Dev  wrote:
> Sorry, 100 000 000 counters
>
> On Sep 27, 4:53 pm, Peter Dev  wrote:
>> Shared counter is cool and I use it... but if you have millions of
>> objects I cannot imagine how to manage them.1 000 000obj x 100 shards =10 
>> 000 000counters
>>
>> 1. How to reset them to 0 in specified periods?
>> 2. How to set the shared sum for each object to show top 100 objects?
>> 3. Too much DB API Calls (each vote makes write in DB)
>>
>> Any ideas...? Thx
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Google App Engine for Java" group.
> To post to this group, send email to google-appengine-java@googlegroups.com.
> To unsubscribe from this group, send email to 
> google-appengine-java+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/google-appengine-java?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] SOAP-Samples and the Development Server

2011-09-27 Thread chris
Is it possible to run the soap-samples from within the development server?
I changed the soap address location in the wsdl filt to http://localhost:/codelabex5part1"/> but it doesn't work...

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/dKbYLnJ6glMJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Allowing the user to Change accounts

2011-09-27 Thread Jared Rodriguez
I would like to allow the user of my app engine application to switch
accounts, for users that have multiple accounts and use the google
multiple sign-ins turned on.  I have tried using the
UserServiceFactory.getUserService().createLogoutURL() and send them
there, but that only seems to let them log back into the domain they
were already logged in on.  I have also tried not logging out and
simply UserServiceFactory.getUserService().createLoginURL() and
sending them to that, but it seems to detect that they are already
logged in and just brings them right back to my app with the same
account.

Any help would be greatly appreciated.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Memcache objects remain only 5 minutes

2011-09-27 Thread Peter Nees
My objects remain in the memcache only for about 5 minutes. I know that 
there is no guarantee about the caching period, but this seems abnormal.
I've read that lack of memory could be the reason. The size of one object is 
about 50K, and I typically cache less as 50 objects.
I have no flush statements in my code don't remove objects. 
What can be the reason for this, or how can I look for the reason?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/cn5YIIUS5AYJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] File Upload

2011-09-27 Thread Guilherme Souza
Thanks Stefanos,

i'm reading the documentation now. It will do resolve my problems.

Question done!

2011/9/27 Stefanos Antaris 

> Why don't you use blobstore service??
> http://code.google.com/appengine/docs/java/blobstore/overview.html
>
>
> On Mon, Sep 26, 2011 at 5:57 PM, Guilherme Souza <
> souza.guilherm...@gmail.com> wrote:
>
>> Hey guys,
>>
>> i have a problem with uploading files at my project, i tried to use
>> the library org.apache.commons.fileupload, but i couldn't import to
>> eclipse, now i'm looking for a new way to upload files to my JSP page.
>>
>> Thanks in advance.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google App Engine for Java" group.
>> To post to this group, send email to
>> google-appengine-java@googlegroups.com.
>> To unsubscribe from this group, send email to
>> google-appengine-java+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-appengine-java?hl=en.
>>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine for Java" group.
> To post to this group, send email to
> google-appengine-java@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine-java+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine-java?hl=en.
>



-- 
Atenciosamente,

Guilherme Santos Souza
Sistemas de Informação - PUCRS
Fone: (51) 9695-1070

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: GAE - Vote counting system

2011-09-27 Thread Peter Dev
Sorry, 100 000 000 counters

On Sep 27, 4:53 pm, Peter Dev  wrote:
> Shared counter is cool and I use it... but if you have millions of
> objects I cannot imagine how to manage them.1 000 000obj x 100 shards =10 000 
> 000counters
>
> 1. How to reset them to 0 in specified periods?
> 2. How to set the shared sum for each object to show top 100 objects?
> 3. Too much DB API Calls (each vote makes write in DB)
>
> Any ideas...? Thx

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: GAE - Vote counting system

2011-09-27 Thread Peter Dev
Shared counter is cool and I use it... but if you have millions of
objects I cannot imagine how to manage them.
1 000 000 obj x 100 shards = 10 000 000 counters

1. How to reset them to 0 in specified periods?
2. How to set the shared sum for each object to show top 100 objects?
3. Too much DB API Calls (each vote makes write in DB)

Any ideas...? Thx

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Cannot deploy for past several hours?

2011-09-27 Thread GeorgeS
I haven't been able to update one of my applications for the past several 
hours. I keep getting the error:

Unable to update app: Error posting to URL: 
https://appengine.google.com/api/appversion/create?app_id=x&version=22&;
400 Bad Request

Client Error (400)
The request is invalid for an unspecified reason.


See the deployment console for more details
Unable to update app: Error posting to URL: 
https://appengine.google.com/api/appversion/create?app_id=x&version=22&;
400 Bad Request

Client Error (400)
The request is invalid for an unspecified reason.


What is causing this?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/RbC4fmTgTOUJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Disable 'refresh' in a page

2011-09-27 Thread Drew Spencer
I agree with Mat. Just tell your users not to refresh or give them no reason 
to. They aren't stupid. It's like when a site prevents me right-clicking - I 
hate that site and never go back.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/uuaynCZW5rUJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Google App Engine Internet Crawler

2011-09-27 Thread Rodel Ocampo
Good day Developers!

Any idea on how to crawl the internet in Google App Engine - Java? My thesis
requires me to search a book in the internet just using the book's ISBN.
Thank you very much. :D

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] File Upload

2011-09-27 Thread Stefanos Antaris
Why don't you use blobstore service??
http://code.google.com/appengine/docs/java/blobstore/overview.html

On Mon, Sep 26, 2011 at 5:57 PM, Guilherme Souza <
souza.guilherm...@gmail.com> wrote:

> Hey guys,
>
> i have a problem with uploading files at my project, i tried to use
> the library org.apache.commons.fileupload, but i couldn't import to
> eclipse, now i'm looking for a new way to upload files to my JSP page.
>
> Thanks in advance.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine for Java" group.
> To post to this group, send email to
> google-appengine-java@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine-java+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine-java?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.