-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-resources-sample-B.html
1628 lines (1618 loc) · 94.7 KB
/
page-resources-sample-B.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Bootstrap/FontAwsome - CDN - Latest compiled and minified CSS -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css" rel="stylesheet">
<!-- Bootstrap/FontAwsome - LOCAL - Latest compiled and minified CSS -->
<!-- Note: This is included/commented out in config.sass -->
<!--<link href="css/bootstrap/" rel="stylesheet" type="text/css">-->
<!--<link href="css/font-awesome.css" rel="stylesheet" type="text/css">-->
<!--Google Type - CDN - Fonts for use SASS/CSS-->
<!--<link href="https://fonts.googleapis.com/css?family=Heebo|Martel" type="text/css" rel="stylesheet">-->
<!--Main SASS/CSS for Streamlio-->
<link href="css/streamlio.css" type="text/css" rel="stylesheet" />
<!--Favicon link block-->
<!--<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">-->
<!--<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">-->
<!--<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">-->
<!--<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">-->
<!--<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">-->
<!--<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">-->
<!--<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">-->
<!--<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">-->
<!--<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">-->
<!--<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">-->
<!--<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">-->
<!--<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">-->
<!--<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">-->
<!--<meta name="msapplication-TileColor" content="#ffffff">-->
<!--<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">-->
<!--<meta name="theme-color" content="#ffffff">-->
<link rel="shortcut icon" href="favicon.ico">
<!--<link rel="icon" href="favicon.ico" type="image/x-icon">-->
<title>Streamlio</title>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="ResourcePage" class="">
<!-- Global Nav -->
<nav id="globalNavBar" class="navbar navbar-fixed-top navbar-global" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#global-navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><img class="brand" src="media/logo/Streamlio-Logo.svg" alt="Streamlio logo"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="global-navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<!-- <li><a alt="What is Streamlio" href="#">What is Streamlio?</a></li>-->
<li class="dropdown">
<a alt="Product" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Product<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a alt="Overview" href="#">Overview</a></li>
<li><a alt="Messaging & queuing" href="#">Messaging & queuing</a></li>
<li><a alt="Real-time processing" href="#">Real-time processing</a></li>
<li><a alt="Stream storage" href="#">Stream storage</a></li>
</ul>
</li>
<li class="dropdown">
<a alt="Resources" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Resources<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a alt="Resource library" href="#">Resource library</a></li>
<li><a alt="Video tutorials" href="#">Video tutorials</a></li>
<li><a alt="Getting started" href="#">Getting started</a></li>
</ul>
</li>
<li class="dropdown">
<a alt="About" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">About<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a alt="Company" href="#">Company</a></li>
<li><a alt="News and events" href="#">News and events</a></li>
<li><a alt="Community" href="#">Community</a></li>
</ul>
</li>
<li class="navbar-toggler" data-toggle="collapse" data-target="#navbar-search" aria-controls="navbar-search" aria-expanded="false" aria-label="Toggle navigation"><a alt="Search"><span class="navbar-toggler-icon fa fa-search"></span></a></li>
<li><a alt="Try Now" href="#" class="button-action button-glacier-reverse">Try Now</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
<!-- Search Bar module -->
<div class="collapse" id="navbar-search">
<div class="">
<form class="search-form" id="" action="">
<div class="input-group input-group-lg">
<input type="text" name="search" class="search form-control" placeholder="Search">
<span class="input-group-addon" id="basic-addon1"><i class="fa fa-search" aria-hidden="true"></i></span>
<!-- <span class="input-group-addon search-close" id="basic-addon2"><i class="fa fa-window-close" aria-hidden="true"></i></span>-->
</div>
</form>
</div>
</div>
<!-- / Search Bar module -->
</nav>
<!--block-pageTitleBlock-->
<div id="pageTitleBlock" class="container-fluid pageTitleBlock bg-image plexus-5">
<div class="row">
<div class="col-sm-5 col-sm-offset-1">
<h1> Resources and tutorials </h1>
</div>
</div>
</div>
<div class="container-fluid content-2Col bg-gradient gradient-1 color-streamlio-white">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class="row center-flex">
<div class="col-sm-5 col-sm-offset-0 col-xs-10 col-xs-offset-1 text-align-center hidden-xs"> <img class="img-block img-unset box-shadow" height="150rem" src="https://streamlio-redesign.firebaseapp.com/media/img/streamlio-solution-brief-thumb.png" alt="" /> </div>
<div class="col-sm-7 col-sm-offset-0 col-xs-10 col-xs-offset-1 text-align-left">
<div class="col-xs-10 col-xs-offset-1 ">
<h5>FEATURED</h5>
<h3> Streamlio Solution Brief </h3>
<p class="lead"> Read about the Streamlio intelligent platform for fast data. </p>
<p><a href="https://streamlio-redesign.firebaseapp.com/pdf/Streamlio-Solution-Brief.pdf" class="button button-streamlio-cyan-reverse">Read More</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="" class="container-fluid content-block-padding-small cardList-filter">
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-sm-5 col-sm-offset-1">
<h3>Resource Library</h3>
</div>
<div class="col-xs-10 col-xs-offset-1 col-sm-5 col-sm-offset-0 text-align-right">
<div class="btn-group">
<button type="button" class="btn btn-lg button-glacier dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Filter by Type<span class="caret"></span><span class="sr-only">Toggle category filter dropdown</span></button>
<ul class="dropdown-menu">
<li>
<input type="checkbox" id="cat-checkbox-video" name="video" value="video" data-filter="video" checked>
<label for="cat-checkbox-video">video</label>
</li>
<li>
<input type="checkbox" id="cat-checkbox-blog" name="blog" value="blog" data-filter="blog" checked>
<label for="cat-checkbox-blog">blog</label>
</li>
<li>
<input type="checkbox" id="cat-checkbox-tech notes" name="tech notes" value="tech notes" data-filter="tech notes" checked>
<label for="cat-checkbox-tech notes">tech notes</label>
</li>
<li>
<input type="checkbox" id="cat-checkbox-solution brief" name="solution brief" value="solution brief" data-filter="solution brief" checked>
<label for="cat-checkbox-solution brief">solution brief</label>
</li>
<li>
<input type="checkbox" id="cat-checkbox-presentation" name="presentation" value="presentation" data-filter="presentation" checked>
<label for="cat-checkbox-presentation">presentation</label>
</li>
<li>
<input type="checkbox" id="cat-checkbox-whitepaper" name="whitepaper" value="whitepaper" data-filter="whitepaper" checked>
<label for="cat-checkbox-whitepaper">whitepaper</label>
</li>
</ul>
</div>
<div class="btn-group">
<button type="button" class="btn btn-lg button-glacier dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Filter by Keyword<span class="caret"></span><span class="sr-only">Toggle keyword filter dropdown</span></button>
<ul class="dropdown-menu">
<li>
<input type="checkbox" id="key-checkbox-concepts" name="concepts" value="concepts" data-filter="concepts" checked>
<label for="key-checkbox-concepts">concepts</label>
</li>
<li>
<input type="checkbox" id="key-checkbox-messaging" name="messaging" value="messaging" data-filter="messaging" checked>
<label for="key-checkbox-messaging">messaging</label>
</li>
<li>
<input type="checkbox" id="key-checkbox-processing" name="processing" value="processing" data-filter="processing" checked>
<label for="key-checkbox-processing">processing</label>
</li>
<li>
<input type="checkbox" id="key-checkbox-storage" name="storage" value="storage" data-filter="storage" checked>
<label for="key-checkbox-storage">storage</label>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="video-bCH-D2ucOdE" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/bCH-D2ucOdE" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Microservices Part 3: Security Considerations</h5>
<p>In this final video of a three-part series, Christian Hasker of Streamlio interviews JJ about what security considerations enterprises should think about when adopting microservices.
</p>
<h5 class="card-date">2018-01-22</h5>
<h5 class="card-author">JJ Jeyappragash</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-dBBOUQ7c6L8" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/dBBOUQ7c6L8" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Microservices Part 2: How to break up a monolithic application: guidelines and best practices</h5>
<p>In this second video of a three-part series, Christian Hasker of Streamlio interviews JJ, an expert in microservices about how to actually break apart a monolithic application into microservices. JJ provides some guidelines and best
practices.
</p>
<h5 class="card-date">2018-01-21</h5>
<h5 class="card-author">JJ Jeyappragash</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-S0HAF8uXNW8" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/S0HAF8uXNW8" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Microservices Part 1: What are they, what aren't they? An interview with an expert</h5>
<p>Breaking apart monolithic applications into microservices, and adopting microservices-based architectures for new applications is a hot trend within enterprises. In this first video of a three-part series, Christian Hasker of Streamlio
interviews JJ Jeyappragash, an expert in microservices, who explains what microservices are, and more importantly, what they are not.
</p>
<h5 class="card-date">2018-01-20</h5>
<h5 class="card-author">JJ Jeyappragash</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-zjQXUqDdW60" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/zjQXUqDdW60" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Unified queuing and streaming: Part 2</h5>
<p>In this video Sanjeev Kulkarni of Streamlio discusses a retail use case that would need both queuing and streaming. He whiteboards how Apache Pulsar is uniquely able to handle both use cases within one distributed messaging system.
</p>
<h5 class="card-date">2018-01-19</h5>
<h5 class="card-author">Sanjeev Kulkarni</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-9Z92IyQJb7o" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/9Z92IyQJb7o" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Unified queuing and streaming: Part 1</h5>
<p>In this short video, Sanjeev Kulkarni and Christian Hasker of Streamlio discuss the differences between queuing and streaming. Apache Pulsar, the next generation distributed pub/sub system is unique in that it can handle both queuing
and streaming use cases. Sanjeev presents a definition of each, and explains when it would make sense to use one vs the other.
</p>
<h5 class="card-date">2018-01-19</h5>
<h5 class="card-author">Sanjeev Kulkarni</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-Cy9ev9nAZpI" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/Cy9ev9nAZpI" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Migrating an Apache Kafka application to Apache Pulsar with no code changes</h5>
<p>In this 201 level video, Sijie Guo of Streamlio demonstrates how to migrate an existing Kafka application to Apache Pulsar with no code change using the Kafka API wrapper. It can be used to migrate an application to take advantage of
next generation messaging features in Pulsar such as multi-datacenter support, multi-tenancy, strong durability guarantees, and unified messaging and queuing architecture.
</p>
<h5 class="card-date">2018-01-05</h5>
<h5 class="card-author">Sijie Guo</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-h3wylHdvs-g" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/h3wylHdvs-g" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Install Apache Pulsar and get up and running in 4 minutes</h5>
<p>Development 101 series: in this quick 4-minute video, Sanjeev Kulkarni shows you how easy it is to download, install and get Apache Pulsar up and running on your laptop. For more information on Apache Pulsar visit streaml.io or the project
at pulsar.apache.org.
</p>
<h5 class="card-date">2017-12-11</h5>
<h5 class="card-author">Sanjeev Kulkarni</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-iRe26eamu3U" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/iRe26eamu3U" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Introduction to microservices and real-time data processing</h5>
<p>Karthik Ramasamy, co-founder of Streamlio, gave this talk at a meetup at Narvar ([corp.narvar.com](https://corp.narvar.com)). In this presentation, designed for developers that are thinking about moving away from monolithic application
architectures, he shares thoughts about microservices and real-time data processing.
</p>
<h5 class="card-date">2017-11-10</h5>
<h5 class="card-author">Karthik Ramasamy</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-qaXfMHagiK0" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/qaXfMHagiK0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Running Heron on Google Kubernetes Engine</h5>
<p>In this hands-on demo, Chris Kellogg, engineer at Streamlio, shows how easy it is to set up the Heron streaming engine up and get it running on Google Kubernetes Engine, powered by Kubernetes.
</p>
<h5 class="card-date">2017-11-09</h5>
<h5 class="card-author">Chris Kellogg</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-FdluULVeH2Y" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/FdluULVeH2Y" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>How Apache Pulsar uses Apache BookKeeper to store topics</h5>
<p>In this expert developer whiteboard session Ivan Kelly, Apache BookKeeper PMC member and engineer at Streamlio, discusses how Apache Pulsar uses Apache BookKeeper to store replicated logs for hundreds of thousands of topics.
</p>
<h5 class="card-date">2017-11-13</h5>
<h5 class="card-author">Ivan Kelly</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-eFp4Ugck2aQ" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/eFp4Ugck2aQ" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Message guarantees in Apache Pulsar with Apache BookKeeper</h5>
<p>In this expert developer whiteboard session Ivan Kelly, Apache BookKeeper PMC member and engineer at Streamlio, discusses what happens to a message when it enters Apache Pulsar and the guarantees that are provided.
</p>
<h5 class="card-date">11-7-2017</h5>
<h5 class="card-author">Ivan Kelly</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-pEh2jubWnIM" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/pEh2jubWnIM" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Experiences in production with Heron</h5>
<p>In this video, Karthik Ramasamy, co-creator of Heron while working at Twitter and now co-founder of Streamlio, talks about lessons learned running Heron in production at massive scale at Twitter. He also presents feedback regarding common
issues in development. While the presentation is Heron specific, these lessons can be applied to other streaming systems as well.
</p>
<h5 class="card-date">11-2-2017</h5>
<h5 class="card-author">Karthik Ramasamy</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-qe-F4M_dilA" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/qe-F4M_dilA" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>How Apache Pulsar stores cursors using Apache BookKeeper</h5>
<p>In this expert developer whiteboard session, Ivan Kelly, PMC member of Apache BookKeeper and engineer at Streamlio talks about cursor management. This is very hard for other messaging systems to do but is no sweat for Apache Pulsar,
which leverages Apache BookKeeper. Make sure to read Ivan's blog post on the subject at [streaml.io/blog](https://streaml.io/blog).
</p>
<h5 class="card-date">11-2-2017</h5>
<h5 class="card-author">Ivan Kelly</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-hDV5dztBjvQ" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/hDV5dztBjvQ" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Introduction to the Heron Stream Processing Engine's Architecture</h5>
<p>In this video Karthik Ramasamy, co-creator of Twitter Heron, and co-founder of Streamlio, presents an overview of the design goals for the Heron stream processing engine. He also looks at the overall architecture of Heron, which has
been used in production at Twitter for 3 years.
</p>
<h5 class="card-date">11-1-2017</h5>
<h5 class="card-author">Karthik Ramasamy</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-W4EjtNkAyOE" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/W4EjtNkAyOE" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Microsoft: Self-regulating stream processing in Heron, Part 4
</h5>
<p>In this final video in a 4-part series, Microsoft Cloud and Information Services Lab researcher, Avrilia Floratou presents the policy for service-level objectives in Dhalion, a self-healing process for Twitter Heron stream processing.
She also presents the experiments that she and Ashvin Agrawal conducted on Dhalion, and also talks about future work. This video is the fourth in a 4-part series and is based on a presentation that was first delivered at the VLDB (Very
Large Database) conference at the Technical University of Munich, Germany in September 2017.
</p>
<h5 class="card-date">10-18-2017</h5>
<h5 class="card-author">Avrilia Floratou</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-RywRitQbOgY&t" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/RywRitQbOgY&t" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Microsoft: Self-regulating stream processing in Heron, Part 3
</h5>
<p>In this second video in a 4-part series, Microsoft Cloud and Information Services Lab researcher, Ashvin Agrawal presents some of the policies related to dynamic resource provisioning in Dhalion, a self-healing process for Twitter Heron
stream processing. This video is the third in a 4-part series and is based on a presentation that was first delivered at the VLDB (Very Large Database) conference at the Technical University of Munich, Germany in September 2017.
</p>
<h5 class="card-date">10-17-2017</h5>
<h5 class="card-author">Ashvin Agrawal</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-CY3GgtE2UFQ" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/CY3GgtE2UFQ" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Microsoft: Self-regulating stream processing in Heron, Part 2
</h5>
<p>In this 2nd video in a 4-part series, by Microsoft Cloud and Information Services Lab researcher, Avrilia Floratou, she talks about some of the operational challenges with streaming systems, and introduces Dhalion, a self-healing process
for Twitter Heron stream processing. This video is the second in a 4-part series and is based on a presentation that was first delivered at the VLDB (Very Large Database) conference at the Technical University of Munich, Germany in
September 2017.
</p>
<h5 class="card-date">10-17-2017</h5>
<h5 class="card-author">Avrilia Floratou</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-g0ho6SLYuoI" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/g0ho6SLYuoI" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Microsoft: Self-regulating stream processing in Heron, Part 1
</h5>
<p>This presentation in 4 parts, by Microsoft Cloud and Information Services Lab researchers, Avrilia Floratou, and Ashvin Agrawal, was first delivered at the VLDB (Very Large Database) conference at the Technical University of Munich,
Germany in September 2017. Avrilia and Ashvin have worked on a self-healing process for Twitter Heron stream processing engine called Dhalion. This video is the first in a 4-part series and focuses on introducing the Heron streaming
system.
</p>
<h5 class="card-date">2017-10-17</h5>
<h5 class="card-author">Ashvin Agrawal</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-0Oatl_d6CfA" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/0Oatl_d6CfA" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Multi-tenant Messaging with Apache Pulsar (and Monopoly!)</h5>
<p>In this quick video tutorial (using Monopoly) we'll take a look at the multi-tenant capabilities in the Apache Pulsar (incubating) messaging system. Pulsar was designed as an enterprise grade solution to meet the following requirements
at Yahoo: * Ensure that strict SLAs are met * Guarantee isolation between tenants * Enforce resource utilization quotas * Provide per-tenant and system-wide security * Ensure low-cost operations and simpler manageability
</p>
<h5 class="card-date">09-28-2017</h5>
<h5 class="card-author">Christian Hasker</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-clRO56VR_u8" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/clRO56VR_u8" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Introduction to the Apache Pulsar Messaging System</h5>
<p>This short demo shows you how to easily get up and running with Apache Pulsar. Apache Pulsar is an open-source distributed pub-sub messaging system originally created at Yahoo and now part of the Apache Software Foundation. Built from
the ground up as a multi-tenant system, it includes support for isolation, authentication, authorization and quotas. With built-in geo-replication and durable storage backed by Apache BookKeeper it is horizontally scalable and can
be distributed across multiple data centers. Pulsar has run in production at massive scale at Yahoo for more than three years, and today powers the message part of the Streamlio platform.
</p>
<h5 class="card-date">09-06-2017</h5>
<h5 class="card-author">Luc Perkins</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-Ner-anugV-A" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/Ner-anugV-A" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Heron Delivery Semantics, Part 2</h5>
<p>In Part 2 Sanjeev Kulkarni, co-creator of Heron and co-founder of Streamlio, examines the difference between effectively once semantics and exactly once semantics in streaming systems. Exactly once is a very expensive mechanism, and
often effectively once achieves the same goal.
</p>
<h5 class="card-date">09-01-2017</h5>
<h5 class="card-author">Sanjeev Kulkarni</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-nurVizIp5RI" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/nurVizIp5RI" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Heron Delivery Semantics, Part 1</h5>
<p>Sanjeev Kulkarni, co-creator of Heron stream processing engine, and co-founder of Streamlio, outlines the different delivery mechanisms supported in Heron. He explains the difference between at most once semantics, at least once semantics,
effectively once semantics, and exactly once semantics. These terms can all be very confusing. In Part 1 Sanjeev focuses on at most and at least once semantics. In Part 2 he dives more deeply into effectively once, and exactly once.
</p>
<h5 class="card-date">09-01-2017</h5>
<h5 class="card-author">Sanjeev Kulkarni</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-UyEeY_YeZsQ" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/UyEeY_YeZsQ" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>The Streamlio sandbox walkthrough</h5>
<p>This is a short video showing you how to install and get started with the Streamlio sandbox. The Streamlio sandbox integrates best of breed compute, messaging and storage, proven in production at Twitter and Yahoo. By the end of this
tutorial you will be able to run your first real-time data application with Streamlio.</p>
<h5 class="card-date">08-24-2017</h5>
<h5 class="card-author">Luc Perkins</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-ed5zxfvlT-M" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/ed5zxfvlT-M" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Apache Pulsar (incubating) Concepts and Terminology</h5>
<p>Apache Pulsar (incubating) is an enterprise-grade publish-subscribe (aka pub-sub) messaging system that was originally developed at Yahoo. It is one of the core components of the Streamlio end-to-end real-time solution. This whiteboard
session introduces the core concepts and terminology needed to work with Pulsar.</p>
<h5 class="card-date">08-25-2017</h5>
<h5 class="card-author">Christian Hasker</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video-3GyRZzxqAas" class="modal fade container-fluid" role="dialog" aria-labelledby="TITLE">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="fa fa-close"></span></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-offset-0">
<div class="row">
<div class="col-xs-12 content-media">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/3GyRZzxqAas" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xs-12 content-info">
<h5>Heron Stream Processing Architecture and Terminology</h5>
<p>Heron is a real-time stream processing engine, built at and proven in production at massive scale at Twitter. This short video provides an overview of Heron for architects and developers interested in learning about its architecture
and terminology.</p>
<h5 class="card-date">08-30-2017</h5>
<h5 class="card-author">Christian Hasker</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="" class="container-fluid cardList">
<div class="row row-eq-height">
<div class="col-xs-10 col-xs-offset-1">
<div class="row">
<div class="col-sm-4 panel" data-filter-cat="tech notes" data-filter-key="concepts">
<div class="panel-body">
<h5 class="card-icon"><span class="fa fa-3x fa-file-o"></span></h5>
<h5 class="card-category"> tech notes </h5>
<h2 class="card-title"> Key Concepts </h2>
</div>
<div class="panel-info">
<h3 class="card-title"> Key Concepts </h3>
<p class="card-description"> Key concepts in streaming and real-time </p>
<button class="button-default" title="" type="button" data-toggle="modal" onclick="location.href='\/resources\/concepts';">Learn More</button> </div>
</div>
<div class="col-sm-4 panel" data-filter-cat="solution brief" data-filter-key="concepts">
<div class="panel-body">
<h5 class="card-icon"><span class="fa fa-3x fa-file-o"></span></h5>
<h5 class="card-category"> solution brief </h5>
<h2 class="card-title"> Streamlio Real-Time Solution </h2>
</div>
<div class="panel-info">
<h3 class="card-title"> Streamlio Real-Time Solution </h3>
<p class="card-description"> Overview of the Streamlio platform </p>
<button class="button-default" title="" type="button" data-toggle="modal" onclick="location.href='\/pdf\/Streamlio-Solution-Brief.pdf';">Learn More</button> </div>
</div>
<div class="col-sm-4 panel" data-filter-cat="blog" data-filter-key="messaging">
<div class="panel-body">
<h5 class="card-icon"><span class="fa fa-3x fa-file-o"></span></h5>
<h5 class="card-category"> blog </h5>
<h2 class="card-title"> Open-Sourcing Pulsar, Pub-Sub Messaging at Scale </h2>
</div>
<div class="panel-info">
<h3 class="card-title"> Open-Sourcing Pulsar, Pub-Sub Messaging at Scale </h3>
<p class="card-description"> Yahoo's overview blog on Pulsar </p>
<button class="button-default" title="" type="button" data-toggle="modal" onclick="location.href='https:\/\/yahooeng.tumblr.com\/post\/150078336821\/open-sourcing-pulsar-pub-sub-messaging-at-scale';">Learn More</button> </div>
</div>
<div class="col-sm-4 panel" data-filter-cat="presentation" data-filter-key="messaging">
<div class="panel-body">
<h5 class="card-icon"><span class="fa fa-3x fa-desktop"></span></h5>
<h5 class="card-category"> presentation </h5>
<h2 class="card-title"> Pulsar, a highly scalable, low latency pub-sub messaging system </h2>
</div>
<div class="panel-info">
<h3 class="card-title"> Pulsar, a highly scalable, low latency pub-sub messaging system </h3>
<p class="card-description"> </p>
<button class="button-default" title="" type="button" data-toggle="modal" onclick="location.href='https:\/\/www.slideshare.net\/ydn\/october-2016-hug-pulsar-a-highly-scalable-low-latency-pubsub-messaging-system';">Learn More</button> </div>
</div>
<div class="col-sm-4 panel" data-filter-cat="presentation" data-filter-key="messaging">
<div class="panel-body">
<h5 class="card-icon"><span class="fa fa-3x fa-desktop"></span></h5>
<h5 class="card-category"> presentation </h5>
<h2 class="card-title"> Pulsar -- Distributed Pub/Sub Platform </h2>
</div>