[google-appengine] Re: did App Engine change instance scheduler algorithm in the past month?

2018-05-01 Thread Kyle Finley
Tapir & Jordan, For what it's worth, I've notice the same issue. I spoke with billing in the beginning of April, but at the time they weren't aware of the issue, and since it was only a few dollars I didn't pursue it further. If your interesting in investigating, here is some information that

[google-appengine] Re: !!!URGENT!!! Billing Error in App Engine Instance Hours, charges skyrocketing

2017-03-15 Thread Kyle Finley
Lawrence & Marco, For what's it's worth I'm seeing the same issue. Marco, If you would like billing account number, please feel free to contact me. Lawrence, thank you for posting this. Would you mind updating this thread once the issue has been resolved? I'll need to follow the same

[google-appengine] Re: Managed VMs logs, load-balancing & context

2015-12-22 Thread Kyle Finley
John, Are you calling appengine.Main() in your main() function? I'm not sure if it works with the network-load-balancer, but when I switched from classic to MVM I was receiving the same error. Adding the appengine.Main() call fixed the unknown http.Request error. Kyle e.g. package main

[google-appengine] Re: Managed VMs logs, load-balancing & context

2015-12-22 Thread Kyle Finley
WebSockets dont) > > Thanks > > > On Tuesday, December 22, 2015 at 4:16:56 PM UTC+2, Kyle Finley wrote: >> >> John, >> >> Are you calling appengine.Main() in your main() function? >> >> I'm not sure if it works with the network-load-balancer, but

[google-appengine] Re: Do App Engine Managed VMs Support the AppEngine Cron System?

2015-12-16 Thread Kyle Finley
Christopher, I'm glad you found a solutions. I believe that you can also specify your cron.yaml when deploying. At least it works with Go. E.g. gcloud preview app deploy app.yaml cron.yaml And I haven't tested it, but I suspect you can add the cron directive to your app.yaml file directly,

[google-appengine] Re: Qualys SSL Test keeps rating Google App Engine sites with B

2015-09-19 Thread Kyle Finley
PK, It looks like this issue will be resolved soon. Disabling SSLv3 and RC4 http://googleonlinesecurity.blogspot.com/2015/09/disabling-sslv3-and-rc4.html > [..] Because of these issues we expect to disable both

[google-appengine] Re: Email not working after migrating from master/slave to high replication

2015-05-20 Thread Kyle Finley
I believe the limit is reset when you migrate. If you are sending more then 100 email daily you may need to request a quota increase: https://docs.google.com/forms/d/1OpXTrBHpnTZfv53bzr55Ra1NK_eTBzWQ-yO6ydIHC48/viewform?formkey=dENESzEwNzJiZEdpQkRzTl9RNElVWUE6MQ#gid=0 There's' a check box for

[google-appengine] Re: How to sell and support a web app on GAE

2015-02-23 Thread Kyle Finley
I've been thinking about this also. For option (1) maybe upgrades could be automated. I wonder if the Google Cloud Deployment Manager https://cloud.google.com/deployment-manager/overview?hl=en_US could be useful here. At the very least, it seems like it should be possible to have user

[google-appengine] Re: Push to deploy discontinued?

2014-12-22 Thread Kyle Finley
I believe they sent emails to those that have used the service. Here's the contents: Hello, The ability to quickly, easily and safely deploy your code is an important part of a great cloud developer experience. You have used the Release Pipelines feature on GCP to push-to-deploy and have

[google-appengine] Re: git repo with PhoneGap

2014-04-18 Thread Kyle Finley
Does passing in your username and password work? Something like:[0] https://username:passw...@source.developers.google.com/p/my-repo/ Note: It's not very secure. Another option is using a .netrc file [1], but that may not work with PhoneGap, if it's an external service. [0]:

Re: [google-appengine] Cloud Datastore Dashboard not working

2014-04-04 Thread Kyle Finley
Are you using Chrome? I've had issues with Chrome, but the admin displayed correctly with Firefox 28. Also, I've found that some browser extensions (Ad block, Disconnect, etc.) may interfere with the loading of some assets. On Friday, April 4, 2014 2:02:19 PM UTC-5, husayt wrote: Hi Vinny,

Re: [google-appengine] Cacheing (mostly) static data in Cloud Storage

2014-03-20 Thread Kyle Finley
Pertti, Cloudflare https://www.cloudflare.com offers a free caching service that should fit your needs. App Engine also offers edge cachinghttp://stackoverflow.com/a/10818245/236564, but I believe you must have billing enabled to utilize it. Either solution would save you from incurring

[google-appengine] Re: Announcing a credit for App Engine applications with new custom domains

2013-06-17 Thread Kyle Finley
Andrew, Is this in addition to the 1 free Google Apps user? https://groups.google.com/d/msg/google-appengine/pVZfdeky-ow/TO1SmipM2Y0J -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop receiving emails

[google-appengine] Re: Deploy current HTML site to Google Apps

2013-01-07 Thread Kyle Finley
To add to Blaine's comment -- you *can* map the root url i.e. '/' to an index.html file by add something like: # app.yaml # ... handlers: - url: / static_dir: dreamweaver_dir - url: / static_files: dreamweaver_dir/index.html upload: dreamweaver_dir/index.html Kyle On Monday, January 7,

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

2012-12-07 Thread Kyle Finley
techamerica, Have you looked into Windows Live Custom Domains https://domains.live.com/ ? I think what you could do is: 1. Add your clients domain as Greg described. 2. Setup your clients email using Windows Live 3. Create regular google accounts (not gmail accounts) using the Windows Live

[google-appengine] Re: Question on how to modularize handlers

2012-11-09 Thread Kyle Finley
Shan, if you are using the python27 runtime it should be: # app.yaml runtime: python27 - url: /test script: handlers/test.application https://developers.google.com/appengine/docs/python/config/appconfig#Script_Handlers -- Kyle On Friday, November 9, 2012 9:18:35 AM UTC-6, Shan Sikdar

[google-appengine] Re: Go Lang everything in a single source?

2012-11-03 Thread Kyle Finley
In Go -- files within the same directory should belong to the same package. So, both main.go and a.go should be the same package E.g. package script. This turns out to be a really nice feature because it allows you to break your packages into logical pieces with very little effort. I would

Re: [google-appengine] Go AppEngine vs Java AppEngine

2012-09-05 Thread Kyle Finley
Luke Shildendra, I think one major advantage of Go is the instance startup time. In my experiences it's always less than 1 second. Whereas startup time for Java instance cause much unnecessary stress. Just search the list -- you will find thread upon thread where it is being discussed. I

Re: [google-appengine] Go AppEngine vs Java AppEngine

2012-09-05 Thread Kyle Finley
Excellent point Brandon. Memory usage in Go is a huge win. Where a python app my use 40Mb an equivalent Go app would use 7Mb. This leaves more room for a cache. On Wednesday, September 5, 2012 11:40:16 AM UTC-5, Brandon Wirtz wrote: We found that Go runs neck and Neck with Python. It has

[google-appengine] Re: os.environ and threadsafe: true

2012-08-28 Thread Kyle Finley
According to Nick Johnson (a former App Engine team member) os.environ is threadsafe: But what if my app makes use of 'os.environ' or other CGI-isms, you ask? All is not lost. The smart folks on the Python 2.7 runtime team foresaw that some apps will inevitably do this, and built in a

Re: [google-appengine] How can I block curl requests

2012-08-08 Thread Kyle Finley
In the admin logs - under options - you can filter by regular expression. Does that help? On Aug 8, 2012, at 12:11 PM, Kate wrote: It isn't stopping them. I am just not getting errors. What is troubling is that these curl requests are counting as hits and there are so many of tens of

Re: [google-appengine] How can I block curl requests

2012-08-08 Thread Kyle Finley
Kate, Sorry to hear that. So CloudFlare.com wasn't able to block it? - Kyle -- 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-appengine/-/1kZoK2NWMpIJ. To post

Re: [google-appengine] How can I block curl requests

2012-08-06 Thread Kyle Finley
, 2012, at 10:34 AM, Kyle Finley kylefin...@gmail.com wrote: Hi Joshua, Thank you, that's a good thought. Kate sent me some files offline, and I believe we've figured out the problem. For the middleware to work you must be using WSGI not CGI. Someone please correct me if I'm wrong

Re: [google-appengine] Dynamic Backend Instance Scaling

2012-08-06 Thread Kyle Finley
Amy, Are backends limited to 10 concurrent requests like frontend instances? -- 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-appengine/-/sxhG0ED16xMJ. To post

Re: [google-appengine] Dynamic Backend Instance Scaling

2012-08-06 Thread Kyle Finley
Yes-- the limits are the same as frontend instances. Actually, at the moment the limit is 8 for python, and 10 for java. OK, Thanks. Is this documented anywhere officially? If anyone is interested in making this number configurable please star this future request:

[google-appengine] Re: Boat Load of Questions (which might turn in to feature requests)

2012-08-03 Thread Kyle Finley
Why can’t I configure how many requests Frontends handle? F1’s serving 8 requests is silly. F4’s handling 8 requests is often equally silly in the opposite direction. Good idea. I have created a feature request for it, Please star it:

Re: [google-appengine] How can I block curl requests

2012-08-03 Thread Kyle Finley
Hi Joshua, Thank you, that's a good thought. Kate sent me some files offline, and I believe we've figured out the problem. For the middleware to work you must be using WSGI not CGI. Someone please correct me if I'm wrong, but I believe she would have to upgrade here App to python27 to use

Re: [google-appengine] How can I block curl requests

2012-08-03 Thread Kyle Finley
')) self.error(401) return # rest of the get handler On Aug 3, 2012, at 10:34 AM, Kyle Finley kylefin...@gmail.com wrote: Hi Joshua, Thank you, that's a good thought. Kate sent me some files offline, and I believe we've figured out the problem. For the middleware to work you must

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

2012-08-03 Thread Kyle Finley
While startup times appears to be a contentious topic. I think that we can all agree that: *Fewer Instance *==* Few Cold Starts *==* Happy Customers *==* Smaller Bills * Currently Apps of all sizes are capped at 10 concurrent requests. F4 instance can handle no more concurrent request then a

Re: [google-appengine] How can I block curl requests

2012-08-03 Thread Kyle Finley
I think you change 401 in this code to 429 I wish it was that easy. Webapp2 uses dictionary to return the status code / message and 429 didn't make the list. preTraceback (most recent call last): File

Re: [google-appengine] How can I block curl requests

2012-08-03 Thread Kyle Finley
, at 10:45 AM, Joshua Smith wrote: I would have thought self.error(429). That doesn't work? Is there a doc that says what codes are are allowed to return? On Aug 3, 2012, at 11:02 AM, Kyle Finley kylefin...@gmail.com wrote: Yes, thank you. Do you have any thoughts on how to return error code

[google-appengine] Re: How can I block curl requests

2012-08-02 Thread Kyle Finley
Kate, sorry there were some errors Here's a working example: https://github.com/scotch/operation_curl_block/blob/master/appengine_config.py It should be status not status_code, AntiCurlMiddleware not AntiCurlMiddleware*y *and I used startswith *instead* of *is* You can test it here: *curl -v

Re: [google-appengine] Re: How can I block curl requests

2012-08-02 Thread Kyle Finley
test it with curl for me? I tried testing for user agent starting with Mozilla , from Firefox but it didn't work. http://www.australiansabroad.com Many thanks!! Kate On Thursday, August 2, 2012 4:42:44 PM UTC-4, Kyle Finley wrote: Kate, sorry there were some errors Here's

Re: [google-appengine] How can I block curl requests

2012-08-02 Thread Kyle Finley
How do I restart the instance? at appengine.google.com in the instance section you should see a list of instance. They each have a Shutdown button Yes it is in the root directory. I am stumped! I didn't think it was working as I tried testing for different browsers and it didn't catch them.

Re: [google-appengine] How can I block curl requests

2012-08-02 Thread Kyle Finley
If the middleware doesn't block them, I believe the issue with CloudFlare has been resolved. maybe you could test their service. They have a free tier https://www.cloudflare.com/plans and CloudFlare should block the request before they reached your app - saving you from starting instances to

Re: [google-appengine] How can I block curl requests

2012-08-02 Thread Kyle Finley
) On Thursday, August 2, 2012 6:55:37 PM UTC-4, Kyle Finley wrote: How do I restart the instance? at appengine.google.com in the instance section you should see a list of instance. They each have a Shutdown button Yes it is in the root directory. I am stumped! I didn't think it was working as I

Re: [google-appengine] How can I block curl requests

2012-08-01 Thread Kyle Finley
Hi Kate, Maybe you could look into cloudflare.com it offers protection agains DDOShttp://en.wikipedia.org/wiki/Denial-of-service_attack attacks, which is what these request appear to be. - Kyle -- You received this message because you are subscribed to the Google Groups Google App Engine

Re: [google-appengine] How can I block curl requests

2012-08-01 Thread Kyle Finley
Yes, I should mention that today might not be a good day to test CloudFlare, though. https://groups.google.com/forum/?fromgroups#!topic/google-appengine/Q6yQ4d9ov-o On Aug 1, 2012, at 5:59 PM, Jeff Schnitzer wrote: On Wed, Aug 1, 2012 at 2:55 PM, Kyle Finley kylefin...@gmail.com wrote: Hi

Re: [google-appengine] How can I block curl requests

2012-08-01 Thread Kyle Finley
Even if she did the check in a middleware, she would still have to handle/reject the requests by spinning up instances, though. Right? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit

Re: [google-appengine] How can I block curl requests

2012-08-01 Thread Kyle Finley
Kate, You could check the user agent in a middleware something like this: # in your appengine_config.py file - root directory from webob import Response class AntiCurlMiddleware(object): def __init__(self, app): self.app = app def __call__(self, environ, start_response):

[google-appengine] Re: Differentiated service with Google App Engine

2012-07-26 Thread Kyle Finley
David and anyone else who is interested here's the feature request: http://code.google.com/p/googleappengine/issues/detail?id=1300 Instead of allowing multiple apps to share one datastore; It appears that the App Engine team is planning on giving more control over app versions, in the future. I

[google-appengine] Re: 500 Internal Server Errors Not Logged

2012-07-20 Thread Kyle Finley
Hi Chris, Did you see this error at a time when a new instance was starting up? I saw the same thing when I was doing some load testing. The problem seem to present itself when a new instance was added. My theory is that the scheduler routed the requests to ia new instance before it had

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

2012-07-20 Thread Kyle Finley
Hi Brandon, The people who don't know how to build APIs so that apps are task specific. Piss me off. Build modular. Dump frame works. Defer often. Be your own scheduler by shaping internal ops. Cache incoming. Cache reads cache writes. Manage threads. Use warmups. This is not rocket

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

2012-07-20 Thread Kyle Finley
Oh, OK. Thank you Brandon. -- 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-appengine/-/rvs4uS2r6LkJ. To post to this group, send email to

[google-appengine] Re: Backends Questions

2012-07-12 Thread Kyle Finley
I don't have an answer for the auto scaling of backends, but maybe you could accomplish your task through a combination of Backends and Frontend instances. You says that the reason you were having issues with frontend instance was because of high startup time caused by intense processing.

[google-appengine] Re: Should developers pay for the useless instances? Can we set max instances to 1?

2012-07-11 Thread Kyle Finley
Here's the feature request. Please star it. http://code.google.com/p/googleappengine/issues/detail?id=5858 -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit

Re: [google-appengine] Endpoints section in the control panel?

2012-07-11 Thread Kyle Finley
on a Java backend. Thanks, Dan On Tue, Jul 10, 2012 at 8:49 PM, Kyle Finley kylefin...@gmail.com wrote: Perfect, that's what I was hoping. How are the Discovery docs created? I suspect that there is a program that takes the annotated code (python / java) and creates the document? Where

Re: [google-appengine] Need help or consulting: Request was aborted errors

2012-07-10 Thread Kyle Finley
I would like to see how Go fairs. Would someone with high bandwidth please try running this: ab -r -n 1000 -c 500 -i http://goscore.scotch-media.appspot.com/leaders With one instance running I'm getting: AB: Requests per second:31.31 [#/sec] (mean) Datastore Admin: Total number of

Re: [google-appengine] Need help or consulting: Request was aborted errors

2012-07-10 Thread Kyle Finley
Thank you, whoever ran that. It looks like Go doesn't do all the much better. The scheduler started up 3 instances for that. With the peak (when I happened to check it) at 25 QPS. I would be curious to hear what the real latency was. Total number of instances Average QPS*Average

Re: [google-appengine] Need help or consulting: Request was aborted errors

2012-07-10 Thread Kyle Finley
Thank you Berry! I was hoping for better results considering there are not service calls. Heres the instance chart. It looks like I would only be billed for 1 instance. I just wish the scheduler was less aggressive. On Jul 10, 2012, at 1:11 PM, Barry Hunter wrote: # ab -n 1000 -c 500 -i

Re: [google-appengine] Re: Endpoints section in the control panel?

2012-07-10 Thread Kyle Finley
Are the tools open source? I think that the discovery api has a lot of potential and I would like to investigate a Go port. On Tuesday, July 10, 2012 3:22:15 PM UTC-5, Dan Holevoet wrote: Yes. We have command line tools for Python annotations - client libraries. (We have them for Java as

Re: [google-appengine] Re: Endpoints section in the control panel?

2012-07-10 Thread Kyle Finley
Hi Dan, Thank you for your reply. If you're just interested in generating a client library for an Endpoint that you can consume in Go, you can probably use the gen.gohttp://code.google.com/p/google-api-go-client/source/browse/google-api-go-generator/gen.gofile provided by the Go client

Re: [google-appengine] Endpoints section in the control panel?

2012-07-10 Thread Kyle Finley
. Apologies if my explanation is (or was) confusing. I'm happy to elaborate further. Thanks, Dan On Tue, Jul 10, 2012 at 4:11 PM, Kyle Finley kylefin...@gmail.com wrote: Hi Dan, Thank you for your reply. If you're just interested in generating a client library for an Endpoint that you can

Re: [google-appengine] Need help or consulting: Request was aborted errors

2012-07-09 Thread Kyle Finley
internal throttling going on somewhere. -R On Sunday, July 8, 2012 6:23:02 PM UTC-4, Kyle Finley wrote: Richard, Another option would be to move the Game State request to a Gohttps://developers.google.com/appengine/docs/go/overview instance, either as a backendhttps

Re: [google-appengine] Need help or consulting: Request was aborted errors

2012-07-09 Thread Kyle Finley
I'm seeing the same thing with the test app I created. Even though I had max instances set to 1 the scheduler still started up a second instance. During this time I had several request that resulted in 500 server errors. Once the second instance was started latency increased - as if the

Re: [google-appengine] Need help or consulting: Request was aborted errors

2012-07-09 Thread Kyle Finley
Jeff, Thanks for the clarification. It's good to know that this is a free quota issue. The fact that the errors are not reported in the logs, makes it difficult to diagnose. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this

Re: [google-appengine] Need help or consulting: Request was aborted errors

2012-07-08 Thread Kyle Finley
Richard, Another option would be to move the Game State request to a Gohttps://developers.google.com/appengine/docs/go/overview instance, either as a backendhttps://developers.google.com/appengine/docs/go/config/backendsor as a separate version. I believe a single Go instance should be able

[google-appengine] Re: HTML Website on Google App Engine

2012-06-18 Thread Kyle Finley
Have you mapped the root ('/') to a template? If so, App Engine will have to start an instance to handle this request. Also any request that are not specified in the app.yaml file will be sent to the instance causing it to start up. Be sure to account map the *favicon.icon* for example.

[google-appengine] Re: full text search API is experimental, ready for a test drive

2012-05-10 Thread Kyle Finley
Congratulations! Would you be able to share an estimate on when the Search API will be available from the Go runtime? I understand that both are experimental, but is it actively being worked on or is still on the todo list? Thank you, Kyle -- You received this message because you are

[google-appengine] Re: Raise limits on number of apps

2012-04-30 Thread Kyle Finley
Have the owner of the apps change your Role from *Owner* to *Developer. T*hen, the app will not count as one of your ten. https://appengine.google.com/permissions?app_id=yourapiid On Monday, April 30, 2012 4:33:29 PM UTC-5, lumpynifkin wrote: Is it possible to raise the number of apps I am

[google-appengine] Re: Admin Settings: Number of Instances of my Application

2012-04-06 Thread Kyle Finley
I would like to have this feature as well. It makes a lot of sense, especially for Go apps. A single Go instance can handle thousands of requests, and only takes up 6MB of ram leaving over 120MB for a cache. If you create a feature request please post it here so I can star it. - Kyle -- You

[google-appengine] Re: Hello every one I have a question about google app engine please ?!!!

2012-03-27 Thread Kyle Finley
Angelina, The amount of time required really depends upon the amount of control that you want. Are you displaying the same ad to all users? Do you need to track impressions? If you're simply displaying the same ad to all users, then it shouldn't take more then a couple hours. The most time

[google-appengine] Re: It seems Cold Starts is an unavoidable problem for GAE. So why not to conquer it?

2012-03-15 Thread Kyle Finley
The interesting thing about cold start time, is that it seems to varies based on the AppID, at least with the Python27 runtime. As stated here ( https://groups.google.com/forum/?fromgroups#!topic/google-appengine/W7EJrBhHEJg ) I tested the exact same application on multiple AppIDs and

[google-appengine] 63% Reduction in Cold Start Time by Changing AppID

2012-03-12 Thread Kyle Finley
Has anyone noticed a dramatic difference in Cold Start times when using different AppIDs? I recently changed the AppID for a project that I'm working on and there was a noticeable reduction in the *cold* start time. Intrigued, I decided to perform an experiment: - I loaded the application

Re: [google-appengine] 63% Reduction in Cold Start Time by Changing AppID

2012-03-12 Thread Kyle Finley
I don't record it on each test, but it was generally ~ 42.2 MBytes +-0.4 On Mar 12, 2012, at 5:19 PM, James Broberg wrote: Did you check the current memory utilisation of each app when you ran the test? On 13 March 2012 08:41, Kyle Finley kylefin...@gmail.com wrote: Has anyone noticed

Re: [google-appengine] Re: ImagesService rotation limitation

2012-02-07 Thread Kyle Finley
is this: if any image in the collection needs a rotation (i.e. not a multiple of 90), I send all images to the browser where javascript does the compositing at the expense of the added bandwidth. On Feb 6, 10:52 pm, Kyle Finley kylefin...@gmail.com wrote: Sorry, Mike, I thought I was responding

[google-appengine] Re: ImagesService rotation limitation

2012-02-06 Thread Kyle Finley
Hey mikaye, Could you use PIL instead? It's available when using the python27 runtime. http://code.google.com/appengine/docs/python/python27/using27.html#Configuring_Libraries - Kyle -- You received this message because you are subscribed to the Google Groups Google App Engine group. To

Re: [google-appengine] Re: ImagesService rotation limitation

2012-02-06 Thread Kyle Finley
version of your app. It would then have access to the same datastore / blobstore. - Kyle On Feb 6, 2012, at 11:31 PM, mikaye wrote: Thanks, not sure I can use this from the Java runtime environment unless I were to set up a separate application. --Mike On Feb 6, 10:48 am, Kyle Finley

Re: [google-appengine] Re: App Engine SDK 1.6.2 is out!

2012-02-01 Thread Kyle Finley
Thank you for your reply Moishe. It's good to know that the create quote is on it's way out. I'm not sure that charging by minutes requested apposed to minutes consumed actually solves the problem, thought. Instead of reusing one long lived channel developers will be forced to create many

[google-appengine] Re: App Engine SDK 1.6.2 is out!

2012-01-31 Thread Kyle Finley
Ikai, Would you mind clarifying the changes to the Channel API? From the Pre-release statement It appeared that the quota was being changed to be automatically measured in terms of minutes a channel has been open, instead of channels created. Your release notes, however, seem to indicate

[google-appengine] Re: 1.6.2 Pre-Release SDKs Out

2012-01-24 Thread Kyle Finley
- Channel API quota is now automatically measured in terms of minutes a channel has been open, instead of channels created. Additionally, developers can now specify how long a channel can be open, with the default remaining two hours. This is a welcome change. How is the pricing set? Is

[google-appengine] Re: fastest way to serialize db.Model(s) to json?

2012-01-16 Thread Kyle Finley
aschmid, Are you running python27? If so you should see some improvement by importing *json* instead of *simplejson*. http://stackoverflow.com/a/8191970/236564 -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on

[google-appengine] Re: Change in behavior of get_serving_url

2011-12-09 Thread Kyle Finley
Could you pass 0 as a string? url = get_serving_url(key, size=0) -- 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-appengine/-/CQ1IcMtqWvkJ. To post to this

[google-appengine] Re: Communication Between 2 Google App Engine Apps

2011-12-07 Thread Kyle Finley
You might look at ProtoRPC: http://code.google.com/appengine/docs/python/tools/protorpc/overview.html I use it for clientside communication with Backbone and Sproutcore, but it also does a nice job of simplifying server to server communication. The tunes_db example demonstrates this quite

[google-appengine] Re: Static files question

2011-11-15 Thread Kyle Finley
- url: /images static_dir: static/images *Yes* - url: /images/ads static_dir: static/images/ads /* that is do subdirectories have the be explicitly listed *No, all subdirectories will be included:* *images/ads* *images/cats* - url /stylesheets static_dir /stylesheets /* that is can

Re: [google-appengine] Re: Static files question

2011-11-15 Thread Kyle Finley
#Static_File_Pattern_Handlers Does that answer your question? - Kyle On Tue, Nov 15, 2011 at 9:58 PM, Kate mss.ka...@gmail.com wrote: Thanks Kylie, but why are these files still showing as requests on my summary page? On Nov 15, 2:44 pm, Kyle Finley kylefin...@gmail.com wrote: - url: /images

[google-appengine] Re: 1.6.0 Prerelease SDKs are out

2011-11-02 Thread Kyle Finley
Sorry if this is a duplicate. The development server seems to be ignoring content-type headers when using the python27 runtime. Posting application/json is read as application/x-www-form-urlencoded in python27, but runtime: python reads it as application/json. Is this a know issue or am doing

[google-appengine] Does Account credit remain on the account if billing is disabled?

2011-09-03 Thread Kyle Finley
If I: 1. I have a credit on my account, E.g. ($50) 2. I disable billing. 3. 3 months latter I re-enable billing. Do I still have the credit? Thanks, - Kyle -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the

[google-appengine] Re: GeoModel and Django

2011-08-22 Thread Kyle Finley
Hi Ellie, I'm assuming you talking about native Django models. I began a port of GeoModel to Django-norel some time ago, but never completed it. Here's the repo django-geomodel https://bitbucket.org/scotch/django-geomodel. I found that for my dataset, without async support in Django, the

[google-appengine] Re: SMSLib With Google App Engine

2011-07-11 Thread Kyle Finley
Another solution would be to use SMS gateways http://en.wikipedia.org/wiki/List_of_SMS_gateways -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit

Re: [google-appengine] Re: FAQ for out of preview pricing changes

2011-05-24 Thread Kyle Finley
Do you think it would be beneficial to use Google Moderatorhttp://www.google.com/moderator/for this? -- 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-appengine@googlegroups.com. To unsubscribe from

Re: [google-appengine] Re: Is App Engine suddenly becoming more expensive???

2011-05-12 Thread Kyle Finley
I noticed that the backends instances are tiered: class configurationMemory limitCPU limitCost per hour per instanceB1128MB 600MHz$0.08B2 (default)256MB1.2GHz$0.16B4512MB2.4GHz$0.32B81024MB4.8GHz$0.64 I personally would like to see this model extended to the frontend instances. You could have

Re: RE: [google-appengine] Re: Is App Engine suddenly becoming more expensive???

2011-05-11 Thread Kyle Finley
What if you were to re-wright using datastore plus? http://code.google.com/p/appengine-ndb-experiment/ Would this be comparable to threading? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to