-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1136 lines (1028 loc) · 67.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: Google Cloud Computing, Hosting Services & Cloud Support
description: Google Cloud Platform lets you build and host applications and websites, store data, and analyze data on Google's scalable infrastructure.
feeds: true
---
<div class="site-wrapper home">
<div class="maia-stage page-header primary scroll-section" data-section-label="Tools for modern applications">
<div class="maia-aux page-header-inner">
<div class="page-header-inner-inner">
<h1 class="headline"><span>Tools for modern applications</span></h1>
<p class="subheadline">Google Cloud Platform enables developers to build, test and deploy applications on Google’s highly-scalable and reliable infrastructure. Choose from computing, storage and application services for your web, mobile and backend solutions.</p>
<p class="cta"><a href="https://console.developers.google.com?getstarted=https://cloud.google.com" class="maia-button try-it cp-track" id="try-body" event="autotrack-data-g" data-g-event="Home" data-g-action="Try It Now" data-g-label="Home Canvas: Click">Try it now</a></p>
</div>
</div>
</div>
<div id="maia-main">
<!-- General Announcement Space (gnode's are misnamed, may want to fix at some point -->
<div id="HPP" class="generic-section announcement-section">
<div class="maia-cols">
<div class="maia-col-7">
<h1 class="headline">
Announcing: <br> Google Cloud Platform Live on November 4
</h1>
<p>
Google Cloud Platform Live will be broadcast from San Francisco on November 4. Join us to hear about the next generation of cloud computing. We'll have two tracks: One will cover hot topics in cloud computing and the other will take you through the end-to-end development cycle of building an app on Google Cloud Platform. Early bird registration rates are available until September 5.</p>
<p class="cta"><a href="https://www.gcp-live.com/" class="maia-button try-it cp-track" id="try-body" event="autotrack-data-g" data-g-event="Home" data-g-action="Watch Online now" data-g-label="Homepage: Click">Register Now</a></p>
</div>
<div class="maia-col-5 ce-image">
<a href="https://www.gcp-live.com/"><img src="/images/home/gcp-live-logo.png" alt="Google Compute Engine" style="width:auto;"/></a>
</div>
</div>
</div>
<!-- END HPP Section -->
<!-- HGCPW section -->
<div id="hgcpw" class="generic-section" data-ng-controller="HgcpwController as ctrl">
<div class="maia-cols">
<div class="maia-col-7">
<h1 class="headline">
How Google Cloud Platform works
</h1>
<p>
Google Cloud Platform is a set of modular cloud-based services that allow you to create anything from simple websites to complex applications.
</p>
</div>
<div class="maia-col-12">
<div class="hgcpw maia-cols"
data-ng-class="{'highlight':ctrl.highlightActive}"
data-tabs
data-active-tab="ctrl.activeTab"
data-tab-classes="maia-col-4"
data-content-classes="maia-col-8"
data-ng-cloak>
<div class="platform-tab all"
data-pane
data-title="All Cloud Platform products"
data-tab-content="<p>Cloud Platform provides the building blocks so you can quickly develop everything from simple websites to complex applications. Explore how you can make Cloud Platform work for you. </p>">
<div data-animation-timeline="all"
data-playing="ctrl.activeTab === 'All Cloud Platform products'">
<div class="gcp-categories">
<div class="gcp-category all-hosting-compute">
<h3 class="gcp-category-label">Hosting + Compute</h3>
<div class="gcp-product-container">
<div class="gcp-product-inner-container">
<div class="gcp-product app-engine"
data-ng-class="{'active':ctrl.itemHighlighted('all-app-engine')}">
<a href="/appengine/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Run your applications on a fully-managed Platform-as-a-Service (PaaS) using built-in services that make you more productive. Just download the SDK and start building immediately.', highlight:'all-app-engine'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="app-engine">
<span class="gcp-anim-icon app-engine">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
<span class="logo-circle"><!--icon--></span>
<span class="logo-inner"><!--icon--></span>
<span class="code"><!--icon--></span>
</span>
<p><em>App Engine</em></p>
</a>
</div>
<div class="gcp-product compute-engine"
data-ng-class="{'active':ctrl.itemHighlighted('all-compute-engine')}">
<a href="/compute/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Run large-scale workloads on virtual machines hosted on Google\'s infrastructure. Choose a VM that fits your needs and gain the performance of Google\'s worldwide fiber network.', highlight:'all-compute-engine'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="compute-engine">
<span class="gcp-anim-icon compute-engine">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-line left one"><!--icon--></span>
<span class="logo-line left two"><!--icon--></span>
<span class="logo-line right one"><!--icon--></span>
<span class="logo-line right two"><!--icon--></span>
<span class="logo-line top one"><!--icon--></span>
<span class="logo-line top two"><!--icon--></span>
<span class="logo-line bottom one"><!--icon--></span>
<span class="logo-line bottom two"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
</span>
<p><em>Compute Engine</em></p>
</a>
</div>
</div>
</div>
</div>
<div class="gcp-category all-storage">
<h3 class="gcp-category-label">Storage</h3>
<div class="gcp-product-container">
<div class="gcp-product-inner-container">
<div class="gcp-product cloud-storage"
data-ng-class="{'active':ctrl.itemHighlighted('all-cloud-storage')}">
<a href="/storage/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Use a durable and highly available object storage service. With global edge-caching, your users have fast access to your app’s data from any location.', highlight:'all-cloud-storage'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="cloud-storage">
<span class="gcp-anim-icon cloud-storage">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-document"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
</span>
<p><em>Cloud Storage</em></p>
</a>
</div>
<div class="gcp-product cloud-datastore"
data-ng-class="{'active':ctrl.itemHighlighted('all-cloud-datastore')}">
<a href="/datastore/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Use a managed, NoSQL, schemaless database for storing non-relational data. Cloud Datastore automatically scales as you need it and supports transactions as well as robust, SQL-like queries.', highlight:'all-cloud-datastore'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="cloud-datastore">
<span class="gcp-anim-icon cloud-datastore">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-main">
<span class="logo-square one"><!--icon--></span>
<span class="logo-square two"><!--icon--></span>
<span class="logo-square three"><!--icon--></span>
<span class="logo-square four"><!--icon--></span>
<span class="logo-square five"><!--icon--></span>
<span class="logo-square six"><!--icon--></span>
</span>
</span>
<p><em>Cloud Datastore</em></p>
</a>
</div>
<div class="gcp-product cloud-sql"
data-ng-class="{'active':ctrl.itemHighlighted('all-cloud-sql')}">
<a href="/sql/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Store and manage data using a fully-managed, relational MySQL database. Google handles replication, patch management and database management to ensure availability and performance.', highlight:'all-cloud-sql'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="cloud-sql">
<span class="gcp-anim-icon cloud-sql">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
<span class="s-1"><!--icon --></span>
<span class="s-2"><!--icon --></span>
<span class="s-3"><!--icon --></span>
<span class="s-4"><!--icon --></span>
<span class="s-5"><!--icon --></span>
<span class="s-6"><!--icon --></span>
<span class="s-7"><!--icon --></span>
<span class="s-8"><!--icon --></span>
<span class="s-9"><!--icon --></span>
<span class="s-10"><!--icon --></span>
<span class="s-11"><!--icon --></span>
<span class="q-1"><!--icon --></span>
<span class="q-2"><!--icon --></span>
<span class="q-3"><!--icon --></span>
<span class="q-4"><!--icon --></span>
<span class="q-5"><!--icon --></span>
<span class="q-6"><!--icon --></span>
<span class="q-7"><!--icon --></span>
<span class="q-8"><!--icon --></span>
<span class="q-9"><!--icon --></span>
<span class="q-10"><!--icon --></span>
<span class="q-11"><!--icon --></span>
<span class="q-12"><!--icon --></span>
<span class="q-13"><!--icon --></span>
<span class="l-1"><!--icon --></span>
<span class="l-2"><!--icon --></span>
<span class="l-3"><!--icon --></span>
<span class="l-4"><!--icon --></span>
<span class="l-5"><!--icon --></span>
<span class="l-6"><!--icon --></span>
<span class="l-7"><!--icon --></span>
<span class="drop-1"><!--icon --></span>
<span class="drop-2"><!--icon --></span>
<span class="drop-3"><!--icon --></span>
<span class="drop-4"><!--icon --></span>
<span class="drop-5"><!--icon --></span>
<span class="drop-6"><!--icon --></span>
</span>
<p><em>Cloud SQL</em></p>
</a>
</div>
</div>
</div>
</div>
<div class="gcp-category all-big-data">
<h3 class="gcp-category-label">Big Data</h3>
<div class="gcp-product-container">
<div class="gcp-product-inner-container">
<div class="gcp-product bigquery"
data-ng-class="{'active':ctrl.itemHighlighted('all-bigquery')}">
<a href="/bigquery/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Analyze Big Data in the cloud with BigQuery. Run fast, SQL-like queries against multi-terabyte datasets in seconds. Scalable and easy to use, BigQuery gives you real-time insights about your data.', highlight:'all-bigquery'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="bigquery">
<span class="gcp-anim-icon big-query">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
<span class="logo-bar-wrapper">
<span class="logo-bar one"><!--icon--></span>
<span class="logo-bar two"><!--icon--></span>
<span class="logo-bar three"><!--icon--></span>
</span>
</span>
<p><em>BigQuery</em></p>
</a>
</div>
</div>
</div>
</div>
<div class="gcp-category all-services">
<h3 class="gcp-category-label">Services</h3>
<div class="gcp-product-container">
<div class="gcp-product-inner-container">
<div class="gcp-product cloud-endpoints"
data-ng-class="{'active':ctrl.itemHighlighted('all-cloud-endpoints')}">
<a href="/endpoints/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Create RESTful services and make them accessible to iOS, Android and Javascript clients. Automatically generate client libraries to make wiring up the frontend easy. Built-in features include denial-of-service protection, OAuth 2.0 support and client key management. ', highlight:'all-cloud-endpoints'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="cloud-endpoints">
<span class="gcp-anim-icon cloud-endpoints">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-secondary"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
<span class="logo-left-arrow"><!--icon--></span>
<span class="logo-right-arrow"><!--icon--></span>
</span>
<p><em>Cloud Endpoints</em></p>
</a>
</div>
<div class="gcp-product translate-api"
data-ng-class="{'active':ctrl.itemHighlighted('all-translate-api')}">
<a href="/translate/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Quickly and dynamically translate between thousands of available language pairs within your app, integrating with Google Translate.', highlight:'all-translate-api'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="translate-api">
<span class="gcp-anim-icon translate-api">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-from"><!--icon--></span>
<span class="logo-arrow"><!--icon--></span>
<span class="logo-to one"><!--icon--></span>
<span class="logo-to two"><!--icon--></span>
</span>
<p><em>Translate API</em></p>
</a>
</div>
<div class="gcp-product prediction-api"
data-ng-class="{'active':ctrl.itemHighlighted('all-prediction-api')}">
<a href="/prediction/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Use Google’s machine learning algorithms to analyze data and predict future outcomes using a familiar RESTful interface. ', highlight:'all-prediction-api'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="prediction-api">
<span class="gcp-anim-icon prediction-api">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-line one"><!--icon--></span>
<span class="logo-line two"><!--icon--></span>
<span class="logo-line three"><!--icon--></span>
<span class="logo-dot one"><!--icon--></span>
<span class="logo-dot two"><!--icon--></span>
</span>
<p><em>Prediction API</em></p>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="gcp-arrow-container">
</div>
<div class="tooltip" data-ng-class="{'active':ctrl.tooltipActive}">
<p data-ng-bind="ctrl.tooltipText"></p>
</div>
</div>
</div>
<div class="platform-tab gaming"
data-pane
data-title="Gaming solutions"
data-tab-content="<p>Google Cloud Platform makes it easy to build a massively scalable game, without having to worry about underlying infrastructure.</p>
<p><a href="solutions/gaming"><em>Read more about gaming solutions</em></a></p>">
<div data-animation-timeline="gaming"
data-playing="ctrl.activeTab === 'Gaming solutions'">
<div class="gcp-categories">
<div class="gcp-category gaming-services">
<h3 class="gcp-category-label">Services</h3>
<div class="gcp-product-container">
<div class="gcp-product-inner-container">
<div class="gcp-product cloud-endpoints"
data-ng-class="{'active':ctrl.itemHighlighted('gaming-cloud-endpoints')}">
<a href="/endpoints/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Create RESTful services and make them accessible to iOS, Android and Javascript clients. Automatically generate client libraries to make wiring up the frontend easy. Built-in features include denial-of-service protection, OAuth 2.0 support and client key management. ', highlight:'gaming-cloud-endpoints'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="cloud-endpoints">
<span class="gcp-anim-icon cloud-endpoints">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-secondary"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
<span class="logo-left-arrow"><!--icon--></span>
<span class="logo-right-arrow"><!--icon--></span>
</span>
<p><em>Cloud Endpoints</em></p>
</a>
</div>
</div>
</div>
</div>
<div class="gcp-category gaming-hosting-compute">
<h3 class="gcp-category-label">Hosting + Compute</h3>
<div class="gcp-product-container">
<div class="gcp-product-inner-container">
<div class="gcp-product app-engine"
data-ng-class="{'active':ctrl.itemHighlighted('gaming-app-engine')}">
<a href="/appengine/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Run your applications on a fully-managed Platform-as-a-Service (PaaS) using built-in services that make you more productive. Just download the SDK and start building immediately.', highlight:'gaming-app-engine'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="app-engine">
<span class="gcp-anim-icon app-engine">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
<span class="logo-circle"><!--icon--></span>
<span class="logo-inner"><!--icon--></span>
<span class="code"><!--icon--></span>
</span>
<p><em>App Engine</em></p>
</a>
</div>
<div class="gcp-product compute-engine"
data-ng-class="{'active':ctrl.itemHighlighted('gaming-compute-engine')}">
<a href="/compute/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Run large-scale workloads on virtual machines hosted on Google\'s infrastructure. Choose a VM that fits your needs and gain the performance of Google\'s worldwide fiber network.', highlight:'gaming-compute-engine'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="compute-engine">
<span class="gcp-anim-icon compute-engine">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-line left one"><!--icon--></span>
<span class="logo-line left two"><!--icon--></span>
<span class="logo-line right one"><!--icon--></span>
<span class="logo-line right two"><!--icon--></span>
<span class="logo-line top one"><!--icon--></span>
<span class="logo-line top two"><!--icon--></span>
<span class="logo-line bottom one"><!--icon--></span>
<span class="logo-line bottom two"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
</span>
<p><em>Compute Engine</em></p>
</a>
</div>
</div>
</div>
</div>
<div class="gcp-category gaming-storage">
<h3 class="gcp-category-label">Storage</h3>
<div class="gcp-product-container">
<div class="gcp-product-inner-container">
<div class="gcp-product cloud-storage"
data-ng-class="{'active':ctrl.itemHighlighted('gaming-cloud-storage')}">
<a href="/storage/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Use a durable and highly available object storage service. With global edge-caching, your users have fast access to your app’s data from any location.', highlight:'gaming-cloud-storage'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="cloud-storage">
<span class="gcp-anim-icon cloud-storage">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-document"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
</span>
<p><em>Cloud Storage</em></p>
</a>
</div>
<div class="gcp-product cloud-datastore"
data-ng-class="{'active':ctrl.itemHighlighted('gaming-cloud-datastore')}">
<a href="/datastore/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Use a managed, NoSQL, schemaless database for storing non-relational data. Cloud Datastore automatically scales as you need it and supports transactions as well as robust, SQL-like queries.', highlight:'gaming-cloud-datastore'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="cloud-datastore">
<span class="gcp-anim-icon cloud-datastore">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-main">
<span class="logo-square one"><!--icon--></span>
<span class="logo-square two"><!--icon--></span>
<span class="logo-square three"><!--icon--></span>
<span class="logo-square four"><!--icon--></span>
<span class="logo-square five"><!--icon--></span>
<span class="logo-square six"><!--icon--></span>
</span>
</span>
<p><em>Cloud Datastore</em></p>
</a>
</div>
</div>
</div>
</div>
<div class="gcp-category gaming-big-data">
<h3 class="gcp-category-label">Big Data</h3>
<div class="gcp-product-container">
<div class="gcp-product-inner-container">
<div class="gcp-product bigquery"
data-ng-class="{'active':ctrl.itemHighlighted('gaming-bigquery')}">
<a href="/bigquery/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Analyze Big Data in the cloud with BigQuery. Run fast, SQL-like queries against multi-terabyte datasets in seconds. Scalable and easy to use, BigQuery gives you real-time insights about your data.', highlight:'gaming-bigquery'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="bigquery">
<span class="gcp-anim-icon big-query">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
<span class="logo-bar-wrapper">
<span class="logo-bar one"><!--icon--></span>
<span class="logo-bar two"><!--icon--></span>
<span class="logo-bar three"><!--icon--></span>
</span>
</span>
<p><em>BigQuery</em></p>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="gcp-arrow-container">
<div class="gcp-arrow arrow-1"
data-ng-class="{'active':ctrl.itemHighlighted('gaming-arrow-1')}"
data-arrow-animation
data-slug="arrow-1">
<span class="arrow-segment arrow-segment-1"><!--icon--></span>
<span class="arrow-segment arrow-segment-2"><!--icon--></span>
<span class="arrow-head"><!--icon--></span>
<span class="arrow-label">1</span>
</div>
<div class="gcp-arrow arrow-2"
data-ng-class="{'active':ctrl.itemHighlighted('gaming-arrow-2')}"
data-arrow-animation
data-slug="arrow-2">
<span class="arrow-segment arrow-segment-1"><!--icon--></span>
<span class="arrow-segment arrow-segment-2"><!--icon--></span>
<span class="arrow-head"><!--icon--></span>
<span class="arrow-label">2</span>
</div>
<div class="gcp-arrow arrow-3"
data-ng-class="{'active':ctrl.itemHighlighted('gaming-arrow-3')}"
data-arrow-animation
data-slug="arrow-3">
<span class="arrow-segment arrow-segment-1"><!--icon--></span>
<span class="arrow-segment arrow-segment-2" data-group-anim-with-next="true"><!--icon--></span>
<span class="arrow-segment arrow-segment-3"><!--icon--></span>
<span class="arrow-head arrow-head-1"><!--icon--></span>
<span class="arrow-head arrow-head-2"><!--icon--></span>
<span class="arrow-label">3</span>
</div>
<div class="gcp-arrow arrow-4"
data-ng-class="{'active':ctrl.itemHighlighted('gaming-arrow-4')}"
data-arrow-animation
data-slug="arrow-4">
<span class="arrow-segment arrow-segment-1"><!--icon--></span>
<span class="arrow-segment arrow-segment-2"><!--icon--></span>
<span class="arrow-segment arrow-segment-3"><!--icon--></span>
<span class="arrow-head"><!--icon--></span>
<span class="arrow-label">4</span>
</div>
<div class="gcp-arrow arrow-5"
data-ng-class="{'active':ctrl.itemHighlighted('gaming-arrow-5')}"
data-arrow-animation
data-slug="arrow-5">
<span class="arrow-segment arrow-segment-1"><!--icon--></span>
<span class="arrow-segment arrow-segment-2"><!--icon--></span>
<span class="arrow-segment arrow-segment-3"><!--icon--></span>
<span class="arrow-segment arrow-segment-4"><!--icon--></span>
<span class="arrow-segment arrow-segment-5"><!--icon--></span>
<span class="arrow-head"><!--icon--></span>
<span class="arrow-label">5</span>
</div>
<div class="gcp-arrow arrow-6"
data-ng-class="{'active':ctrl.itemHighlighted('gaming-arrow-6')}"
data-arrow-animation
data-slug="arrow-6">
<span class="arrow-segment arrow-segment-1"><!--icon--></span>
<span class="arrow-segment arrow-segment-2"><!--icon--></span>
<span class="arrow-head"><!--icon--></span>
<span class="arrow-label">6</span>
</div>
</div>
<div class="tooltip" data-ng-class="{'active':ctrl.tooltipActive}">
<p data-ng-bind="ctrl.tooltipText"></p>
</div>
</div>
</div>
<div class="platform-tab mobile"
data-pane
data-title="Mobile Applications"
data-tab-content="<p>Build and host the backend for any mobile app. With an infrastructure that is managed automatically, you can focus on your app.</p>
<p><a href="solutions/mobile"><em>Read more about mobile applications</em></a></p>">
<div data-animation-timeline="mobile"
data-playing="ctrl.activeTab === 'Mobile Applications'">
<div class="gcp-categories">
<div class="gcp-category mobile-services">
<h3 class="gcp-category-label">Services</h3>
<div class="gcp-product-container">
<div class="gcp-product-inner-container">
<div class="gcp-product cloud-endpoints"
data-ng-class="{'active':ctrl.itemHighlighted('mobile-cloud-endpoints')}">
<a href="/endpoints/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Create RESTful services and make them accessible to iOS, Android and Javascript clients. Automatically generate client libraries to make wiring up the frontend easy. Built-in features include denial-of-service protection, OAuth 2.0 support and client key management. ', highlight:'mobile-cloud-endpoints'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="cloud-endpoints">
<span class="gcp-anim-icon cloud-endpoints">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-secondary"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
<span class="logo-left-arrow"><!--icon--></span>
<span class="logo-right-arrow"><!--icon--></span>
</span>
<p><em>Cloud Endpoints</em></p>
</a>
</div>
</div>
</div>
</div>
<div class="gcp-category mobile-hosting-compute">
<h3 class="gcp-category-label">Hosting + Compute</h3>
<div class="gcp-product-container">
<div class="gcp-product-inner-container">
<div class="gcp-product app-engine"
data-ng-class="{'active':ctrl.itemHighlighted('mobile-app-engine')}">
<a href="/appengine/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Run your applications on a fully-managed Platform-as-a-Service (PaaS) using built-in services that make you more productive. Just download the SDK and start building immediately.', highlight:'mobile-app-engine'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="app-engine">
<span class="gcp-anim-icon app-engine">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
<span class="logo-circle"><!--icon--></span>
<span class="logo-inner"><!--icon--></span>
<span class="code"><!--icon--></span>
</span>
<p><em>App Engine</em></p>
</a>
</div>
<div class="gcp-product compute-engine"
data-ng-class="{'active':ctrl.itemHighlighted('mobile-compute-engine')}">
<a href="/compute/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Run large-scale workloads on virtual machines hosted on Google\'s infrastructure. Choose a VM that fits your needs and gain the performance of Google\'s worldwide fiber network.', highlight:'mobile-compute-engine'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="compute-engine">
<span class="gcp-anim-icon compute-engine">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-line left one"><!--icon--></span>
<span class="logo-line left two"><!--icon--></span>
<span class="logo-line right one"><!--icon--></span>
<span class="logo-line right two"><!--icon--></span>
<span class="logo-line top one"><!--icon--></span>
<span class="logo-line top two"><!--icon--></span>
<span class="logo-line bottom one"><!--icon--></span>
<span class="logo-line bottom two"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
</span>
<p><em>Compute Engine</em></p>
</a>
</div>
</div>
</div>
</div>
<div class="gcp-category mobile-storage">
<h3 class="gcp-category-label">Storage</h3>
<div class="gcp-product-container">
<div class="gcp-product-inner-container">
<div class="gcp-product cloud-storage"
data-ng-class="{'active':ctrl.itemHighlighted('mobile-cloud-storage')}">
<a href="/storage/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Use a durable and highly available object storage service. With global edge-caching, your users have fast access to your app’s data from any location.', highlight:'mobile-cloud-storage'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="cloud-storage">
<span class="gcp-anim-icon cloud-storage">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-document"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
</span>
<p><em>Cloud Storage</em></p>
</a>
</div>
<div class="gcp-product cloud-datastore"
data-ng-class="{'active':ctrl.itemHighlighted('mobile-cloud-datastore')}">
<a href="/datastore/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Use a managed, NoSQL, schemaless database for storing non-relational data. Cloud Datastore automatically scales as you need it and supports transactions as well as robust, SQL-like queries.', highlight:'mobile-cloud-datastore'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="cloud-datastore">
<span class="gcp-anim-icon cloud-datastore">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-main">
<span class="logo-square one"><!--icon--></span>
<span class="logo-square two"><!--icon--></span>
<span class="logo-square three"><!--icon--></span>
<span class="logo-square four"><!--icon--></span>
<span class="logo-square five"><!--icon--></span>
<span class="logo-square six"><!--icon--></span>
</span>
</span>
<p><em>Cloud Datastore</em></p>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="gcp-arrow-container">
<div class="gcp-arrow arrow-1"
data-ng-class="{'active':ctrl.itemHighlighted('mobile-arrow-1')}"
data-arrow-animation
data-slug="arrow-1">
<span class="arrow-segment arrow-segment-1"><!--icon--></span>
<span class="arrow-head"><!--icon--></span>
<span class="arrow-label">1</span>
</div>
<div class="gcp-arrow arrow-2"
data-ng-class="{'active':ctrl.itemHighlighted('mobile-arrow-2')}"
data-arrow-animation
data-slug="arrow-2">
<span class="arrow-segment arrow-segment-1"><!--icon--></span>
<span class="arrow-segment arrow-segment-2"><!--icon--></span>
<span class="arrow-head"><!--icon--></span>
<span class="arrow-label">2</span>
</div>
<div class="gcp-arrow arrow-3"
data-ng-class="{'active':ctrl.itemHighlighted('mobile-arrow-3')}"
data-arrow-animation
data-slug="arrow-3">
<span class="arrow-segment arrow-segment-1"><!--icon--></span>
<span class="arrow-segment arrow-segment-2"><!--icon--></span>
<span class="arrow-head"><!--icon--></span>
<span class="arrow-label">3</span>
</div>
<div class="gcp-arrow arrow-4"
data-ng-class="{'active':ctrl.itemHighlighted('mobile-arrow-4')}"
data-arrow-animation
data-slug="arrow-4">
<span class="arrow-segment arrow-segment-1"><!--icon--></span>
<span class="arrow-segment arrow-segment-2"><!--icon--></span>
<span class="arrow-segment arrow-segment-3"><!--icon--></span>
<span class="arrow-head"><!--icon--></span>
<span class="arrow-label">4</span>
</div>
</div>
<div class="tooltip" data-ng-class="{'active':ctrl.tooltipActive}">
<p data-ng-bind="ctrl.tooltipText"></p>
</div>
</div>
</div>
<div class="platform-tab hadoop"
data-pane
data-title="Hadoop on Google Compute Engine"
data-tab-content="<p>Experience the speed of the open-source Apache Hadoop on Google Compute Engine virtual machines. Increase job performance with per-minute billing and scale to thousands of cores to get the business insights you need fast.</p>
<p><a href="solutions/hadoop"><em>Read more about Hadoop</em></a></p>">
<div data-animation-timeline="hadoop"
data-playing="ctrl.activeTab === 'Hadoop on Google Compute Engine'">
<div class="gcp-categories">
<div class="gcp-category hadoop-master">
<h3 class="gcp-category-label">Master</h3>
<div class="gcp-product-container">
<div class="gcp-product-inner-container">
<div class="gcp-product compute-engine"
data-ng-class="{'active':ctrl.itemHighlighted('hadoop-compute-engine')}">
<a href="/compute/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Run large-scale workloads on virtual machines hosted on Google\'s infrastructure. Choose a VM that fits your needs and gain the performance of Google\'s worldwide fiber network.', highlight:'hadoop-compute-engine'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="compute-engine">
<span class="gcp-anim-icon compute-engine">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-line left one"><!--icon--></span>
<span class="logo-line left two"><!--icon--></span>
<span class="logo-line right one"><!--icon--></span>
<span class="logo-line right two"><!--icon--></span>
<span class="logo-line top one"><!--icon--></span>
<span class="logo-line top two"><!--icon--></span>
<span class="logo-line bottom one"><!--icon--></span>
<span class="logo-line bottom two"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
</span>
<p><em>Compute Engine</em></p>
</a>
</div>
<div class="gcp-product cloud-storage"
data-ng-class="{'active':ctrl.itemHighlighted('hadoop-cloud-storage')}">
<a href="/storage/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'Use a durable and highly available object storage service. With global edge-caching, your users have fast access to your app’s data from any location.', highlight:'hadoop-cloud-storage'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="cloud-storage">
<span class="gcp-anim-icon cloud-storage">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-document"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
</span>
<p><em>Cloud Storage</em></p>
</a>
</div>
</div>
</div>
</div>
<div class="gcp-category hadoop-workers">
<h3 class="gcp-category-label">Workers</h3>
<div class="gcp-product-container">
<div class="gcp-product-inner-container">
<div class="gcp-product compute-engine-workers"
data-ng-class="{'active':ctrl.itemHighlighted('hadoop-compute-engine-workers')}">
<a href="/compute/"
data-ng-mouseover="ctrl.activateItem({tooltipText:'The easiest, most reliable and most cost-effective way to use Hadoop on Google Cloud Platform is by using Google Cloud Storage as your default file system. The Google Cloud Storage connector for Hadoop lets you access data directly, without needing to first transfer it from Google Cloud Storage into HDFS. Additional benefits include interoperability with other Google services, automatic capacity scaling, high data availability, and more.', highlight:'hadoop-compute-engine-workers'})"
data-ng-mouseout="ctrl.deactivateItems()"
data-product-animation
data-slug="compute-engine-workers">
<div class="half one">
<span class="gcp-anim-icon compute-engine">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-line left one"><!--icon--></span>
<span class="logo-line left two"><!--icon--></span>
<span class="logo-line right one"><!--icon--></span>
<span class="logo-line right two"><!--icon--></span>
<span class="logo-line top one"><!--icon--></span>
<span class="logo-line top two"><!--icon--></span>
<span class="logo-line bottom one"><!--icon--></span>
<span class="logo-line bottom two"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
</span>
<span class="gcp-anim-icon compute-engine">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-line left one"><!--icon--></span>
<span class="logo-line left two"><!--icon--></span>
<span class="logo-line right one"><!--icon--></span>
<span class="logo-line right two"><!--icon--></span>
<span class="logo-line top one"><!--icon--></span>
<span class="logo-line top two"><!--icon--></span>
<span class="logo-line bottom one"><!--icon--></span>
<span class="logo-line bottom two"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
</span>
</div>
<div class="half two">
<span class="gcp-anim-icon compute-engine">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-line left one"><!--icon--></span>
<span class="logo-line left two"><!--icon--></span>
<span class="logo-line right one"><!--icon--></span>
<span class="logo-line right two"><!--icon--></span>
<span class="logo-line top one"><!--icon--></span>
<span class="logo-line top two"><!--icon--></span>
<span class="logo-line bottom one"><!--icon--></span>
<span class="logo-line bottom two"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
</span>
<span class="gcp-anim-icon compute-engine">
<span class="logo-shadow"><!--icon--></span>
<span class="logo-line left one"><!--icon--></span>
<span class="logo-line left two"><!--icon--></span>
<span class="logo-line right one"><!--icon--></span>
<span class="logo-line right two"><!--icon--></span>
<span class="logo-line top one"><!--icon--></span>
<span class="logo-line top two"><!--icon--></span>
<span class="logo-line bottom one"><!--icon--></span>
<span class="logo-line bottom two"><!--icon--></span>
<span class="logo-main"><!--icon--></span>
</span>
</div>
<p><em>Compute Engine</em></p>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="gcp-arrow-container">
<div class="gcp-arrow arrow-1"
data-ng-class="{'active':ctrl.itemHighlighted('hadoop-arrow-1')}"
data-arrow-animation
data-slug="arrow-1">
<span class="arrow-segment arrow-segment-1"><!--icon--></span>
<span class="arrow-head"><!--icon--></span>
<span class="arrow-label">1</span>
</div>
<div class="gcp-arrow arrow-2"
data-ng-class="{'active':ctrl.itemHighlighted('hadoop-arrow-2')}"
data-arrow-animation
data-slug="arrow-2">
<span class="arrow-segment arrow-segment-1"><!--icon--></span>
<span class="arrow-head"><!--icon--></span>
<span class="arrow-label">2</span>
</div>
</div>
<div class="tooltip" data-ng-class="{'active':ctrl.tooltipActive}">
<p data-ng-bind="ctrl.tooltipText"></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End HGCPW Section -->
<div id="applications" class="generic-section">
<div class="maia-cols">
<div class="maia-col-12">
<h1 class="headline"><em>Google Cloud Platform is used and trusted by over 4 million applications</em></h1>
<ul class="apps-list link-list">
<li><a href="http://gigaom.com/2013/05/07/snapchats-act-of-faith-in-building-on-google-compute-engine/" target="_blank" event="autotrack-data-g" data-g-event="Home" data-g-action="Case Study" data-g-label="Snapchat"><img class="logo" src="/images/home/customer-snapchat.png" alt="Snapchat" data-retina="44x52" /></a></li>
<li><a href="/customers/khan-academy/" event="autotrack-data-g" data-g-event="Home" data-g-action="Case Study" data-g-label="Khan Academy"><img class="logo" src="/images/home/customer-khanacademy.png" alt="Khan Academy" data-retina="211x49" style="margin-top: -24px;" /></a></li>
<li><a href="/customers/pulse/" event="autotrack-data-g" data-g-event="Home" data-g-action="Case Study" data-g-label="Pulse"><img class="logo" src="/images/home/customer-pulse.png" alt="Pulse" data-retina="92x41" /></a></li>
<li><a href="/customers/rovio/" event="autotrack-data-g" data-g-event="Home" data-g-action="Case Study" data-g-label="Rovio"><img class="logo" src="/images/home/customer-rovio.png" alt="Rovio" data-retina="37x58" /></a></li>
<li><a href="/customers/gigya/" event="autotrack-data-g" data-g-event="Home" data-g-action="Case Study" data-g-label="Gigya"><img class="logo" src="/images/home/customer-gigya.png" alt="Gigya" data-retina="102x38" /></a></li>
<li><a href="/customers/dnanexus/" event="autotrack-data-g" data-g-event="Home" data-g-action="Case Study" data-g-label="DNA Nexus"><img class="logo" src="/images/home/customer-dnanexus.png" alt="DNA Nexus" data-retina="173x33" style="margin-top: -7px;" /></a></li>
</ul>
</div>
</div>
</div>
<div id="advantages" class="generic-section scroll-section" data-section-label="Why Google">
<div class="header">
<div class="maia-cols">
<h2 class="headline maia-col-8">Why Google</h2>
<p class="subheadline maia-col-8"></p>
</div>
</div>
<div class="maia-cols">
<div class="inner-block maia-col-6">
<h3 class="headline"><img class="inline-icon" src="/images/home/icon-1.png" alt="Infrastructure" />Run on Google’s infrastructure</h3>
<p>Build on the same <a href="http://www.google.com/about/datacenters/" target="_blank">infrastructure</a> that allows Google to return billions of search results in milliseconds, serve 6 billion hours of YouTube video per month and provide storage for 425 million Gmail users.</p>
<a href="./why-google/#infrastructure" class="read-more" event="autotrack-data-g" data-g-event="Home" data-g-action="Advantages Of Cloud Platform" data-g-label="Infrastructure">Find out more</a>
</div>
<div class="inner-block maia-col-6">
<h3 class="headline"><img class="inline-icon" src="/images/home/icon-2.png" alt="Focus" />Focus on your product</h3>
<p>Rapidly develop, deploy and iterate your applications without worrying about system administration. Google manages your application, database and storage servers so you don’t have to.</p>
<a href="./why-google/#product" class="read-more" event="autotrack-data-g" data-g-event="Home" data-g-action="Advantages Of Cloud Platform" data-g-label="Product">Find out more</a>
</div>
</div>
<div class="maia-cols">
<div class="inner-block maia-col-6">
<h3 class="headline"><img class="inline-icon" src="/images/home/icon-3.png" alt="Mix" />Mix and match services</h3>
<p>Virtual machines. Managed platform. Blob storage. Block storage. NoSQL datastore. MySQL database. Big Data analytics. Google Cloud Platform has all the services your application architecture needs.</p>
<a href="./why-google/#services" class="read-more" event="autotrack-data-g" data-g-event="Home" data-g-action="Advantages Of Cloud Platform" data-g-label="Services">Find out more</a>
</div>
<div class="inner-block maia-col-6">
<h3 class="headline"><img class="inline-icon" src="/images/home/icon-4.png" alt="Scale" />Scale to millions of users</h3>
<p>Applications hosted on Cloud Platform can automatically scale up to handle the most demanding Internet-scale workloads and scale down when traffic subsides. You pay only for what you use.</p>
<a href="./why-google/#scalability" class="read-more" event="autotrack-data-g" data-g-event="Home" data-g-action="Advantages Of Cloud Platform" data-g-label="Scalability">Find out more</a>
</div>
</div>
<div class="maia-cols">
<div class="inner-block maia-col-6">
<h3 class="headline"><img class="inline-icon" src="/images/home/icon-5.png" alt="Performance" />Performance you can count on</h3>
<p>Every millisecond of latency matters. Google’s compute infrastructure gives you consistent CPU, memory and disk performance. Our network and edge cache serve responses rapidly to your users across the world.</p>
<a href="./why-google/#performance" class="read-more" event="autotrack-data-g" data-g-event="Home" data-g-action="Advantages Of Cloud Platform" data-g-label="Performance">Find out more</a>
</div>
<div class="inner-block maia-col-6">
<h3 class="headline"><img class="inline-icon" src="/images/home/icon-6.png" alt="Support" />Get the support you need</h3>
<p>With our worldwide community of users, partner ecosystem and premium support packages, Google provides a full range of resources to help you get started and grow.</p>
<a href="./why-google/#support" class="read-more" event="autotrack-data-g" data-g-event="Home" data-g-action="Advantages Of Cloud Platform" data-g-label="Support">Find out more</a>
</div>
</div>
<div class="maia-cols">
<div class="section-footer maia-col-12">
<a href="./why-google/" class="bounce-link" event="autotrack-data-g" data-g-event="Home" data-g-action="Advantages Of Cloud Platform" data-g-label="View All Advantages">View all advantages</a>
</div>
</div>
</div>
<div id="customers" class="generic-section scroll-section" data-section-label="Our customers">
<div class="header">
<div class="maia-cols">
<h2 class="headline maia-col-8">Some of our customers</h2>
<p class="subheadline maia-col-8"><a href="customers/" class="bounce-link" event="autotrack-data-g" data-g-event="Home" data-g-action="Customer Case Study" data-g-label="View All Case Studies">View all case studies</a></p>
</div>
</div>
<div class="customer-stories">
<div class="maia-cols">
<div class="inner-block maia-col-6">
<div class="maia-cols">
<div class="image-wrapper maia-col-4">
<img src="/images/home/casestudy-snapchat.png" alt="SnapChat" data-retina="139x123" />
</div>
<div class="details maia-col-8">
<h3 class="headline">Snapchat</h3>
<p class="subheadline">“App Engine enabled us to focus on developing the application. We wouldn’t have gotten here without the ease of development that App Engine gave us.”</p>
<p><span class="case-study-author">Bobby Murphy</span><span class="case-study-role">CTO and co-Founder</span></p>
<a href="http://gigaom.com/2013/05/07/snapchats-act-of-faith-in-building-on-google-compute-engine/" class="read-more" target="_blank" event="autotrack-data-g" data-g-event="Home" data-g-action="Customer Case Study" data-g-label="Snapchat">Read Snapchat's story</a>
</div>