Re: [google-appengine] Cursor Related Errors in Task

2014-04-15 Thread Evan Ruff
cate new urlfetches periodically, > especially if you run into strange errors like yours. > > > > - > -Vinny P > Technology & Media Advisor > Chicago, IL > > App Engine Code Samples: http://www.learntogoogleit.com > > > > > On Fri, Mar 14,

Re: [google-appengine] SSL Errors, Peer Certificate

2014-04-15 Thread Evan Ruff
weirdness in my implementation patterns and the problem still persists. Has anyone else found anything like this or could give me an idea about how to prevent these exceptions from arising? Thanks, E On Sunday, September 15, 2013 10:01:23 AM UTC-4, Evan Ruff wrote: > > Hey guys, >

Re: [google-appengine] High latencies over the last 12 or so hours

2014-04-10 Thread Evan Ruff
I'm starting to see a huge number of memcache exceptions in my log. Anyone else? E On Thursday, April 10, 2014 7:24:30 AM UTC-4, timh wrote: > > Yes, performance has been much better today. > > Just the usual spate of chinese (or russian, ukraine or US ;-) sites > trying to probe the app for PH

Re: [google-appengine] Cursor Related Errors in Task

2014-03-14 Thread Evan Ruff
ling it to waitForOutstandingWrites every 100 records. I would assume this would empty the buffer and release the space. Is that not the case? Thanks for any advice! E On Friday, March 14, 2014 3:49:04 AM UTC-4, Vinny P wrote: > > On Wed, Mar 12, 2014 at 6:14 AM, Evan Ruff > > wrote: > >

Re: [google-appengine] Cursor Related Errors in Task

2014-03-12 Thread Evan Ruff
with the IOException while writing almost instantly. The thing that kills me is that the errors aren't consistent operating over the same data set. Anyone have any recommendations? Appreciate you guys looking! Thanks, E On Wednesday, March 12, 2014 7:14:54 AM UTC-4, Evan Ruff wrote:

Re: [google-appengine] Cursor Related Errors in Task

2014-03-12 Thread Evan Ruff
--- > -Vinny P > Technology & Media Advisor > Chicago, IL > > App Engine Code Samples: http://www.learntogoogleit.com > > > > > On Tue, Mar 11, 2014 at 9:14 PM, Evan Ruff > > wrote: > >> I've been working on a Task that exports a bun

[google-appengine] Cursor Related Errors in Task

2014-03-11 Thread Evan Ruff
Hey guys, I've been working on a Task that exports a bunch of datastore entries out to GCS and am getting some wacky behavior. Sometimes, the thing fails in <30 seconds with a 202 error in the log that I can't catch in the code. Sometimes, I get an ApiDeadlineException when trying to get the cu

[google-appengine] Re: Memcache not Working?

2013-09-27 Thread Evan Ruff
E On Friday, September 27, 2013 7:20:35 AM UTC-4, Evan Ruff wrote: > > Now getting 503s trying to access my Admin Console... > > E > > On Friday, September 27, 2013 7:15:29 AM UTC-4, Evan Ruff wrote: >> >> I'm suddenly getting a ton of DeadlineExceededExceptions. T

[google-appengine] Re: Memcache not Working?

2013-09-27 Thread Evan Ruff
Now getting 503s trying to access my Admin Console... E On Friday, September 27, 2013 7:15:29 AM UTC-4, Evan Ruff wrote: > > I'm suddenly getting a ton of DeadlineExceededExceptions. They all are > occurring when accessing or writing to Memcache. Is anyone else > experienci

[google-appengine] Memcache not Working?

2013-09-27 Thread Evan Ruff
I'm suddenly getting a ton of DeadlineExceededExceptions. They all are occurring when accessing or writing to Memcache. Is anyone else experiencing these problems? Looks like it started around 11PM EST yesterday. Guys? E -- You received this message because you are subscribed to the Google G

Re: [google-appengine] Re: 500 Server Error

2013-09-23 Thread Evan Ruff
I'm getting 500 errors attempting to load static resources. If I try from Incognito Mode, everything seems okay. Caching Issue? Obviously, this is really borking my GWT app, as the .nocache never loads... E On Monday, September 23, 2013 7:15:39 PM UTC-4, Risto wrote: > > Still showing http 500

[google-appengine] Re: GAE with major problems currently

2013-09-23 Thread Evan Ruff
I'm getting really odd 404s and 500s when accessing resources. E On Monday, September 23, 2013 11:45:59 AM UTC-4, Mos wrote: > > Currently AppEngine seems to be broken. No instances are shown in the > dashboard and the browser just gets a 500 server-error. > > Log-Files says: > > " > > A problem

Re: [google-appengine] SSL Errors, Peer Certificate

2013-09-15 Thread Evan Ruff
UTC-4, Evan Ruff wrote: > > Hey guys, > > Just updating this. I have released a new version of my application, > pointed to the port as well, and am still getting these SSL errors ALL OVER > the place... I'd say more frequently than before. > > Any other ideas? > >

Re: [google-appengine] SSL Errors, Peer Certificate

2013-09-05 Thread Evan Ruff
Hey guys, Just updating this. I have released a new version of my application, pointed to the port as well, and am still getting these SSL errors ALL OVER the place... I'd say more frequently than before. Any other ideas? Thanks! E On Wednesday, July 24, 2013 2:30:00 PM UTC-4, Evan

Re: [google-appengine] Time Syncronization

2013-07-30 Thread Evan Ruff
Hey Guys, Thanks so much for the ideas and links. I've been doing some more thinking around this, and was wondering if fashioning a single-threaded pull queue would serve my purposes? Basically, when a request comes in, push it to the pull queue, do the linear assignment of the value through a

Re: [google-appengine] Re: Time Syncronization

2013-07-25 Thread Evan Ruff
o you have > evidence that it's not accurate enough? > > On Thursday, July 25, 2013 6:53:34 PM UTC+2, Evan Ruff wrote: >> >> Hey guys, >> >> I'm curious to hear about any strategies people have used to employ time >> synchronization among the AppE

[google-appengine] Time Syncronization

2013-07-25 Thread Evan Ruff
Hey guys, I'm curious to hear about any strategies people have used to employ time synchronization among the AppEngine instances. I'm working on a project that is looking to have a pretty important time component and the current strategy I'm looking at is something long the lines of: 1. Record

Re: [google-appengine] SSL Errors, Peer Certificate

2013-07-24 Thread Evan Ruff
; On Wed, Jul 24, 2013 at 8:51 AM, Evan Ruff wrote: > >> To summarize, usually my communication over SSL to https://*myversion* >> -dot-*myapp*.appspot.com usually goes off without a hitch; however, a >> few times per day I will receive a >> javax.net.ssl.**SSL

[google-appengine] SSL Errors, Peer Certificate

2013-07-24 Thread Evan Ruff
Hey guys, I've had a question over on StackOverflow about some SSL errors I'm getting intermittently from my Android Application. The problem seems to be popping up more often lately and I was hoping someone could give me some direction about what's happening and how to solve the error. My orig

Re: [google-appengine] Memcache Fishyness - 7/18/2013 @ 438pm EST

2013-07-21 Thread Evan Ruff
8 PM UTC-4, Vinny P wrote: > > Hello Evan, > > > On Thu, Jul 18, 2013 at 3:39 PM, Evan Ruff > > wrote: >> >> >>1. >> >>Caused by: >> com.google.apphosting.api.ApiProxy$CapabilityDisabledException: The API call &g

[google-appengine] Memcache Fishyness - 7/18/2013 @ 438pm EST

2013-07-18 Thread Evan Ruff
I'm getting some UGLY errors in my logs relating to memcache: 1. 2013-07-18 16:34:23.884 at com.google.net.rpc3.impl.client.RpcNetChannel.access$2000(RpcNetChannel.java:158) at com.google.net.rpc3.impl.client.RpcNetChannel$TransportCallback.receivedMessage(RpcNetChann

[google-appengine] Serializing a GCS Client Library GcsOutputChannel to TaskOptions

2013-06-24 Thread Evan Ruff
Hey Guys, So I'm trying to migrate to the new GCS Client Library to update my Datastore > GCS CSV File > BigQuery Task. This is a cron that runs every night and pushes all new data over to BigQuery. I've always had issues with timeouts and file errors (hello 107!) and I'm hoping the new client

[google-appengine] Traversing the WAR directory

2012-01-11 Thread Evan Ruff
Hey guys, So I'm trying to traverse the WAR directory, discovering all files with the GWT RPC extension. I cannot, for the life of me, get access to the WAR directory and generate a file list. Every time I try, I get a null file. Is there an easy way to do this and I'm just missing it?? Than