[google-appengine] Re: Billing missing?

2010-05-28 Thread Hugo Visser
Another "me too"... My app was billing enabled, but now it shows that billing is disabled. I tried to enable billing again, but after a while it flips back to free mode again. Hugo On May 27, 5:42 pm, Millisecond wrote: > We're seeing (and wondering) the same things > > On May 26, 3:26 pm,

[google-appengine] Re: Can't enable billing

2010-05-28 Thread Hugo Visser
At the moment, according to the billing page my app is operating in free mode. When I look at the quotas on the dashboard however it is using the quotas that I've set on the billing page, while again the billing status is displayed as free. On May 29, 2:22 am, "Ikai L (Google)" wrote: > It looks

[google-appengine] How to add email alias to app engine?

2010-07-12 Thread Hugo Visser
Hi, I have an app that is set to apps domain only mode for authentication. Now I want to send some email from that app. It is working when I use one of the administrator accounts, but I like to set up an email alias and I'm failing to get that working. To complicate things a little bit more, the

[google-appengine] Images API: resize png, transparency gone?

2010-08-10 Thread Hugo Visser
Hi, I ran into an issue using the Images API. When I resize or crop a transparent PNG image, the transparency is lost. This is in production, not the dev server. I was wondering if this is by design or if this a bug? I'm using the Java SDK and haven't tried the python sdk yet... Thanks, Hugo --

[google-appengine] Re: New index creation in queued state for a long time

2010-08-26 Thread Hugo Visser
Index building is extremely slow the last few days. I hardly have any data in my app but building the indexes takes up to 8 hours to complete, or they are in a queued state very long. This really slows down development :( Any word from the app engine team on this? Hugo On Aug 24, 9:45 pm, Robert

[google-appengine] Re: How to add email alias to app engine?

2010-09-02 Thread Hugo Visser
an anybody confirm if this is the only option? Hugo On Jul 12, 2:40 pm, Hugo Visser wrote: > Hi, > > I have an app that is set to apps domain only mode for authentication. > Now I want to send someemailfrom that app. It is working when I use > one of the administrator accou

[google-appengine] Serious problem error code 204

2010-09-03 Thread Hugo Visser
I'm getting consistent "error 204" in my logs and the request is aborted. What causes these errors and how can I debug this? Hugo -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googleg

[google-appengine] Re: Serious problem error code 204

2010-09-03 Thread Hugo Visser
I think I figured it out, I was doing a batch fetch of some entities with blob fields. I think that this error is produced if you hit the 1 mb limit while fetching the entities. I changed my code to fetch less entities in batch and now it works in production. On Sep 3, 10:03 pm, Hugo Visser

[google-appengine] Re: Total Stored Data at 91%

2010-09-25 Thread Hugo Visser
Another me too again. This happens once in a while, and it is mentioned in a couple of threads. I never got a clear explanation on what causes this. The amount of data that my app stores is constant, but there are a lot of updates to that data. I also use memcache, but the things I put in memcache

[google-appengine] List of namespaces in the datastore

2010-10-02 Thread Hugo Visser
Currently there doesn't seem to be a way to list all namespaces in the datastore, is this correct? This could potentially lead to the situation that data is "lost" because the namespace name is lost, especially if an app uses generated namespace names. Hugo -- You received this message because

[google-appengine] Re: List of namespaces in the datastore

2010-10-03 Thread Hugo Visser
> > Maybe you should keep a list of all the used namespaces so you can > clean up if needed. > > Robert > > > > On Sat, Oct 2, 2010 at 06:16, Hugo Visser wrote: > > Currently there doesn't seem to be a way to list all namespaces in the > > datastore, is

[google-appengine] Allocating id's after import to another app

2010-10-06 Thread Hugo Visser
I've imported data from one app id to another and now I'm getting spurious messages of duplicate id's, apparently because the id's are not automatically allocated. What would be the best strategy to allocate these id's again so that sequence generation will not attempt to use the existing id's? -

[google-appengine] Re: Allocating id's after import to another app

2010-10-07 Thread Hugo Visser
Any suggestions? Would iterating the current entities and call the allocate function with those keys help? I'm getting errors on migrated data in production which is pretty bad. On Oct 6, 4:40 pm, Hugo Visser wrote: > I've imported data from one app id to another and now I'm

[google-appengine] Android app to monitor appengine quotas

2010-02-01 Thread Hugo Visser
Hi, I've released a little android app to monitor your app engine quotas. It's called Engine Watch and is available from the android market. See my blog at http://code.neenbedankt.com for more details. I hope it's useful to some of you too :) Hugo -- You received this message because you are su

[google-appengine] Re: why my datastore nearly be full?

2010-02-01 Thread Hugo Visser
I'm seeing the same thing. I got hardly anything stored in the datastore, but my quota is at 50% right now. I did have some stuff in the memcache however. This morning I flushed memcache and deleted all entities in the datastore but the quota usage is still going up. I'm waiting to see what happens

[google-appengine] Re: Android app to monitor appengine quotas

2010-02-01 Thread Hugo Visser
Currently my appengine instance is running in free mode so I don't know if I can test that. If it's in the admin console it shouldn't be too hard to add. On Feb 2, 4:07 am, Andrei wrote: > can u find way to get orders for paid Android apps from goog checkout? > > On Feb

[google-appengine] Re: why my datastore nearly be full?

2010-02-02 Thread Hugo Visser
We see similar usage multipliers in all of our apps. > > Robert > > 2010/2/1 Hugo Visser : > > > I'm seeing the same thing. I got hardly anything stored in the > > datastore, but my quota is at 50% right now. I did have some stuff in > > the memcache howe

[google-appengine] Re: How Google calculate datastore usage?

2010-02-02 Thread Hugo Visser
I'm seeing the same, and others are too, see this thread: http://groups.google.com/group/google-appengine/browse_thread/thread/76b71174fd94300f/e4d64b5d6618cd76#e4d64b5d6618cd76 When did you notice the quota increasing? On Feb 2, 8:55 am, lookon wrote: > Here is my app:http://reader2twitter.apps

[google-appengine] Re: why my datastore nearly be full?

2010-02-02 Thread Hugo Visser
Any suggestions from Google folks such as Nick maybe? On Feb 2, 9:56 am, Hugo Visser wrote: > Well I guess what I'm seeing is not "normal". I have 129 entities that > take 1 MB in total according to the statistics. I have 48 MB in > memcache and that's it. > Sti

[google-appengine] Re: why my datastore nearly be full?

2010-02-02 Thread Hugo Visser
One other observation is that in the billing summary all seems fine: Stored Data: $0.005/GByte-day0.001.000.00$0.00 Maybe a dashboard/statistics bug? On Feb 2, 12:58 pm, Hugo Visser wrote: > Any suggestions from Google folks such as Nick maybe? > > On Feb 2, 9:56

[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Hugo Visser
All sites mentioned work for me here, hope that helps... On Feb 2, 2:12 pm, johntray wrote: > My site (http://gmailnotes.appspot.com) is down too, returning the > same error. System status page indicates "no issues". What's going on? > > On Feb 2, 8:00 am, Jesse Grosjean wrote: > > > I'm seeing

[google-appengine] Re: why my datastore nearly be full?

2010-02-02 Thread Hugo Visser
to. I changed my code, deleted the old data and the quota is down now. Hope this helps others finding this thread. On Feb 2, 1:04 pm, Hugo Visser wrote: > One other observation is that in the billing summary all seems fine: > > Stored Data: > $0.005/GByte-day0.001.00

[google-appengine] Re: Android app to monitor appengine quotas

2010-02-09 Thread Hugo Visser
Feb 1, 5:05 pm, Hugo Visser wrote: > Hi, > > I've released a little android app to monitor your app engine quotas. > It's called Engine Watch and is available from the android market. See > my blog athttp://code.neenbedankt.comfor more details. I hope it's >

[google-appengine] Re: Android app to monitor appengine quotas

2010-02-10 Thread Hugo Visser
At the moment, no, but I'm considering it for a future version once I have a bit more time on my hands to do a proper open source release vs a code dump. Hugo On Feb 10, 5:18 am, kang wrote: > thanks for sharing. will your app be opensourced? > > > > On Wed, Feb 10, 2010 at

[google-appengine] Total stored data creeping up again

2010-03-14 Thread Hugo Visser
Hi, Last few days I suddenly see the quota for Total Stored Data going up for no apparent reason. My app stores little data in the data store and none of the properties are indexed (I only retrieve an entity by key). So I can't really tell where the sudden rise of stored data is coming from, the a

[google-appengine] Re: Total stored data creeping up again

2010-03-14 Thread Hugo Visser
update. For example I did a schema upgrade recently: disk > usage doubled. After 2 days it went back to normal. > > - alkis > > On Sun, Mar 14, 2010 at 2:20 PM, Hugo Visser wrote: > > Hi, > > > Last few days I suddenly see the quota for Total Stored Data going up > &g

[google-appengine] For deployment only does the sdk version matter?

2011-07-18 Thread Hugo Visser
Hi, When deploying an app, does the sdk version you deploy it with (not compiled with in case of Java) matter? Is it OK to deploy an app using the 1.5.x API's with an older SDK such as 1.4.x? I'm asking because I'm setting up an automated deploy and some day I'm bound to forget to update to the l

[google-appengine] Re: Billing - Alerts when nearing maximum quota?

2011-07-21 Thread Hugo Visser
Thanks for recommending that, I'm the developer of that app :) Feel free to contact me if you need a feature or things like that. I haven't touched it in a while because it does what I need. Hugo On 21 jul, 10:05, emerix wrote: > I recommend the free app Engine > Watch

[google-appengine] Warm up request a magnitude slower?

2011-07-21 Thread Hugo Visser
I'm using GAE/J and I'm notice that since a day or two, maybe longer, instance startup is way slower than it was. My typical startup request was around 4-8 seconds, now I'm seeing 12-20 seconds without any significant code changes. Do others experience the same? Hugo -- You received this mess

Re: [google-appengine] Warm up request a magnitude slower?

2011-07-21 Thread Hugo Visser
Type=Production issue if this is affecting your > application operation: > http://code.google.com/p/googleappengine/issues/entry?template=Production%20issue > > On Thu, Jul 21, 2011 at 1:01 PM, Hugo Visser wrote: >> I'm using GAE/J and I'm notice that since a day or tw

Re: [google-appengine] Re: Billing - Alerts when nearing maximum quota?

2011-07-21 Thread Hugo Visser
If the question is if I'd open source the app, unsure, maybe I should :) But I'm open for suggestions. Hugo -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-a

[google-appengine] Transactions and ancestor in a different namespace

2011-07-22 Thread Hugo Visser
Is it anywhere explicitly documented that the ancestor of an entity must have it's key in the same namespace as the entity itself? I'm using namespaces a lot in our app and in production I get an error if I try to do a transactional update of an entity with parent x in a different namespace than th

[google-appengine] Re: For deployment only does the sdk version matter?

2011-07-23 Thread Hugo Visser
Thanks Ikai, keeping it somewhat up to date will be fine for CI purposes. On 22 jul, 16:27, "Ikai Lan (Google)" wrote: > Only your version matters. However, it is a good idea to stay somewhat up to > date, as some APIs (experimental ones) get deprecated. > > One more thing: I tried running a real

[google-appengine] Re: Transactions and ancestor in a different namespace

2011-07-23 Thread Hugo Visser
Well it appears that the entire key path for an entity group is bound to one namespace. I am using Objectify in my app which doesn't have the namespace in the keys but when checking out the low level Java api that became apparent. On 22 jul, 12:48, Hugo Visser wrote: > Is it anywhere ex

[google-appengine] Re: Transactions and ancestor in a different namespace

2011-07-24 Thread Hugo Visser
datastore Key - with all the same namespace consequences.  In > previous versions, the Key -> Key conversion was done last-minute so it > would "inherit" the namespace then. > > Jeff > > > > > > > > On Sat, Jul 23, 2011 at 5:51 AM, Hugo Visser wr

Re: [google-appengine] Re: Transactions and ancestor in a different namespace

2011-07-24 Thread Hugo Visser
ely* in a servlet Filter, > you shouldn't notice any difference... but if you are manipulating > namespaces in a more complicated way, it's hard to predict.  Namespace is a > transient field in the native datastore Key, so it behaves... strangely. > Jeff > > On Sun, Jul 2

[google-appengine] Re: Jersey 1.8 issue

2011-07-27 Thread Hugo Visser
Hi Yann, I'm running an older version of Jersey on app engine (1.3) which runs fine. One tip that I can give you is not to use classpath scanning as you do now. Just create an Application and register that in your web xml (it's easier to debug too). That will give you better start up performance

[google-appengine] Re: New Google+ sign-in on App Engine, bug or feature?

2013-05-04 Thread Hugo Visser
My guess would be feature, since you are basically using external authentication that App Engine knows nothing about. So you are actually not using the user service in this case. Hugo On Thursday, February 28, 2013 12:32:03 AM UTC+1, Antonio Zugaldia wrote: > > I tried the Python > quickstart<

[google-appengine] Re: Flood of warm up requests!

2013-07-26 Thread Hugo Visser
Same issue yesterday on the Java runtime. Now I'm seeing a lot of warm up requests too, almost one for every request I do, despite the fact I have resident instances. I've filed a billing issue to request a refund for charged resources. Hugo On Tuesday, June 25, 2013 10:49:00 PM UTC+2, chilang

[google-appengine] Re: SSL VIP

2013-08-18 Thread Hugo Visser
The docs state "Each VIP only supports one certificate". That implies a VIP for each SSL domain you want to deploy, unless you are using a wildcard SSL certificate of some kind. On Saturday, August 17, 2013 4:08:25 PM UTC+2, James Gilliam wrote: > > I noticed that the SSL VIPs cost was reduced (

Re: [google-appengine] Re: Startup time exceeded...on F4?!

2012-07-19 Thread Hugo Visser
I did, and used Objectify (Jeff is kinda familiar with that I think :)). A plain Hello World with only registering the entities will get you around the 4-5 sec mark, which is hardly a real application. I have a highly optimized app as a backend for my Android app, and that even takes around th

Re: [google-appengine] Re: Startup time exceeded...on F4?!

2012-07-21 Thread Hugo Visser
Yeah but where this whole discussion started was that when there's no available instance you can't defer anything, since a cold instance will apparently get the request and due to the change dynamic instances aren't warmed up like they used to be. You're bound to need to do some initialization

[google-appengine] Re: C2DM gives 401 UNATHORIZED

2012-07-26 Thread Hugo Visser
Not really clear what you mean or if it's related to app engine or c2dm. If your users get this it looks like authentication with app engine fails. I had a few problems authenticating while deploying yesterday, which could be related, but those are solved now. If sending the message to the c2dm

[google-appengine] Datastore and index stats not updated, who to contact?

2012-09-03 Thread Hugo Visser
Hi, For one of our apps the datastore stats does not list all namespaces in de admin console and the index page does not show the index entry count and index storage data. I'm not sure if that qualifies as a production issue, but it is annoying for us because we don't have the insight that we

[google-appengine] File finalization

2012-09-19 Thread Hugo Visser
Hi, Can someone clarify how the finalization works for blobstore and gs files? In particular, how long can I leave a file in the unfinalized state (if I need to append to the file later) and how do I find files that aren't finalized properly? Thanks, Hugo -- You received this message becaus

[google-appengine] Re: Issues associated with enabling multi-threading via

2012-09-25 Thread Hugo Visser
Hi Andrew, To me, the whole point is kinda moot, since threadsafe is a required setting for Java apps (which is a good thing). Also, the points that you raise in the post are not different from the gotcha's as they are present in a "normal" Java servlet stack. There's not much App Engine speci

Re: [google-appengine] Re: Issues associated with enabling multi-threading via

2012-09-25 Thread Hugo Visser
g within a VM" or affected by setting in question > though.we could call that "instance-safe" :-) > > Thanks > > Andrew > On 25 Sep 2012 18:52, "Hugo Visser" > > wrote: > >> Hi Andrew, >> >> To me, the whole point is kinda moo

[google-appengine] Re: Google Apps No Longer Free

2012-12-07 Thread Hugo Visser
I think allowing to send from an alias would be very helpful. When running from an app, you most of the time don't need the actual inbox, you just need to be able to send from a email address originating from your domain. Currently every sender has to be a real account, but it would be nice if

[google-appengine] Re: Problems with SSL on a custom domain

2015-08-23 Thread Hugo Visser
I have a similar report from the UK from a user of my mobile app. Access over SSL is not working while it is for the majority of other users. Also had one in the past, which was resolved automatically. Hugo -- You received this message because you are subscribed to the Google Groups "Google A

[google-appengine] Re: Problems with SSL on a custom domain

2015-08-29 Thread Hugo Visser
Like I mentioned previously, today I got another user from the UK reporting a similar issue. For some reason the SNI SSL served version of my app isn't reachable or working for them, but going to https://myapp.appspot.com works. I don't see a huge drop in usage in the app so I can't really tell

[google-appengine] Re: Problems with SSL on a custom domain

2015-09-01 Thread Hugo Visser
te: > > Hi Hugo, > > Continuing to look into this, I realized that a lot of people who have > similar issues are all using a precise ISP. Do you know the ISP that your > users have? > > Cheers! > > On Saturday, August 29, 2015 at 2:37:01 PM UTC-4, Hugo Visser wrote: >

[google-appengine] Re: Problems with SSL on a custom domain

2015-09-02 Thread Hugo Visser
ays seem to be on >>> Sky, which could be the problem. >>> >>> I don't know if you'll be able to get this since it's your users and not >>> you directly, but if you could get a tcpdump and a print screen of the page >>> "chrome://

[google-appengine] Task queue not executing tasks / backlogged

2016-05-09 Thread Hugo Visser
Since last night or so I'm seeing this issue where tasks are being queued up for some time and not being executed on an app that has been running like this for quite a while. This results in a huge pile of tasks that get backlogged for my app. Cloud status dashboard says everything is OK. Anyon

[google-appengine] Re: Task queue not executing tasks / backlogged

2016-05-10 Thread Hugo Visser
I'm seeing tasks in my queue that are there for 6 minutes without any tasks running at all. There doesn't seem to be much I can do about this which is really frustrating. On Tuesday, May 10, 2016 at 8:54:33 AM UTC+2, Hugo Visser wrote: > > Since last night or so I'm se

Re: [google-appengine] Re: Task queue not executing tasks / backlogged

2016-05-11 Thread Hugo Visser
e to leave > a more insightful comment. > > Cheers, > > Nick > Cloud Platform Community Support > > > On Tuesday, May 10, 2016 at 4:54:00 AM UTC-4, Hugo Visser wrote: >> >> I'm seeing tasks in my queue that are there for 6 minutes without any >> ta

Re: [google-appengine] Re: Task queue not executing tasks / backlogged

2016-05-13 Thread Hugo Visser
t; On Wednesday, May 11, 2016 at 4:33:36 PM UTC-4, Hugo Visser wrote: >> >> It looks like the queues are back to normal. I've setup alerts in stack >> driver that triggered for a while but are resolved now. Will report back if >> that changes. >> >> On W

Re: [google-appengine] Re: Task queue not executing tasks / backlogged

2016-05-13 Thread Hugo Visser
Hitting the "run now" button makes the task run by the way. I don't see any relation to error rates on the task handler instances either. Looks like they are just stuck there waiting for execution. On Friday, May 13, 2016 at 8:02:04 PM UTC+2, Hugo Visser wrote: > > Just go

Re: [google-appengine] Re: Task queue not executing tasks / backlogged

2016-07-12 Thread Hugo Visser
incerely, > > Nick > Cloud Platform Community Support > > On Friday, May 13, 2016 at 2:02:04 PM UTC-4, Hugo Visser wrote: >> >> Just got an alert again. The task rate is 25 tasks/sec with a bucket size >> of 10. Average latency of the handlers is varying dependi

[google-appengine] Configuring SSL for custom domain failing with error 1000

2014-03-06 Thread Hugo Visser
I'm trying to setup ssl for a custom domain. Billing is enabled and I'm actually being charged for SSL already, but I'm unable to associate the SSL certificate with the domain. When I try to save the changes, all I get is a generic "error 1000" error. I've read on the list that others have expe

[google-appengine] Re: Configuring SSL for custom domain failing with error 1000

2014-03-07 Thread Hugo Visser
1:24:23 PM UTC+1, Hugo Visser wrote: > > I'm trying to setup ssl for a custom domain. Billing is enabled and I'm > actually being charged for SSL already, but I'm unable to associate the SSL > certificate with the domain. When I try to save the changes, all I get is a

[google-appengine] Re: Configuring SSL for custom domain failing with error 1000

2014-03-07 Thread Hugo Visser
OK, sorry to spam you all, but apparently it took 10 minutes or so since now SSL appears to be working fine. On Friday, March 7, 2014 1:57:18 PM UTC+1, Hugo Visser wrote: > > OK, to follow up: I removed the SSL billing and enabled it again. Then the > error was gone. However, now a

[google-appengine] Socket Timeout errors on URLFetch calls

2018-03-29 Thread Hugo Visser
My app makes heavy use of URLFetch to get content and I'm seeing socket time out exceptions on App Engine standard (Java). Am I the only one experiencing this? Would ditching URLFetch for normal url connections fix this? Thanks, Hugo -- You received this message because you are subscribed to

[google-appengine] Re: Socket Timeout errors on URLFetch calls

2018-03-29 Thread Hugo Visser
I'm literally getting java.net.SocketTimeoutException, meaning that the connection to the host times out. I have billing enabled so that can't be the cause, but maybe it's related. I thought the error was because that particular host was having troubles, but I'm seeing it on other hosts too now

[google-appengine] Re: Socket Timeout errors on URLFetch calls

2018-03-29 Thread Hugo Visser
are gone now. I actually implemented the URLFetchService interface for my OkHttp implementation, which I'm happy to share if someone needs it too. On Thursday, March 29, 2018 at 8:23:11 PM UTC+2, Hugo Visser wrote: > > I'm literally getting java.net.SocketTimeoutException, meaning

[google-appengine] Re: Socket Timeout errors on URLFetch calls

2018-03-29 Thread Hugo Visser
I think you are misunderstanding what I'm saying. On the Java 8 runtime you can do without URLFetch because the limitations that were in effect on the older runtimes are lifted. Because of that I can work around it by using any other http library, which is what the documentation is referring to.