-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·994 lines (796 loc) · 49.4 KB
/
index.html
File metadata and controls
executable file
·994 lines (796 loc) · 49.4 KB
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
<!DOCTYPE html>
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Parallec.io: Fast parallel async HTTP/SSH/TCP/UDP/Ping client java library based on Akka. </title>
<meta name="description" content="Parallec: Fast parallel async HTTP/SSH/TCP/UDP/Ping client java library based on Akka, eBay open source, flexible response aggregation, scalable web server monitoring, web service, cloud. Aggregate 100,000s APIs and send it anywhere with 20 lines of code.">
<meta name="author" content="eBay Software Foundation">
<!-- Mobile Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.ico">
<!-- Web Fonts -->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic,500,500italic,700,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:700,400,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=PT+Serif' rel='stylesheet' type='text/css'>
<!-- Bootstrap core CSS -->
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- Font Awesome CSS -->
<link href="fonts/font-awesome/css/font-awesome.css" rel="stylesheet">
<!-- Fontello CSS -->
<link href="fonts/fontello/css/fontello.css" rel="stylesheet">
<!-- Plugins -->
<link href="plugins/magnific-popup/magnific-popup.css" rel="stylesheet">
<link href="plugins/rs-plugin/css/settings.css" rel="stylesheet">
<link href="css/animations.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.carousel.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.transitions.css" rel="stylesheet">
<link href="plugins/hover/hover-min.css" rel="stylesheet">
<!-- core CSS file -->
<link href="css/style.css" rel="stylesheet" >
<!-- Color Scheme (In order to change the color scheme, replace the blue.css with the color scheme that you prefer)-->
<link href="css/skins/blue.css" rel="stylesheet">
<!-- Custom css -->
<link href="css/custom.css" rel="stylesheet">
<!-- Highlight.js jeff -->
<link rel="stylesheet" href="css/mono-blue.min.css">
</head>
<!-- body classes: -->
<!-- "boxed": boxed layout mode e.g. <body class="boxed"> -->
<!-- "pattern-1 ... pattern-9": background patterns for boxed layout mode e.g. <body class="boxed pattern-1"> -->
<!-- "transparent-header": makes the header transparent and pulls the banner to top -->
<!-- "page-loader-1 ... page-loader-6": add a page loader to the page (more info @components-page-loaders.html) -->
<body class="no-trans ">
<!-- scrollToTop -->
<!-- ================ -->
<div class="scrollToTop circle"><i class="icon-up-open-big"></i></div>
<!-- page wrapper start -->
<!-- ================ -->
<div class="page-wrapper">
<!-- header-container start -->
<div class="header-container">
<!-- header start -->
<!-- classes: -->
<!-- "fixed": enables fixed navigation mode (sticky menu) e.g. class="header fixed clearfix" -->
<!-- "dark": dark version of header e.g. class="header dark clearfix" -->
<!-- "full-width": mandatory class for the full-width menu layout -->
<!-- "centered": mandatory class for the centered logo layout -->
<!-- ================ -->
<header class="header fixed clearfix">
<div class="container">
<div class="row">
<div class="col-md-3">
<!-- header-left start -->
<!-- ================ -->
<div class="header-left clearfix">
<!-- logo parallec -->
<div id="logo" class="logo">
<a href="https://github.com/eBay/parallec/"><img id="logo_img" src="images/logo_parallec.png" alt="Parallec.io"></a>
</div>
<!-- name-and-slogan -->
<div class="site-slogan">
Performant Parallel Requests Made Easy
</div>
</div>
<!-- header-left end -->
</div>
<div class="col-md-9">
<!-- header-right start -->
<!-- ================ -->
<div class="header-right clearfix">
<!-- main-navigation start -->
<!-- classes: -->
<!-- "onclick": Makes the dropdowns open on click, this the default bootstrap behavior e.g. class="main-navigation onclick" -->
<!-- "animated": Enables animations on dropdowns opening e.g. class="main-navigation animated" -->
<!-- "with-dropdown-buttons": Mandatory class that adds extra space, to the main navigation, for the search and cart dropdowns -->
<!-- ================ -->
<div class="main-navigation animated with-dropdown-buttons">
<!-- navbar start -->
<!-- ================ -->
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<!-- Toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="navbar-collapse-1">
<!-- main-menu -->
<ul class="nav navbar-nav ">
<!-- mega-menu start -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="http://parallec.github.io/">Home</a>
<ul class="dropdown-menu">
<li><a href="#why">Why Parallec</a></li>
<li><a href="#motivation">Motivation and About</a></li>
<li><a href="#motivation">HTTP & Ping Performance</a></li>
<li><a href="http://parallec.github.io/blog/">Latest News</a></li>
</ul>
</li>
<!-- mega-menu end -->
<li class="mega-menu">
<a href="#code-sample">Code</a>
</li>
<!-- mega-menu start -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="http://parallec.github.io/docs/">Documentation</a>
<ul class="dropdown-menu">
<li><a target="_blank" href="http://parallec.github.io/docs/">Overview</a></li>
<li><a target="_blank" href="http://parallec.github.io/docs/api-overview/">API Overview</a></li>
<li><a target="_blank" href="http://parallec.github.io/docs/submit-task/">Generate & Submit Task</a></li>
<li><a target="_blank" href="http://parallec.github.io/docs/track-status/">Track Status & Examine Responses</a></li>
<li><a target="_blank" href="http://parallec.github.io/docs/configurations/">Configurations</a></li>
<li><a target="_blank" href="http://parallec.github.io/docs/configurations/#timeout">Set Timeout</a></li>
<li><a target="_blank" href="http://parallec.github.io/docs/faq">Troubleshooting / FAQ</a></li>
</ul>
</li>
<!-- mega-menu end -->
<!-- mega-menu start -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="http://parallec.github.io/javadoc/index.html?io/parallec/core/package-summary.html">Javadoc</a>
<ul class="dropdown-menu">
<li><a target="_blank" href="http://parallec.github.io/docs/api-overview/#key-classes-and-notations">Key Classes Overview</a></li>
<li><a target="_blank" href="http://parallec.github.io/javadoc/index.html?io/parallec/core/ParallelClient.html">ParallelClient</a></li>
<li><a target="_blank" href="http://parallec.github.io/javadoc/index.html?io/parallec/core/ParallelTask.html">ParallelTask</a></li>
<li><a target="_blank" href="http://parallec.github.io/javadoc/index.html?io/parallec/core/ParallelTaskBuilder.html">ParallelTaskBuilder</a></li>
<li><a target="_blank" href="http://parallec.github.io/javadoc/index.html?io/parallec/core/ResponseOnSingleTask.html">ResponseOnSingleTask</a></li>
<li><a target="_blank" href="http://parallec.github.io/javadoc/index.html?io/parallec/core/task/ParallelTaskManager.html">ParallelTaskManager</a></li>
</ul>
</li>
<!-- mega-menu end -->
<!-- mega-menu start -->
<li class="mega-menu">
<a href="https://github.com/eBay/parallec-samples">Samples</a>
</li>
<!-- mega-menu end -->
<!-- mega-menu start -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="https://github.com/eBay/parallec">Github <i class="fa fa-github-alt pl-5"></i></a>
<ul class="dropdown-menu">
<li><a target="_blank" href="https://github.com/eBay/parallec/blob/master/README.md#get-started">Get-Started</a></li>
<li><a target="_blank" href="https://github.com/eBay/parallec/blob/master/README.md#features">Features</a></li>
<li><a target="_blank" href="https://github.com/eBay/parallec/blob/master/README.md#user-group">User Group</a></li>
<li><a target="_blank" href="https://github.com/eBay/parallec/blob/master/README.md#use-cases">Use Cases</a></li>
<li><a target="_blank" href="https://github.com/eBay/parallec/blob/master/README.md#whats-new">What's New</a></li>
<li><a target="_blank" href="https://github.com/eBay/parallec/blob/master/README.md#motivation">Motivation</a></li>
<li><a target="_blank" href="https://github.com/eBay/parallec/blob/master/README.md#demos">Demos</a></li>
<li><a target="_blank" href="https://github.com/eBay/parallec/blob/master/README.md#performance">Performance</a></li>
<li><a target="_blank" href="https://github.com/eBay/parallec/blob/master/README.md#compare">Compare</a></li>
<li><a target="_blank" href="https://github.com/eBay/parallec/blob/master/CHANGELOG.md">Change Log</a></li>
<li><a target="_blank" href="https://github.com/eBay/parallec/blob/master/README.md#authors">About</a></li>
<li><a target="_blank" href="https://github.com/eBay/parallec/blob/master/README-brief-cn.md">中文介绍</a></li>
</ul>
</li>
<!-- mega-menu end -->
</div>
</div>
</nav>
<!-- navbar end -->
</div>
<!-- main-navigation end -->
</div>
<!-- header-right end -->
</div>
</div>
</div>
<!-- SumoMe -->
<script src="//load.sumome.com/" data-sumo-site-id="040dc2b237b92a8ef0509df79fb2fe9f268b9438c56fda9a068214927b1bc2fd" async="async"></script>
</header>
<!-- header end -->
</div>
<!-- header-container end -->
<!-- banner start -->
<!-- ================ -->
<div class="banner clearfix">
<!-- slideshow start -->
<!-- ================ -->
<div class="slideshow">
<!-- slider revolution start -->
<!-- ================ -->
<div class="slider-banner-container">
<div class="slider-banner-fullwidth">
<ul class="slides">
<!-- slide 1 start -->
<!-- ================ -->
<li data-transition="random" data-slotamount="7" data-masterspeed="500" data-saveperformance="on" data-title="Parallel Async Communication">
<!-- main image -->
<img src="images/parallec-intro-banner.jpg" alt="slidebg1" data-bgposition="center top" data-bgrepeat="no-repeat" data-bgfit="cover">
<!-- Transparent Background -->
<div class="tp-caption dark-translucent-bg"
data-x="center"
data-y="bottom"
data-speed="600"
data-start="0">
</div>
<!-- LAYER NR. 1 -->
<div class="tp-caption sfb fadeout text-center large_white"
data-x="center"
data-y="50"
data-speed="500"
data-start="1000"
data-easing="easeOutQuad">
<span class="logo-font"><span class="text-default">
<div class="statcounter">
<a href="https://github.com/eBay/parallec"><img id="logo_img" src="images/parallec-logo-wh.png" width="325" alt="Parallec.io"></a>
</div>
</span>
Parallel Async HTTP/SSH/TCP/UDP/Ping Client
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption sfb fadeout text-center large_white tp-resizeme hidden-xs"
data-x="center"
data-y="150"
data-speed="500"
data-start="1300"
data-easing="easeOutQuad"><div class="separator light"></div>
</div>
<!-- LAYER NR. 3 -->
<div class="tp-caption sfb fadeout medium_white text-center hidden-xs"
data-x="center"
data-y="190"
data-speed="500"
data-start="1300"
data-easing="easeOutQuad"
data-endspeed="600">Scalably aggregate API data anyway, <br> and send it anywhere by writing 20 lines of code. <br> Scalable server management, orchestration, and discovery.
</div>
<!-- LAYER NR. 4 -->
<div class="tp-caption sfb fadeout small_white text-center"
data-x="center"
data-y="300"
data-speed="500"
data-start="1600"
data-easing="easeOutQuad"
data-endspeed="600"><a href="http://parallec.github.io/docs/index#get-started" class="btn btn-gray-transparent btn-animated btn-lg">Get Started <i class="fa fa-download"></i></a> <span class="pl-5 pr-5">or</span>
<a href="https://github.com/eBay/parallec/" class="btn btn-default btn-animated btn-lg">View in Github <i class="fa fa-github-alt pl-20"></i></a>
</div>
</li>
<!-- slide 1 end -->
<!-- slide 2 start -->
<!-- ================ -->
<li data-transition="random" data-slotamount="7" data-masterspeed="500" data-saveperformance="on" data-title="Just An Import Away">
<!-- main image -->
<img src="images/parallec-background-img-4-cut.jpg" alt="slidebg2" data-bgposition="center top" data-bgrepeat="no-repeat" data-bgfit="cover">
<!-- Transparent Background -->
<div class="tp-caption light-translucent-bg"
data-x="center"
data-y="bottom"
data-speed="600"
data-start="0">
</div>
<!-- LAYER NR. 1 -->
<div class="tp-caption sfb fadeout text-center large_dark"
data-x="center"
data-y="50"
data-speed="500"
data-start="1000"
data-easing="easeOutQuad"><span class="logo-font"><span class="text-default">
<div class="statcounter">
<a href="index.html"><img id="logo_img" src="images/parallec-logo.png" width="325" alt="Parallec.io"></a>
</div>
Flexible Response Handling & Aggregation
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption sfb fadeout text-center large_dark tp-resizeme hidden-xs"
data-x="center"
data-y="150"
data-speed="500"
data-start="1300"
data-easing="easeOutQuad"><div class="separator dark"></div>
</div>
<!-- LAYER NR. 3 -->
<div class="tp-caption sfb fadeout medium_dark text-center hidden-xs"
data-x="center"
data-y="190"
data-speed="500"
data-start="1300"
data-easing="easeOutQuad"
data-endspeed="600">
<i class="icon-check text-default"></i> 15+ new features on REST Commander<br>
<i class="icon-check text-default"></i> 90%+ test coverage <i class="icon-check text-default"></i> Generic response handlers and context
<br> <i class="icon-check text-default"></i> Auto-progress polling for async APIs <i class="icon-check text-default"></i> Capacity aware scheduler
</div>
<!-- LAYER NR. 4 -->
<div class="tp-caption sfb fadeout small_dark text-center"
data-x="center"
data-y="300"
data-speed="500"
data-start="1600"
data-easing="easeOutQuad"
data-endspeed="600"><a href="https://github.com/eBay/parallec/blob/master/README.md#features" class="btn btn-dark btn-animated btn-lg">Check Features <i class="fa fa-arrow-right"></i></a> <span class="pl-5 pr-5">or</span> <a href="https://github.com/eBay/parallec-samples" class="btn btn-default btn-animated btn-lg">Code Samples <i class="fa fa-flask pl-20"></i></a>
</div>
</li>
<!-- slide 2 end -->
</ul>
<div class="tp-bannertimer"></div>
</div>
</div>
<!-- slider revolution end -->
</div>
<!-- slideshow end -->
</div>
<!-- banner end -->
<div id="page-start"></div>
<section class="light-gray-bg padding-bottom-clear clearfix">
<div class="container">
<h6 class=" text-center ">
<div class="statcounter">
<a href="http://search.maven.org/#artifactdetails|io.parallec|parallec-core|0.10.3|"><img alt="code cov" src="https://maven-badges.herokuapp.com/maven-central/io.parallec/parallec-core/badge.svg?style=flat" ></a>
<a href="https://codecov.io/github/eBay/parallec"><img alt="code cov" src="https://img.shields.io/codecov/c/github/eBay/parallec.svg" ></a>
<a href="https://github.com/eBay/parallec/blob/master/LICENSE"><img alt="code cov" src="http://parallec.github.io/images/apache2.svg" ></a>
<a href="https://github.com/eBay/parallec/blob/master/README-brief-cn.md"><img alt="code cov" src="http://parallec.github.io/images/parallec-cnbrief-blue.svg" ></a>
</div>
</h6>
</div>
</section>
<!-- section start -->
<!-- ================ -->
<section class="light-gray-bg pv-10 padding-bottom-clear clearfix">
<div class="container">
<h3 class="logo-font text-center text-muted"><span class="text-default">
<div class="statcounter">
<a href="https://github.com/eBay/parallec"><img id="logo_img" src="images/parallec-logo.png" width="325" alt="Parallec.io"></a>
</div>
</span>
</h3>
<p class="text-center">Fast parallel async HTTP/SSH/TCP/UDP/Ping client java library on <a href="http://akka.io">Akka</a>. Aggregate 100,000 APIs & send results anywhere in <a href="#code-sample">20 lines</a> of code. View production <a href="#testimonial-ebay">use cases</a>.
<br> <a href="https://github.com/eBay/parallec/wiki/Parallec-pings-8000-servers-in-11.1-seconds">Ping</a> or <a href="https://github.com/eBay/parallec/wiki/Parallec-Aggregates-HTTP-Responses-from-8000-Servers">HTTP calls</a> 8000 servers with responses aggregated in <a href="https://github.com/eBay/parallec/wiki/Parallec-Demos">12 seconds</a>. Parallec means <strong>Paralle</strong>l <strong>C</strong>lient (pronounced as "para-like"). <a href="http://ebay.github.io/">Open Source</a> from <a href="http://www.ebay.com">eBay</a> Cloud.
<br><br> Scalable <i class="icon-check text-default"></i> Web server management
<i class="icon-check text-default"></i> Asset discovery & remote task execution
<i class="icon-check text-default"></i> API aggregation
<i class="icon-check text-default"></i> Orchestration
<i class="icon-check text-default"></i>
Data Extraction / ETL
<i class="icon-check text-default"></i>
Load testing
<br>
<i class="icon-check text-default"></i> <a href="http://parallec.github.io/#testimonial-ebay">Deployed</a> in Production <i class="icon-check text-default"></i> 8,000 Server <a href="https://github.com/eBay/parallec/wiki/Parallec-Aggregates-HTTP-Responses-from-8000-Servers">HTTP</a> | <a href="https://github.com/eBay/parallec/wiki/Parallec-pings-8000-servers-in-11.1-seconds">Ping</a> Demo
<i class="icon-check text-default"></i> <a href="https://twitter.com/jboner/status/663618652063813632">Tweeted</a> by the Creator of <a href="http://akka.io">Akka</a>
<i class="icon-check text-default"></i> Featured in <a href="http://www.cakesolutions.net/teamblogs/this-week-in-scala-16/11/2015">This Week in #Scala</a> | <a href="http://www.oschina.net/p/parallec">OSChina</a> - <a href="http://www.oschina.net/news/69808/2015-annual-ranking-top-100-new-open-source-software">2015 Top 100</a>
<br><br> <i class="fa text-default fa-search-plus"></i> Aggregated error messages - Debug friendly with full visibility. Have trouble debugging in concurrent environment? Not any more! All <a href="http://parallec.github.io/javadoc/io/parallec/core/ResponseOnSingleTask.html#errorMessage">exceptions</a>, timeout, <a href="http://parallec.github.io/javadoc/io/parallec/core/ResponseOnSingleTask.html#stackTrace">stack traces</a>, request sent and response received time are automatically <a href="http://parallec.github.io/docs/track-status/#track-status-examine-responses">captured and aggregated</a> in the <a href="http://parallec.github.io/javadoc/index.html?io/parallec/core/ResponseOnSingleTask.html">response <a href="http://parallec.github.io/javadoc/io/parallec/core/ParallelTask.html#parallelTaskResult">map</a> of the <a href="http://parallec.github.io/javadoc/index.html?io/parallec/core/ParallelTask.html">ParallelTask</a>, available for polling <a href="https://github.com/eBay/parallec-samples/blob/master/sample-apps/src/main/java/io/parallec/sample/app/http/HttpBasicAsyncRunProgressPollingApp.java">asynchronously</a>.
</p>
<br>
<div class="row">
<div class="col-md-4 ">
<div class="pv-20 ph-20 feature-box-2 boxed shadow object-non-visible" data-animation-effect="fadeInDownSmall" data-effect-delay="100">
<span class="icon without-bg"><i class="fa text-default fa-diamond"></i></span>
<div class="body">
<h4 class="title">Response Handler & Context</h4>
<p>A convenient response context passes any object you need when handling response. Process data anyway and send it anywhere.</p>
<a href="http://parallec.github.io/docs/submit-task/#apis-on-response-handling">Read More<i class="pl-5 fa fa-angle-double-right"></i></a>
</div>
</div>
</div>
<div class="col-md-4 ">
<div class="pv-20 ph-20 feature-box-2 boxed shadow object-non-visible" data-animation-effect="fadeInDownSmall" data-effect-delay="200">
<span class="icon without-bg"><i class="fa text-default icon-users"></i></span>
<div class="body">
<h4 class="title">Exceedingly User Friendly</h4>
<p>Intuitive builder pattern APIs make parallel requests exceedlingly easy. <a href="http://parallec.github.io/docs/submit-task/#setTargetHosts" >Input target hosts</a> from list, string, text, json path, cms query from local or urls.</p>
<a href="http://parallec.github.io/docs/submit-task/">Read More<i class="pl-5 fa fa-angle-double-right"></i></a>
</div>
</div>
</div>
<div class="col-md-4 ">
<div class="pv-20 ph-20 feature-box-2 boxed shadow object-non-visible" data-animation-effect="fadeInDownSmall" data-effect-delay="300">
<span class="icon without-bg"><i class="text-default icon-loop-alt-outline"></i></span>
<div class="body">
<h4 class="title">Auto Progress Polling</h4>
<p><a href="http://parallec.github.io/docs/submit-task/#async-apis-and-auto-progress-polling">Auto progress polling</a> to handle <strong>async APIs</strong> such as "download packages" or "create compute", enabling task level concurrency control and orchestration.</p>
<a href="http://parallec.github.io/docs/submit-task/#async-apis-and-auto-progress-polling">Read More<i class="pl-5 fa fa-angle-double-right"></i></a>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-4 ">
<div class="pv-20 ph-20 feature-box-2 boxed shadow object-non-visible" data-animation-effect="fadeInDownSmall" data-effect-delay="100">
<span class="icon without-bg"><i class="fa text-default fa-bolt"></i></span>
<div class="body">
<h4 class="title">Scalable & Fast</h4>
<p>Infinite scalablility with flexible task level <a href="http://www.ebaytechblog.com/2014/03/11/rest-commander-scalable-web-server-management-and-monitoring/#akka">concurrency control</a> without creating 1,000 threads thread pools. <a href="https://github.com/eBay/parallec/wiki/Parallec-pings-8000-servers-in-11.1-seconds">Ping</a> / <a href="https://github.com/eBay/parallec/wiki/Parallec-Aggregates-HTTP-Responses-from-8000-Servers">HTTP</a> 8,000 servers with response aggregation in 12 seconds</a>.</p>
<a href="https://github.com/eBay/parallec/blob/master/README.md#performance">Read More<i class="pl-5 fa fa-angle-double-right"></i></a>
</div>
</div>
</div>
<div class="col-md-4 ">
<div class="pv-20 ph-20 feature-box-2 boxed shadow object-non-visible" data-animation-effect="fadeInDownSmall" data-effect-delay="300">
<span class="icon without-bg"><i class="fa text-default fa-support"></i></span>
<div class="body">
<h4 class="title">90%+ Code Coverage</h4>
<p> High test coverage validates every feature we built. Use and contribute with confidence. Proven reliability on hitting 100,000+ Servers in a single task in production. </p>
<a href="https://codecov.io/github/eBay/parallec">Check Coverage<i class="pl-5 fa fa-angle-double-right"></i></a>
</div>
</div>
</div>
<div class="col-md-4 ">
<div class="pv-20 ph-20 feature-box-2 boxed shadow object-non-visible" data-animation-effect="fadeInDownSmall" data-effect-delay="200">
<span class="icon without-bg"><i class="fa text-default fa-cubes"></i></span>
<div class="body">
<h4 class="title">Feature Packed</h4>
<p>Task and host level progress tracking and cancelation, <a href="http://parallec.github.io/docs/submit-task/#capacity-aware-scheduler">capacity-aware task scheduler</a>, <a href="http://parallec.github.io/docs/submit-task/#apis-on-response-handling">flexible handler locations</a>, <a href="http://parallec.github.io/docs/track-status/#track-status-examine-responses">status aggregation</a>, task logging, and <a href="https://github.com/eBay/parallec/blob/master/README.md#features">more</a>.</p>
<a href="https://github.com/eBay/parallec/blob/master/README.md#features">Read More<i class="pl-5 fa fa-angle-double-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section end -->
<!-- section -->
<!-- ================ -->
<section class="pv-10" ><a class="anchor" id="testimonial-ebay"></a>
<div class="owl-carousel content-slider-with-controls-autoplay">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="testimonial text-center">
<h4>Application Deployment <i class="icon-check text-default"></i> Improved Resource Utilization <i class="icon-check text-default"></i> Easier Batch Job Management</h4>
<div class="separator"></div>
<div class="testimonial-body">
<blockquote>
<p>We have integrated Parallec.io in eBay's <strong>application deployment system</strong>. Parallec orchestrates <strong>10+</strong> API tasks, with each task targeting <strong>10s to 1,000s</strong> servers over <strong>1,000+</strong> application pools <strong>in production</strong>. It provides us with improved resource utilization and efficiency, easier batch job management with <strong>cleaner code</strong>, compared with previous implementation.</p>
</blockquote>
<div class="testimonial-info-1">- Xiaotang (Sheldon) Shao, Principle Software Engineer</div>
<div class="testimonial-info-2">Deployment Platform / PaaS, Cloud Engineering at eBay Inc.</div>
</div>
</div>
</div>
</div>
</div>
<div class="container" id="testimonial-ebay2">
<div class="row">
<div class="col-md-12">
<div class="testimonial text-center">
<h4>Data Extraction / ETL <i class="icon-check text-default"></i> Improved Performance <i class="icon-check text-default"></i> Reduced Required Resources</h4>
<div class="separator"></div>
<div class="testimonial-body">
<blockquote>
<p>Some of our ongoing projects, in eBay’s <strong>web-intelligence team</strong>, require executing <strong>10k-100k API</strong> parallel calls to a <strong>single 3rd party server</strong>, and I can definitely say that this was our <strong>main bottleneck</strong>. Therefore, we were looking for an efficient way to execute those calls in non-blocking I/O, and implementing <strong>Parallec improved our performance and reduced the required resources dramatically</strong>.</p>
</blockquote>
<div class="testimonial-info-1">- Tomer Balan, Data Extraction Engineer</div>
<div class="testimonial-info-2">Web-Intelligence Team, Structured Data Division at eBay Inc.</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<section class="section default-bg clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="call-to-action text-center">
<div class="row">
<div class="col-sm-8">
<h1 class="title">Try Parallec Now</h1>
<p>Monitoring, config push, command execution, discovery by polling from massive HTTP/TCP agents, or agent-less parallel SSH. Perfect for embedding in the master to manage 100,000s of end points, in 20 lines of code. <br><a href="https://medium.com/@jeffpeiyt/a-reusable-part-in-many-cloud-projects-2151f42572e9#.ivneozlju">Learn more</a>: why such a polling and aggregation engine is widely used in today’s cloud software. </p>
</div>
<div class="col-sm-4">
<br>
<p class="mt-10"><a href="https://github.com/eBay/parallec/blob/master/README.md#get-started" class="btn btn-animated btn-lg btn-gray-transparent ">6 Lines Example<i class="fa fa-github-alt pl-20"></i></a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section end -->
<!-- section -->
<!-- ================ -->
<section class="pv-30" id="code-sample">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 class="text-center">Send Aggregated API Data <strong>Anywhere</strong></h2>
<div class="separator"></div>
<p class="large text-center">A special super convenient <strong>response context</strong> let you pass in/out any object when handling the response. Now you can send aggregated data anywhere, to Kafka, Elastic Search, Redis, MongoDb, and etc, in <strong>20 lines of code</strong>. <a href="https://github.com/eBay/parallec/blob/master/README.md#features">More Features...</a> </p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-5"><a id="code-example"></a>
<p class=""><i class="icon-check text-default"></i> <strong><a href="https://github.com/eBay/parallec-samples/blob/master/sample-apps/src/main/java/io/parallec/sample/app/http/HttpBasicMinimumApp.java" >6 Lines Example</a> to Get Started</strong>.</p>
<pre><code class="java">import io.parallec.core.*;
import java.util.Map;
ParallelClient pc = new ParallelClient();
pc.prepareHttpGet("").setTargetHostsFromString("www.google.com www.ebay.com www.yahoo.com")
.execute(new ParallecResponseHandler() {
public void onCompleted(ResponseOnSingleTask res,
Map<String, Object> responseContext) {
System.out.println( res.toString() ); }
});</code></pre>
<p class=""><i class="icon-check text-default"></i> <strong>Different Requests to the Same Target <a href="https://github.com/eBay/parallec-samples/blob/master/sample-apps/src/main/java/io/parallec/sample/app/http/HttpDiffRequestsSameServerApp.java">Example</a></strong>. <a href="http://parallec.github.io/docs/submit-task/#apis-on-variable-replacement-for-heterogeneous-requests">Read more..</a></p>
<pre><code class="java">pc.prepareHttpGet("/userdata/sample_weather_$ZIP.txt")
.setReplaceVarMapToSingleTargetSingleVar("ZIP",
Arrays.asList("95037","48824"), "parallec.github.io")
.setConcurrency(10)
.execute(new ParallecResponseHandler() {...}...</code></pre>
</div>
<div class="col-md-7">
<p class=""><i class="icon-check text-default"></i> <strong><a href="https://github.com/eBay/parallec-samples/blob/master/sample-apps/src/main/java/io/parallec/sample/app/http/Http100WebAggregateToElasticSearchApp.java" >20 Lines Example</a> using Response Context</strong>: Aggregate 100 website status to elastic search.</p>
<pre><code class="java">ParallelClient pc = new ParallelClient();
org.elasticsearch.node.Node node = nodeBuilder().node(); //elastic client initialize
HashMap<String, Object> responseContext = new HashMap<String, Object>();
responseContext.put("Client", node.client());
pc.prepareHttpGet("")
.setConcurrency(1000).setResponseContext(responseContext)
.setTargetHostsFromLineByLineText("http://parallec.github.io/userdata/sample_target_hosts_top100_old.txt", HostsSourceType.URL)
.execute( new ParallecResponseHandler() {
public void onCompleted(ResponseOnSingleTask res,
Map<String, Object> responseContext) {
Map<String, Object> metricMap = new HashMap<String, Object>();
metricMap.put("StatusCode", res.getStatusCode().replaceAll(" ", "_"));
metricMap.put("LastUpdated",PcDateUtils.getNowDateTimeStrStandard());
metricMap.put("NodeGroupType", "Web100");
Client client = (Client) responseContext.get("Client");
client.prepareIndex("local", "parallec", res.getHost()).setSource(metricMap).execute();
}
});
node.close(); pc.releaseExternalResources();
</code></pre>
</div>
</div>
<div class="row">
<div class="col-md-5">
<p ><i class="icon-check text-default"></i> <a href="http://search.maven.org/#artifactdetails|io.parallec|parallec-core|0.10.3|" ><strong>Maven Import</strong></a></p>
<pre><code class="xml"><dependency>
<groupId>io.parallec</groupId>
<artifactId>parallec-core</artifactId>
<version>0.10.3</version>
</dependency></code></pre>
</div>
<div class="col-md-7">
<p><i class="icon-check text-default"></i> <a href="http://search.maven.org/#artifactdetails|io.parallec|parallec-core|0.10.3|" ><strong>Gradle Import</strong></a></p>
<pre><code class="xml">compile 'io.parallec:parallec-core:0.10.3'</code></pre>
<p><i class="icon-check text-default"></i> <a href="https://github.com/ebay/parallec-samples"><strong>More Examples and Complete Code</strong></a> on sending to Kafka, async running, parallel SSH and TCP.</p>
<p><i class="icon-check text-default"></i> <a href="http://parallec.github.io/docs/submit-task/#set-target-hosts"><strong>Set Target Hosts</strong></a> from list, string, line by line text, json path, from local or remote URLs.</p>
</div>
</div>
</div>
</section>
<!-- section end -->
<!-- footer top start -->
<!-- ================ -->
<div class="dark-bg default-hovered footer-top animated-text">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="call-to-action text-center">
<div class="row">
<div class="col-sm-7">
<h2>Scalable and Fast API Aggregation</h2>
<h2>Just 20 Lines of Code Away</h2>
</div>
<div class="col-sm-5">
<p class="mt-10"><a href="https://www.youtube.com/watch?v=QcavegPMDms" class="btn btn-animated btn-lg btn-gray-transparent ">Watch Demo<i class="fa fa-youtube-play pl-20"></i></a> <a href="https://groups.google.com/forum/#!forum/parallec" class="btn btn-animated btn-lg btn-gray-transparent ">Ask a Question<i class="fa fa-question-circle"></i></a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- footer top end -->
<!-- section -->
<!-- ================ -->
<section class="pv-30" id="why">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 class="text-center">Why <strong>Parallec</strong> ?</h2>
<div class="separator"></div>
<p class="large text-center">Compared with java thread pool based solutions, parallec enables adjustable concurrency control on each task without constraints on thread size (1,000 thread pool does not look nice) . Compared with single-threaded Node.js solutions, Parallec enables parallel computation-intensive response handling with multiple-cores. <a href="https://github.com/eBay/parallec/blob/master/README.md#compare">Read More<i class="pl-5 fa fa-angle-double-right"></i></a></p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-8">
<img alt="Workflow" src="http://parallec.github.io/images/parallec-flow.svg">
</div>
<div class="col-md-4">
<h2 class="text-center"> <strong>Flow</strong> Overview</h2>
<div class="separator"></div>
<p>Our goal is to execute a task of firing a list of uniform or non-uniform HTTP/SSH/TCP/UDP/PING requests to a list of target hosts, then call the user defined handler to handle each of the responses. Check Parallec's <a href="http://www.ebaytechblog.com/2014/03/11/rest-commander-scalable-web-server-management-and-monitoring/#akka">Actor based concurrency and throttling model</a>. </p>
<p><a href="http://parallec.github.io/docs/api-overview/" class="btn btn-default-transparent btn-animated">Read API Overview <i class="fa fa-arrow-right pl-10"></i></a></p>
</div>
</div>
</div>
</section>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<section class="section default-bg clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="call-to-action text-center">
<div class="row">
<div class="col-sm-8">
<h1 class="title">Try with Sample Code</h1>
<p>Most files are independent with a main function and can be run directly. The sample spark server is a single file executable web server, which demonstrates parallel SSH/HTTP/Ping features.</p>
</div>
<div class="col-sm-4">
<br>
<p class="mt-10"><a href="https://github.com/eBay/parallec-samples" class="btn btn-animated btn-lg btn-gray-transparent ">Try with Sample Code<i class="fa fa-flask pl-20"></i></a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section end -->
<!-- footer start (Add "dark" class to #footer in order to enable dark footer) -->
<!-- ================ -->
<footer id="footer" class="clearfix ">
<!-- .footer start -->
<!-- ================ -->
<div class="footer">
<div class="container" id="motivation">
<div class="footer-inner">
<div class="row">
<div class="col-md-3">
<div class="footer-content">
<h2 class="title">Motivation</h2>
<div class="separator-2"></div>
<p> With the feedbacks, lessons, and improvements from the past year of internal usage and open source of <a href="http://www.restcommander.com"><strong>REST Commander</strong></a>, we now made the core of REST Commander as an easy to use standalone library, with the focus on <strong>flexible response aggregation</strong> and <strong>ease to send the results anywhere</strong>. We added <a href="https://github.com/eBay/parallec/blob/master/README.md#compare"><strong>15+ new features</strong></a>, rewritten 70%+ of the code with better structure, with <a href="https://codecov.io/github/eBay/parallec"><strong>90%+ test coverage</strong></a>. <a href="https://github.com/eBay/parallec/blob/master/README.md#motivation">Learn more...</a>
</p>
<div class="separator-2"></div>
<nav>
<ul class="nav nav-pills nav-stacked">
<li><a target="_blank" href="http://www.ebaytechblog.com/2014/03/11/rest-commander-scalable-web-server-management-and-monitoring">eBay Tech Blog</a></li>
<li><a target="_blank" href="http://www.restcommander.com/">REST Commander</a></li>
</ul>
</nav>
</div>
</div>
<div class="col-md-3">
<div class="footer-content">
<h2 class="title">HTTP Call 8000 Servers in <a href="https://github.com/eBay/parallec/wiki/Parallec-Aggregates-HTTP-Responses-from-8000-Servers">12 Seconds</a></h2>
<div class="separator-2"></div>
<canvas class="graph bar" id="http-bars" ></canvas>
<br>
<br>
<p>Parallec performs uniform HTTPS GET calls to 8000 servers with response aggregated to memory in 12 seconds, to elastic search in 15.6 seconds. Parallec default max concurrency of 1000-2500 is <strong>5-12x </strong> than that of <a href="https://github.com/typhoeus/typhoeus">Typhoeus</a>, a parallel HTTP client. <a href="https://github.com/eBay/parallec/wiki/Parallec-Aggregates-HTTP-Responses-from-8000-Servers"><strong>Watch HTTP Demo</strong><i class="fa fa-long-arrow-right pl-5"></i></a> </p>
</div>
</div>
<div class="col-md-3">
<div class="footer-content">
<h2 class="title">Ping 8000 Servers in <a href="https://github.com/eBay/parallec/wiki/Parallec-pings-8000-servers-in-11.1-seconds">12 Seconds</a></h2>
<div class="separator-2"></div>
<canvas class="graph bar" id="fping-bars" ></canvas>
<br>
<br>
<p>Parallec pings 8000 servers in 11.1 seconds. Parallec is <strong>2x speed</strong> of best-effort tuned <a href="http://fping.org">FPing</a> and gets the same accurate result (53 out of 1500 unreachable) on 1500 servers. (2.2 vs 4.5 seconds). 20 lines to make a jar file to run anywhere. <a href="https://github.com/eBay/parallec/wiki/Parallec-pings-8000-servers-in-11.1-seconds"><strong>Watch Ping Demo</strong><i class="fa fa-long-arrow-right pl-5"></i></a> </p>
</div>
</div>
<div class="col-md-3">
<div class="footer-content">
<h2 class="title">About Parallec</h2>
<div class="separator-2"></div>
<p>Parallec is served to you by <a href="https://www.linkedin.com/in/peiyuant">Yuanteng (Jeff) Pei</a> and <a href="https://www.linkedin.com/pub/teng-song/49/763/713">Teng Song</a>, at <a href="https://helpusbuild.ebayc3.com/">Cloud Infrastructure and Platform Engineerning (CIPS)</a> at eBay.
</p>
<p>We thank our dev manager <a href="https://www.linkedin.com/pub/andy-santosa/0/230/305">Andy Santosa</a>, project manager <a href="https://www.linkedin.com/pub/marco-rotelli/2/25/54">Marco Rotelli</a>, <a href="https://helpusbuild.ebayc3.com/">Cloud Infrastructure & Platform Services (CIPS)</a> and legal for the big support on this project and the open source effort.
</p>
<div class="separator-2"></div>
<nav>
<ul class="nav nav-pills nav-stacked">
<li><a target="_blank" href="https://groups.google.com/forum/#!forum/parallec">User Group</a></li>
<li><a target="_blank" href="http://parallec.github.io/blog/">Latest News on Parallec</a></li>
<li><a target="_blank" href="http://helpusbuild.ebayc3.com/">Join eBay Cloud</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- .footer end -->
<!-- .subfooter start -->
<!-- ================ -->
<div class="subfooter">
<div class="container">
<div class="subfooter-inner">
<div class="row">
<div class="col-md-12">
<p class="text-center">Code licensed under Apache License v2.0, documentation and video under CC BY 3.0. <br> © 2015-2016 Parallec.io by <a target="_blank" href="http://ebay.github.io">eBay Software Foundation</a>. All Rights Reserved.
<!-- Start of StatCounter Code for Default Guide -->
<script type="text/javascript">
var sc_project=10678959;
var sc_invisible=0;
var sc_security="957d7138";
var scJsHost = (("https:" == document.location.protocol) ?
"https://secure." : "http://www.");
document.write("<sc"+"ript type='text/javascript' src='" +
scJsHost+
"statcounter.com/counter/counter.js'></"+"script>");
</script>
<noscript><div class="statcounter"><a title="shopify
analytics" href="http://statcounter.com/shopify/"
target="_blank"><img class="statcounter"
src="http://c.statcounter.com/10678959/0/957d7138/0/"
alt="shopify analytics"></a></div></noscript>
<!-- End of StatCounter Code for Default Guide -->
</p>
</div>
</div>
</div>
</div>
</div>
<!-- .subfooter end -->
</footer>
<!-- footer end -->
</div>
<!-- page-wrapper end -->
<!-- JavaScript files placed at the end of the document so the pages load faster -->
<!-- ================================================== -->
<!-- Jquery and Bootstap core js files -->
<script type="text/javascript" src="plugins/jquery.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<!-- Modernizr javascript -->
<script type="text/javascript" src="plugins/modernizr.js"></script>
<!-- jQuery Revolution Slider -->
<script type="text/javascript" src="plugins/rs-plugin/js/jquery.themepunch.tools.min.js"></script>
<script type="text/javascript" src="plugins/rs-plugin/js/jquery.themepunch.revolution.min.js"></script>
<!-- Isotope javascript -->
<script type="text/javascript" src="plugins/isotope/isotope.pkgd.min.js"></script>
<!-- Magnific Popup javascript -->
<script type="text/javascript" src="plugins/magnific-popup/jquery.magnific-popup.min.js"></script>
<!-- Appear javascript -->
<script type="text/javascript" src="plugins/waypoints/jquery.waypoints.min.js"></script>
<!-- Count To javascript -->
<script type="text/javascript" src="plugins/jquery.countTo.js"></script>
<!-- Parallax javascript -->
<script src="plugins/jquery.parallax-1.1.3.js"></script>
<!-- Contact form -->
<script src="plugins/jquery.validate.js"></script>
<!-- Owl carousel javascript -->
<script type="text/javascript" src="plugins/owl-carousel/owl.carousel.min.js"></script>
<!-- SmoothScroll javascript -->
<script type="text/javascript" src="plugins/jquery.browser.js"></script>
<script type="text/javascript" src="plugins/SmoothScroll.js"></script>
<!-- Initialization of Plugins -->
<script type="text/javascript" src="js/template.js"></script>
<!-- Custom Scripts -->
<script type="text/javascript" src="js/custom.js"></script>
<!-- Charts -->
<script src="plugins/charts/Chart.js"></script>
<!-- Share must be after jquery-->
<div id="github_stars">
<iframe src="http://ghbtns.com/github-btn.html?user=eBay&repo=parallec&type=watch&count=true&size=small" allowtransparency="true" frameborder="0" scrolling="0" width="200" height="20"></iframe>
</div>
<!-- Charts FPing data-->
<script src="js/custom.js"></script>
<!-- Highlight.js jeff -->
<script src="js/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<!-- google analytics jeff -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','http://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-23260647-5', 'auto');
ga('send', 'pageview');
</script>
<a href="https://github.com/eBay/parallec" class="github-corner"><svg width="80px" height="80px" viewBox="0 0 250 250" style="fill:#3697d9; color:#fff; position: absolute; top: 0; border: 0; right: 0;"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style>
</body>
</html>