-
posts
-
Building Go Applications with Google Container Builder
Gopher image Creative Commons Attribution 3.0 Unported (ja) by tenntenn
Recently I wrote on Twitter about how doing CI right requires you to properly separate your build and run steps for your container images.
The reason for this issue is t...
-
Google Cloud Platform HTTP Load Balancers Explained via the CLI
The Google Cloud Platform Load Balancers are based off of technology that
Google developed for our applications. There are two types of load balancers,
the Network (L3) Load Balancer and the HTTP (L7) Load Balancer. The HTTP Load
Balancer is globa...
-
Cross-Region HTTP Services on Container Engine
We recently released a new tutorial on using Google Cloud Platform’s HTTP load balancer with Container Engine.
This is really exciting because it opens up lots of possibilities based on the
features of the HTTP load balancer. The HTTP load balan...
-
Deploying Go Servers with Kubernetes on Container Engine
Cross posted on medium
I was trying to get a Go app running on Container Engine and couldn’t quite
find what I was looking for. There are guides out there about how to use Go and
Docker, and how to use Kubernetes but but not many about Go app...
-
App Engine Pull Queues and kombu
App Engine provides a pull queue API
for accessing, leasing, and processing tasks outside of App Engine. You might
do this to perform long running tasks that aren’t suited to App Engine’s
infrastructure. Or you might want to use a library or syste...
-
Kay 1.1 Released!
The Kay team just just released Kay 1.1! I want to thank Takashi Matsuo,
Nickolas Daskalou, Tasuku Suenaga, and Yosuke Suzuki for their hard work on this
release.
Kay is a web framework made specifically for Google App Engine. The basic
design of...
-
An introduction to the Tipfy Framework for App Engine
(This post is the English translation of the Dec. 24th edition of the Python
Web Framework Advent Calendar 2010. Other posts
can be found on that page, though they will be in Japanese)
I usually use the kay framework for
App Engine development as...
-
Google App Engine 1.4.0 Released!!
Google App Engine 1.4.0 was just released and has lots of interesting new features. Channel API, “Always On” (reserved instances), Improvements to background processing, Warm up requests, and Metadata queries just to name the big ones.
Channel AP...
-
New Google App Engine API Expert
Yesterday I became the new Google App Engine API
Expert (Python)
for the Japan region. Google Experts are the equivalent for Google API
Gurus as they are called in the ‘States. I will be helping out other
developers in Japan to learn about and...
-
Cron only decorator for App Engine
For a recent project I recently I have been using App Engine’s cron
feature to aggregate data and perform maintenance tasks. However, since
cron is a simple web request, if a user accesses that url then the cron
job will run. In order to prevent n...