[google-appengine] How do I view logs by thread?

2016-02-25 Thread ThePiachu
In the old logs, I was able to neatly see all logs by thread - every 
warning, error and debug was in chronological order, sorted by the thread 
that initialized them. Now it seems everything is jumbled together, clumped 
a few entries at a time and shuffled between multiple simultaneous threads.

Is there any way for me to read the new logs in a threaded fashion, 
especially int he light of the old console going away?

-- 
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 from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/70d9c929-3057-4d4f-a593-3a42af1b3403%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] How to set up static IP without a custom domain?

2015-09-24 Thread ThePiachu
I'm trying to set up a static IP (or VIP as they appear to be called) for 
my app engine app. The process appears to be documented 
here: 
https://cloud.google.com/appengine/docs/using-custom-domains-and-ssl?hl=en#purchase_a_vip
 
, although it seems to require me to be on a custom domain - can't do it on 
my gmail account for some reason...

How can I set up a static IP for my app engine app without creating a 
custom domain?

I was hoping that going to https://console.developers.google.com and 
Networking -> External IP Addresses I would be able to create a static IP 
address and assign it then and there, but no because reasons...

-- 
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 from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/3bbdd3d5-db1c-4b7a-ba33-fa84ec7408d4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] How does App Engine scale to large applications?

2014-03-05 Thread ThePiachu
I am currently looking into developing a large application either on App 
Engine or virtual machines like Amazon EC2. I am wondering how well does 
the App Engine scale in comparison to Amazon?

The application I have in mind needs to be storing over 20GB of indexed 
data of small real-time records (usually 10-100kB), be able to retrieve 
that information quickly and be able to scale up to a large amount of 
traffic.

Here is an example of a service similar to what we are aiming to develop 
- https://blockchain.info/ .

Since the project is still in early development, there is no preference for 
one platform over the other - we are still hiring developers, so we can 
hire ones that can develop for App Engine or Amazon. I am more concerned 
about the long-term advantages and disadvantages of choosing one option 
over the other.

-- 
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 from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


[google-appengine] If I run an application on the appengine from outside of US, what country's laws determines whether an app is legal?

2014-02-13 Thread ThePiachu
I am wondering what laws should be taken into consideration when running 
apps on the appengine? Say, if I am doing everything by the book where my 
company is, but the laws are different from many other places in the world, 
does me complying with my local law make it okay to host my app on the 
appengine? I am not talking about things that would be violating Google's 
ToS, but more dubious things that is digital currency exchange. In Canada, 
the government is lenient with who can run such things - companies don't 
need to comply with AML or the like. However, in the States the same 
business would require such licenses. So if I run a business that does 
everything by the books in Canada, can I still use the appengine?

-- 
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 from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


[google-appengine] Application limit increase

2013-12-12 Thread ThePiachu
Hello,

As I read in a few other places, I understand that I should post my request 
to increase my application amount quota here. So I would like to do that.

Currently I'm starting development on a few projects that will require new 
application slots. In the past I managed to trim away a few applications 
that I wasn't fully committed to, currently I have a few disabled 
applications already, and I'm running out of fat to trim off. I run some of 
my applications, like http://tpfaucet.appspot.com/ and 
http://gobittest.appspot.com/ for the Bitcoin community to be able to test 
their applications against. I have a few neat apps that are for profit, 
like https://vanitypool.appspot.com/ or http://tpbitcalc.appspot.com/  , 
they might not be much but they pull their own weight. Currently I am 
prototyping a few applications I can't link to that will tie to my new 
business, and as I look at it more and more, with the systems I currently 
have planned I will run out of my application quota soon.

If it would help my case, I would also like to point out that I have shared 
a decent amount of the work I created for Google App Engine Go with the 
community - https://github.com/ThePiachu?tab=repositories , implementing 
such algorithms as ReCAPTCHA, JSON RPC, Koblitz ECDSA curves and the like.

Thank you for your consideration.

-- 
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 from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


[google-appengine] GAE Go-Python/Java hybrid application?

2012-01-12 Thread ThePiachu
Can one write a hybrid Go-Python/Java application and run it on Google
App Engine as one application, or do they need to be split into two
apps and communicate with each other through HTTP calls? Is there any
tutorial or example on something like this being done?

-- 
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 this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Using RAM instead of datastore - any limits?

2011-11-20 Thread ThePiachu
My application relies on accessing a lot of simple stored data and 
displaying it. I'm considering storing all data in the RAM of the 
application in order not to have problems with datastore access quotas, but 
I'm not sure if there are any limits of how much data can be stored this 
way. Is there any limit on how much data can one store in say, a vector in 
RAM?

-- 
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/-/bKFFwBbVz_4J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Risk mitigation, data storage

2011-09-26 Thread ThePiachu
I want to create an app on GAE that will store semi-valuable data of
users. Specifically, private and public encryption keys that will be
used by the app to perform some encrypting and decrypting. I want to
minimise the risk of users' data being stolen, so I intend on using
account authorisation with Google account, but I am wondering if there
is any way I can go beyond that? Is there some way to store my users'
data so even if someone would get into the administrative account
wouldn't be able to get? Is there some solution of encrypting the data
so as only the user would be able to decode it with their account?

-- 
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 this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] GAE Security

2011-09-12 Thread ThePiachu
Hello,
I am writing a Masters paper connected with safety of online currencies. I 
decided to make a web application dealing with one of such currencies and 
deploy it on GAE. As I'll have to analyse how secure it is, I would like to 
know how secure GAE is. What precautions to take while developing an app 
running on it to minimise the risk for the potential users, what are the 
most common weak chains and so forth. I understand that there are some 
companies that put sensitive data in the GAE, so it must be safe, but I 
can't find any details on the matter.
Thanks for any answers in advance.

-- 
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/-/Vff25BSysagJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.