summaryrefslogtreecommitdiffstats
path: root/archives/extend/2013-January.txt
blob: 1f4beb613a3399131acf0597c5482ad8f92d37ec (plain) (blame)
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
From max.lapshin at gmail.com  Thu Jan  3 10:30:30 2013
From: max.lapshin at gmail.com (Max Lapshin)
Date: Thu, 3 Jan 2013 12:30:30 +0300
Subject: [99s-extend] [erlang-questions] [ANN] Ranch 0.6.0 Xmas Edition
	Released
In-Reply-To: <[email protected]>
References: <[email protected]>
Message-ID: <CAMxVRxA9uqXbfcP9=_CmTDk-ZBycmZijeOa_TyJXQvSPzvwfbg@mail.gmail.com>

Loic, it would be great to hear a bit, what problems have you met with.

What issues with stability can be in acceptor pool?

Also I have question about updating protocol options: have you done
something with the problem that after updating protocol options existing
workers are running with old config?

On Tuesday, December 25, 2012, Lo?c Hoguin wrote:

> Ho ho ho!
>
> I have just tagged version 0.6.0 of the Ranch project!
>
> Ranch is a socket acceptor pool for TCP protocols.
>
>   https://github.com/extend/**ranch <https://github.com/extend/ranch>
>
> Ranch is used by the next version of Cowboy, 0.8.0, set to be released
> early February, but also in Basho's Riak multi-data center replication
> amongst others.
>
> All tickets have been resolved. A significant contribution was made by
> Andrew Majorov to improve the fault tolerance capabilities of the
> application, making sure it always restarts properly when things go wrong.
> This has been made possible thanks to the amazing project from Daniel Luna,
> chaos_monkey (https://github.com/dluna/**chaos_monkey<https://github.com/dluna/chaos_monkey>
> ).
>
> The guide has also been improved and completed.
>
>   http://ninenines.eu/docs/en/**ranch/HEAD/guide/introduction<http://ninenines.eu/docs/en/ranch/HEAD/guide/introduction>
>
> If the guide isn't enough, drop by our new IRC channel dedicated to
> Cowboy, Ranch and all our other projects! #ninenines on Freenode.
>
> Following is the list of change since last time:
>
>  *  Improve fault tolerance thanks to chaos_monkey testing
>  *  Add 'nodelay' option to transports
>  *  Add 'verify' option to ranch_ssl transport
>  *  Add 'socket' option to pass an already open socket to the listener
>  *  Add Transport:sendfile/2 function (uses a fallback if unavailable)
>  *  Allow IP tuples in Transport:connect/3
>  *  Add ranch:set_max_connections/2 to update the value live
>  *  Add ranch:get_max_connections/1 to retrieve it
>
> We are always looking for feedback, especially now that there is no ticket
> left open on this project. If you are using Ranch and have questions or
> needs that it doesn't cover, please send them to us.
>
> Commercial support will be available starting from January, ping me if you
> are interested. Details will be announced at a later time on the
> ninenines.eu mailing list.
>
> I want to thank all contributors for helping this project by opening
> tickets, sending patches and offering feedback. I am as always very
> grateful for any and all contributions. I wouldn't have made it this far
> without the tremendous help I receive everyday.
>
> Thanks to all and have a nice holiday!
>
> --
> Lo?c Hoguin
> Erlang Santa
> Nine Nines
> http://ninenines.eu
> ______________________________**_________________
> erlang-questions mailing list
> erlang-questions at erlang.org
> http://erlang.org/mailman/**listinfo/erlang-questions<http://erlang.org/mailman/listinfo/erlang-questions>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130103/bae06e70/attachment.html>

From essen at ninenines.eu  Thu Jan  3 13:46:56 2013
From: essen at ninenines.eu (=?UTF-8?B?TG/Dr2MgSG9ndWlu?=)
Date: Thu, 03 Jan 2013 13:46:56 +0100
Subject: [99s-extend] [erlang-questions] [ANN] Ranch 0.6.0 Xmas Edition
	Released
In-Reply-To: <CAMxVRxA9uqXbfcP9=_CmTDk-ZBycmZijeOa_TyJXQvSPzvwfbg@mail.gmail.com>
References: <[email protected]>
 <CAMxVRxA9uqXbfcP9=_CmTDk-ZBycmZijeOa_TyJXQvSPzvwfbg@mail.gmail.com>
Message-ID: <[email protected]>

Haven't had any stability issue. What we did here is ensure that when 
any process gets killed for any reason, especially reasons we can't 
foresee, Ranch continues to work as expected.

Ranch not updating protocol options for existing connections isn't a 
problem, it won't be "fixed". Ranch can't guess how connection processes 
are implemented. It's up to you to allow this if you need it. The 
upgrade updates the options for all acceptors and all future 
connections, that's it.

On 01/03/2013 10:30 AM, Max Lapshin wrote:
> Loic, it would be great to hear a bit, what problems have you met with.
>
> What issues with stability can be in acceptor pool?
>
> Also I have question about updating protocol options: have you done
> something with the problem that after updating protocol options existing
> workers are running with old config?
>
> On Tuesday, December 25, 2012, Lo?c Hoguin wrote:
>
>     Ho ho ho!
>
>     I have just tagged version 0.6.0 of the Ranch project!
>
>     Ranch is a socket acceptor pool for TCP protocols.
>
>     https://github.com/extend/__ranch <https://github.com/extend/ranch>
>
>     Ranch is used by the next version of Cowboy, 0.8.0, set to be
>     released early February, but also in Basho's Riak multi-data center
>     replication amongst others.
>
>     All tickets have been resolved. A significant contribution was made
>     by Andrew Majorov to improve the fault tolerance capabilities of the
>     application, making sure it always restarts properly when things go
>     wrong. This has been made possible thanks to the amazing project
>     from Daniel Luna, chaos_monkey
>     (https://github.com/dluna/__chaos_monkey
>     <https://github.com/dluna/chaos_monkey>).
>
>     The guide has also been improved and completed.
>
>     http://ninenines.eu/docs/en/__ranch/HEAD/guide/introduction
>     <http://ninenines.eu/docs/en/ranch/HEAD/guide/introduction>
>
>     If the guide isn't enough, drop by our new IRC channel dedicated to
>     Cowboy, Ranch and all our other projects! #ninenines on Freenode.
>
>     Following is the list of change since last time:
>
>       *  Improve fault tolerance thanks to chaos_monkey testing
>       *  Add 'nodelay' option to transports
>       *  Add 'verify' option to ranch_ssl transport
>       *  Add 'socket' option to pass an already open socket to the listener
>       *  Add Transport:sendfile/2 function (uses a fallback if unavailable)
>       *  Allow IP tuples in Transport:connect/3
>       *  Add ranch:set_max_connections/2 to update the value live
>       *  Add ranch:get_max_connections/1 to retrieve it
>
>     We are always looking for feedback, especially now that there is no
>     ticket left open on this project. If you are using Ranch and have
>     questions or needs that it doesn't cover, please send them to us.
>
>     Commercial support will be available starting from January, ping me
>     if you are interested. Details will be announced at a later time on
>     the ninenines.eu <http://ninenines.eu> mailing list.
>
>     I want to thank all contributors for helping this project by opening
>     tickets, sending patches and offering feedback. I am as always very
>     grateful for any and all contributions. I wouldn't have made it this
>     far without the tremendous help I receive everyday.
>
>     Thanks to all and have a nice holiday!
>
>     --
>     Lo?c Hoguin
>     Erlang Santa
>     Nine Nines
>     http://ninenines.eu
>     _________________________________________________
>     erlang-questions mailing list
>     erlang-questions at erlang.org
>     http://erlang.org/mailman/__listinfo/erlang-questions
>     <http://erlang.org/mailman/listinfo/erlang-questions>
>


-- 
Lo?c Hoguin
Erlang Cowboy
Nine Nines
http://ninenines.eu


From max.lapshin at gmail.com  Thu Jan  3 14:32:16 2013
From: max.lapshin at gmail.com (Max Lapshin)
Date: Thu, 3 Jan 2013 16:32:16 +0300
Subject: [99s-extend] [erlang-questions] [ANN] Ranch 0.6.0 Xmas Edition
	Released
In-Reply-To: <[email protected]>
References: <[email protected]>
 <CAMxVRxA9uqXbfcP9=_CmTDk-ZBycmZijeOa_TyJXQvSPzvwfbg@mail.gmail.com>
 <[email protected]>
Message-ID: <CAMxVRxDm1E4YXfvYp2CVoXchTpGRZK85XnMat_YhRK9CJGrtqA@mail.gmail.com>

I mean situation that after cowboy:update_options existing acceptors are
still working with old routes.
Currently it is useless API, so I have to stop cowboy and start it back.


On Thu, Jan 3, 2013 at 4:46 PM, Lo?c Hoguin <essen at ninenines.eu> wrote:

> Haven't had any stability issue. What we did here is ensure that when any
> process gets killed for any reason, especially reasons we can't foresee,
> Ranch continues to work as expected.
>
> Ranch not updating protocol options for existing connections isn't a
> problem, it won't be "fixed". Ranch can't guess how connection processes
> are implemented. It's up to you to allow this if you need it. The upgrade
> updates the options for all acceptors and all future connections, that's it.
>
>
> On 01/03/2013 10:30 AM, Max Lapshin wrote:
>
>> Loic, it would be great to hear a bit, what problems have you met with.
>>
>> What issues with stability can be in acceptor pool?
>>
>> Also I have question about updating protocol options: have you done
>> something with the problem that after updating protocol options existing
>> workers are running with old config?
>>
>> On Tuesday, December 25, 2012, Lo?c Hoguin wrote:
>>
>>     Ho ho ho!
>>
>>     I have just tagged version 0.6.0 of the Ranch project!
>>
>>     Ranch is a socket acceptor pool for TCP protocols.
>>
>>     https://github.com/extend/__**ranch<https://github.com/extend/__ranch><
>> https://github.com/extend/**ranch <https://github.com/extend/ranch>>
>>
>>
>>     Ranch is used by the next version of Cowboy, 0.8.0, set to be
>>     released early February, but also in Basho's Riak multi-data center
>>     replication amongst others.
>>
>>     All tickets have been resolved. A significant contribution was made
>>     by Andrew Majorov to improve the fault tolerance capabilities of the
>>     application, making sure it always restarts properly when things go
>>     wrong. This has been made possible thanks to the amazing project
>>     from Daniel Luna, chaos_monkey
>>     (https://github.com/dluna/__**chaos_monkey<https://github.com/dluna/__chaos_monkey>
>>     <https://github.com/dluna/**chaos_monkey<https://github.com/dluna/chaos_monkey>
>> >).
>>
>>
>>     The guide has also been improved and completed.
>>
>>     http://ninenines.eu/docs/en/__**ranch/HEAD/guide/introduction<http://ninenines.eu/docs/en/__ranch/HEAD/guide/introduction>
>>
>>     <http://ninenines.eu/docs/en/**ranch/HEAD/guide/introduction<http://ninenines.eu/docs/en/ranch/HEAD/guide/introduction>
>> >
>>
>>     If the guide isn't enough, drop by our new IRC channel dedicated to
>>     Cowboy, Ranch and all our other projects! #ninenines on Freenode.
>>
>>     Following is the list of change since last time:
>>
>>       *  Improve fault tolerance thanks to chaos_monkey testing
>>       *  Add 'nodelay' option to transports
>>       *  Add 'verify' option to ranch_ssl transport
>>       *  Add 'socket' option to pass an already open socket to the
>> listener
>>       *  Add Transport:sendfile/2 function (uses a fallback if
>> unavailable)
>>       *  Allow IP tuples in Transport:connect/3
>>       *  Add ranch:set_max_connections/2 to update the value live
>>       *  Add ranch:get_max_connections/1 to retrieve it
>>
>>     We are always looking for feedback, especially now that there is no
>>     ticket left open on this project. If you are using Ranch and have
>>     questions or needs that it doesn't cover, please send them to us.
>>
>>     Commercial support will be available starting from January, ping me
>>     if you are interested. Details will be announced at a later time on
>>     the ninenines.eu <http://ninenines.eu> mailing list.
>>
>>
>>     I want to thank all contributors for helping this project by opening
>>     tickets, sending patches and offering feedback. I am as always very
>>     grateful for any and all contributions. I wouldn't have made it this
>>     far without the tremendous help I receive everyday.
>>
>>     Thanks to all and have a nice holiday!
>>
>>     --
>>     Lo?c Hoguin
>>     Erlang Santa
>>     Nine Nines
>>     http://ninenines.eu
>>     ______________________________**___________________
>>     erlang-questions mailing list
>>     erlang-questions at erlang.org
>>     http://erlang.org/mailman/__**listinfo/erlang-questions<http://erlang.org/mailman/__listinfo/erlang-questions>
>>     <http://erlang.org/mailman/**listinfo/erlang-questions<http://erlang.org/mailman/listinfo/erlang-questions>
>> >
>>
>>
>
> --
> Lo?c Hoguin
> Erlang Cowboy
> Nine Nines
> http://ninenines.eu
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130103/f6c7fd25/attachment.html>

From essen at ninenines.eu  Thu Jan  3 14:51:48 2013
From: essen at ninenines.eu (=?UTF-8?B?TG/Dr2MgSG9ndWlu?=)
Date: Thu, 03 Jan 2013 14:51:48 +0100
Subject: [99s-extend] [erlang-questions] [ANN] Ranch 0.6.0 Xmas Edition
	Released
In-Reply-To: <CAMxVRxDm1E4YXfvYp2CVoXchTpGRZK85XnMat_YhRK9CJGrtqA@mail.gmail.com>
References: <[email protected]>
 <CAMxVRxA9uqXbfcP9=_CmTDk-ZBycmZijeOa_TyJXQvSPzvwfbg@mail.gmail.com>
 <[email protected]>
 <CAMxVRxDm1E4YXfvYp2CVoXchTpGRZK85XnMat_YhRK9CJGrtqA@mail.gmail.com>
Message-ID: <[email protected]>

Existing acceptors were using the old options for the next connection 
and then switched to the new options. But that has been fixed a long 
time ago. Ranch doesn't have that issue.

On 01/03/2013 02:32 PM, Max Lapshin wrote:
> I mean situation that after cowboy:update_options existing acceptors are
> still working with old routes.
> Currently it is useless API, so I have to stop cowboy and start it back.
>
>
> On Thu, Jan 3, 2013 at 4:46 PM, Lo?c Hoguin <essen at ninenines.eu
> <mailto:essen at ninenines.eu>> wrote:
>
>     Haven't had any stability issue. What we did here is ensure that
>     when any process gets killed for any reason, especially reasons we
>     can't foresee, Ranch continues to work as expected.
>
>     Ranch not updating protocol options for existing connections isn't a
>     problem, it won't be "fixed". Ranch can't guess how connection
>     processes are implemented. It's up to you to allow this if you need
>     it. The upgrade updates the options for all acceptors and all future
>     connections, that's it.
>
>
>     On 01/03/2013 10:30 AM, Max Lapshin wrote:
>
>         Loic, it would be great to hear a bit, what problems have you
>         met with.
>
>         What issues with stability can be in acceptor pool?
>
>         Also I have question about updating protocol options: have you done
>         something with the problem that after updating protocol options
>         existing
>         workers are running with old config?
>
>         On Tuesday, December 25, 2012, Lo?c Hoguin wrote:
>
>              Ho ho ho!
>
>              I have just tagged version 0.6.0 of the Ranch project!
>
>              Ranch is a socket acceptor pool for TCP protocols.
>
>         https://github.com/extend/____ranch
>         <https://github.com/extend/__ranch>
>         <https://github.com/extend/__ranch
>         <https://github.com/extend/ranch>>
>
>
>              Ranch is used by the next version of Cowboy, 0.8.0, set to be
>              released early February, but also in Basho's Riak
>         multi-data center
>              replication amongst others.
>
>              All tickets have been resolved. A significant contribution
>         was made
>              by Andrew Majorov to improve the fault tolerance
>         capabilities of the
>              application, making sure it always restarts properly when
>         things go
>              wrong. This has been made possible thanks to the amazing
>         project
>              from Daniel Luna, chaos_monkey
>              (https://github.com/dluna/____chaos_monkey
>         <https://github.com/dluna/__chaos_monkey>
>              <https://github.com/dluna/__chaos_monkey
>         <https://github.com/dluna/chaos_monkey>>).
>
>
>              The guide has also been improved and completed.
>
>         http://ninenines.eu/docs/en/____ranch/HEAD/guide/introduction
>         <http://ninenines.eu/docs/en/__ranch/HEAD/guide/introduction>
>
>
>         <http://ninenines.eu/docs/en/__ranch/HEAD/guide/introduction
>         <http://ninenines.eu/docs/en/ranch/HEAD/guide/introduction>>
>
>              If the guide isn't enough, drop by our new IRC channel
>         dedicated to
>              Cowboy, Ranch and all our other projects! #ninenines on
>         Freenode.
>
>              Following is the list of change since last time:
>
>                *  Improve fault tolerance thanks to chaos_monkey testing
>                *  Add 'nodelay' option to transports
>                *  Add 'verify' option to ranch_ssl transport
>                *  Add 'socket' option to pass an already open socket to
>         the listener
>                *  Add Transport:sendfile/2 function (uses a fallback if
>         unavailable)
>                *  Allow IP tuples in Transport:connect/3
>                *  Add ranch:set_max_connections/2 to update the value live
>                *  Add ranch:get_max_connections/1 to retrieve it
>
>              We are always looking for feedback, especially now that
>         there is no
>              ticket left open on this project. If you are using Ranch
>         and have
>              questions or needs that it doesn't cover, please send them
>         to us.
>
>              Commercial support will be available starting from January,
>         ping me
>              if you are interested. Details will be announced at a later
>         time on
>              the ninenines.eu <http://ninenines.eu>
>         <http://ninenines.eu> mailing list.
>
>
>              I want to thank all contributors for helping this project
>         by opening
>              tickets, sending patches and offering feedback. I am as
>         always very
>              grateful for any and all contributions. I wouldn't have
>         made it this
>              far without the tremendous help I receive everyday.
>
>              Thanks to all and have a nice holiday!
>
>              --
>              Lo?c Hoguin
>              Erlang Santa
>              Nine Nines
>         http://ninenines.eu
>              ___________________________________________________
>              erlang-questions mailing list
>         erlang-questions at erlang.org <mailto:erlang-questions at erlang.org>
>         http://erlang.org/mailman/____listinfo/erlang-questions
>         <http://erlang.org/mailman/__listinfo/erlang-questions>
>              <http://erlang.org/mailman/__listinfo/erlang-questions
>         <http://erlang.org/mailman/listinfo/erlang-questions>>
>
>
>
>     --
>     Lo?c Hoguin
>     Erlang Cowboy
>     Nine Nines
>     http://ninenines.eu
>
>


-- 
Lo?c Hoguin
Erlang Cowboy
Nine Nines
http://ninenines.eu


From max.lapshin at gmail.com  Thu Jan  3 15:00:56 2013
From: max.lapshin at gmail.com (Max Lapshin)
Date: Thu, 3 Jan 2013 17:00:56 +0300
Subject: [99s-extend] [erlang-questions] [ANN] Ranch 0.6.0 Xmas Edition
	Released
In-Reply-To: <[email protected]>
References: <[email protected]>
 <CAMxVRxA9uqXbfcP9=_CmTDk-ZBycmZijeOa_TyJXQvSPzvwfbg@mail.gmail.com>
 <[email protected]>
 <CAMxVRxDm1E4YXfvYp2CVoXchTpGRZK85XnMat_YhRK9CJGrtqA@mail.gmail.com>
 <[email protected]>
Message-ID: <CAMxVRxDw9b8Gqg7O-+XVWV_1fyTX-QaBXgZK8wRy1QetoVYBLQ@mail.gmail.com>

ok


On Thu, Jan 3, 2013 at 5:51 PM, Lo?c Hoguin <essen at ninenines.eu> wrote:

> Existing acceptors were using the old options for the next connection and
> then switched to the new options. But that has been fixed a long time ago.
> Ranch doesn't have that issue.
>
>
> On 01/03/2013 02:32 PM, Max Lapshin wrote:
>
>> I mean situation that after cowboy:update_options existing acceptors are
>> still working with old routes.
>> Currently it is useless API, so I have to stop cowboy and start it back.
>>
>>
>> On Thu, Jan 3, 2013 at 4:46 PM, Lo?c Hoguin <essen at ninenines.eu
>> <mailto:essen at ninenines.eu>> wrote:
>>
>>     Haven't had any stability issue. What we did here is ensure that
>>     when any process gets killed for any reason, especially reasons we
>>     can't foresee, Ranch continues to work as expected.
>>
>>     Ranch not updating protocol options for existing connections isn't a
>>     problem, it won't be "fixed". Ranch can't guess how connection
>>     processes are implemented. It's up to you to allow this if you need
>>     it. The upgrade updates the options for all acceptors and all future
>>     connections, that's it.
>>
>>
>>     On 01/03/2013 10:30 AM, Max Lapshin wrote:
>>
>>         Loic, it would be great to hear a bit, what problems have you
>>         met with.
>>
>>         What issues with stability can be in acceptor pool?
>>
>>         Also I have question about updating protocol options: have you
>> done
>>         something with the problem that after updating protocol options
>>         existing
>>         workers are running with old config?
>>
>>         On Tuesday, December 25, 2012, Lo?c Hoguin wrote:
>>
>>              Ho ho ho!
>>
>>              I have just tagged version 0.6.0 of the Ranch project!
>>
>>              Ranch is a socket acceptor pool for TCP protocols.
>>
>>         https://github.com/extend/____**ranch<https://github.com/extend/____ranch>
>>         <https://github.com/extend/__**ranch<https://github.com/extend/__ranch>
>> >
>>
>>         <https://github.com/extend/__**ranch<https://github.com/extend/__ranch>
>>         <https://github.com/extend/**ranch<https://github.com/extend/ranch>
>> >>
>>
>>
>>              Ranch is used by the next version of Cowboy, 0.8.0, set to be
>>              released early February, but also in Basho's Riak
>>         multi-data center
>>              replication amongst others.
>>
>>              All tickets have been resolved. A significant contribution
>>         was made
>>              by Andrew Majorov to improve the fault tolerance
>>         capabilities of the
>>              application, making sure it always restarts properly when
>>         things go
>>              wrong. This has been made possible thanks to the amazing
>>         project
>>              from Daniel Luna, chaos_monkey
>>              (https://github.com/dluna/____**chaos_monkey<https://github.com/dluna/____chaos_monkey>
>>         <https://github.com/dluna/__**chaos_monkey<https://github.com/dluna/__chaos_monkey>
>> >
>>
>>              <https://github.com/dluna/__**chaos_monkey<https://github.com/dluna/__chaos_monkey>
>>         <https://github.com/dluna/**chaos_monkey<https://github.com/dluna/chaos_monkey>
>> >>).
>>
>>
>>              The guide has also been improved and completed.
>>
>>         http://ninenines.eu/docs/en/__**__ranch/HEAD/guide/**introduction<http://ninenines.eu/docs/en/____ranch/HEAD/guide/introduction>
>>         <http://ninenines.eu/docs/en/_**_ranch/HEAD/guide/introduction<http://ninenines.eu/docs/en/__ranch/HEAD/guide/introduction>
>> **>
>>
>>
>>
>>         <http://ninenines.eu/docs/en/_**_ranch/HEAD/guide/introduction<http://ninenines.eu/docs/en/__ranch/HEAD/guide/introduction>
>>         <http://ninenines.eu/docs/en/**ranch/HEAD/guide/introduction<http://ninenines.eu/docs/en/ranch/HEAD/guide/introduction>
>> >**>
>>
>>              If the guide isn't enough, drop by our new IRC channel
>>         dedicated to
>>              Cowboy, Ranch and all our other projects! #ninenines on
>>         Freenode.
>>
>>              Following is the list of change since last time:
>>
>>                *  Improve fault tolerance thanks to chaos_monkey testing
>>                *  Add 'nodelay' option to transports
>>                *  Add 'verify' option to ranch_ssl transport
>>                *  Add 'socket' option to pass an already open socket to
>>         the listener
>>                *  Add Transport:sendfile/2 function (uses a fallback if
>>         unavailable)
>>                *  Allow IP tuples in Transport:connect/3
>>                *  Add ranch:set_max_connections/2 to update the value live
>>                *  Add ranch:get_max_connections/1 to retrieve it
>>
>>              We are always looking for feedback, especially now that
>>         there is no
>>              ticket left open on this project. If you are using Ranch
>>         and have
>>              questions or needs that it doesn't cover, please send them
>>         to us.
>>
>>              Commercial support will be available starting from January,
>>         ping me
>>              if you are interested. Details will be announced at a later
>>         time on
>>              the ninenines.eu <http://ninenines.eu>
>>         <http://ninenines.eu> mailing list.
>>
>>
>>              I want to thank all contributors for helping this project
>>         by opening
>>              tickets, sending patches and offering feedback. I am as
>>         always very
>>              grateful for any and all contributions. I wouldn't have
>>         made it this
>>              far without the tremendous help I receive everyday.
>>
>>              Thanks to all and have a nice holiday!
>>
>>              --
>>              Lo?c Hoguin
>>              Erlang Santa
>>              Nine Nines
>>         http://ninenines.eu
>>              ______________________________**_____________________
>>              erlang-questions mailing list
>>         erlang-questions at erlang.org <mailto:erlang-questions@**erlang.org<erlang-questions at erlang.org>
>> >
>>         http://erlang.org/mailman/____**listinfo/erlang-questions<http://erlang.org/mailman/____listinfo/erlang-questions>
>>         <http://erlang.org/mailman/__**listinfo/erlang-questions<http://erlang.org/mailman/__listinfo/erlang-questions>
>> >
>>
>>              <http://erlang.org/mailman/__**listinfo/erlang-questions<http://erlang.org/mailman/__listinfo/erlang-questions>
>>         <http://erlang.org/mailman/**listinfo/erlang-questions<http://erlang.org/mailman/listinfo/erlang-questions>
>> >>
>>
>>
>>
>>     --
>>     Lo?c Hoguin
>>     Erlang Cowboy
>>     Nine Nines
>>     http://ninenines.eu
>>
>>
>>
>
> --
> Lo?c Hoguin
> Erlang Cowboy
> Nine Nines
> http://ninenines.eu
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130103/d9dbc1a5/attachment.html>

From essen at ninenines.eu  Thu Jan  3 22:52:46 2013
From: essen at ninenines.eu (=?ISO-8859-1?Q?Lo=EFc_Hoguin?=)
Date: Thu, 03 Jan 2013 22:52:46 +0100
Subject: [99s-extend] Call for testers: middleware support
Message-ID: <[email protected]>

Hello!

Been a year. How' ya been?

Added middleware support. Probably broke things. Please test and open 
tickets if I did?

https://github.com/extend/cowboy/commit/1b3f510b7e8d5413901ba72adfe361773f3e9097

Thanks.

-- 
Lo?c Hoguin
Erlang Cowboy
Nine Nines
http://ninenines.eu


From thomas at oinksoft.com  Fri Jan  4 15:31:21 2013
From: thomas at oinksoft.com (Thomas Allen)
Date: Fri, 04 Jan 2013 09:31:21 -0500
Subject: [99s-extend] Call for testers: middleware support
In-Reply-To: <[email protected]>
References: <[email protected]>
Message-ID: <[email protected]>

Thank you L?ic, this looks much cleaner than what I've used in its place.

Thomas


On 01/03/2013 04:52 PM, Lo?c Hoguin wrote:
> Hello!
>
> Been a year. How' ya been?
>
> Added middleware support. Probably broke things. Please test and open
> tickets if I did?
>
> https://github.com/extend/cowboy/commit/1b3f510b7e8d5413901ba72adfe361773f3e9097
>
>
> Thanks.
>


From kozlov-ter at yandex.ru  Tue Jan  8 22:36:56 2013
From: kozlov-ter at yandex.ru (=?koi8-r?B?68/azM/XIPfR3sXTzMHX?=)
Date: Wed, 09 Jan 2013 01:36:56 +0400
Subject: [99s-extend] Cowboy, how call my database select function
Message-ID: <[email protected]>

Hello!
Prompt please, beginning to study the Erlang.
I have a library for working with ?Redis.
Plugged it into the project Cowboy with the help of Rebar.
After the launch of a Cowboy through the script in the console ERL, I see that the function (eredis_db:get_script) is  works and I get the desired result:

EDB R15B03 (erts-5.9.3.1) [source] [async-threads:0] [hipe] [kernel-poll:false]
Eshell V5.9.3.1 (abort with ^G)
1> eredis_db:get_script("example", "test").

Tell me how can I use this function in a Cowboy, in hendlers.
I hope I could explain clearly.
-- 
Engineer CAM 
Vyacheslav Kozlov 
LLC "TER" 
http://www.ter-energo.ru
tel.+7910909xxxx


From thomas at oinksoft.com  Wed Jan  9 00:12:02 2013
From: thomas at oinksoft.com (Thomas Allen)
Date: Tue, 08 Jan 2013 18:12:02 -0500
Subject: [99s-extend] Cowboy, how call my database select function
In-Reply-To: <[email protected]>
References: <[email protected]>
Message-ID: <[email protected]>

On 1/8/13 4:36 PM, ?????? ???????? wrote:
> I hope I could explain clearly.

This was not quite clear to me, but I'll do my best.

> Tell me how can I use this function in a Cowboy, in hendlers.

Well, you'd use it like any other Erlang function. If it's in a handler, 
you probably want to use init/3 or handle/2:

handle(Req, State) ->
     _EredisScript = eredis_db:get_script("example", "test"),
     {ok, Resp} = cowboy_req:reply(200, Req),
     {ok, Resp, State}.

See other examples of implementing `cowboy_http_handler' behaviour in 
the Cowboy documentation and in the examples included with the library.

Thomas Allen


From essen at ninenines.eu  Thu Jan 17 19:33:26 2013
From: essen at ninenines.eu (=?ISO-8859-1?Q?Lo=EFc_Hoguin?=)
Date: Thu, 17 Jan 2013 19:33:26 +0100
Subject: [99s-extend] [ANN] Ranch 0.6.1
Message-ID: <[email protected]>

Short, quick and semi-private announcement: Ranch 0.6.1 has been tagged.

It includes a few guide updates, the addition of the raw option for 
specifying platform-specific socket options, and performance 
improvements when using the {max_connections, infinity} option.

Enjoy!

-- 
Lo?c Hoguin
Erlang Cowboy
Nine Nines
http://ninenines.eu


From jeremy at quarkgames.com  Thu Jan 17 20:42:38 2013
From: jeremy at quarkgames.com (Jeremy Ong)
Date: Thu, 17 Jan 2013 11:42:38 -0800
Subject: [99s-extend] [ANN] Ranch 0.6.1
In-Reply-To: <[email protected]>
References: <[email protected]>
Message-ID: <CAKD1GY5xDutk6NxxT131q1AwMNou3YDSOvg21tr35rs9YZop5w@mail.gmail.com>

Thanks Lo?c!


On Thu, Jan 17, 2013 at 10:33 AM, Lo?c Hoguin <essen at ninenines.eu> wrote:

> Short, quick and semi-private announcement: Ranch 0.6.1 has been tagged.
>
> It includes a few guide updates, the addition of the raw option for
> specifying platform-specific socket options, and performance improvements
> when using the {max_connections, infinity} option.
>
> Enjoy!
>
> --
> Lo?c Hoguin
> Erlang Cowboy
> Nine Nines
> http://ninenines.eu
> ______________________________**_________________
> Extend mailing list
> Extend at lists.ninenines.eu
> http://lists.ninenines.eu:81/**listinfo/extend<http://lists.ninenines.eu:81/listinfo/extend>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130117/19bfde40/attachment.html>

From essen at ninenines.eu  Thu Jan 24 22:23:31 2013
From: essen at ninenines.eu (=?ISO-8859-1?Q?Lo=EFc_Hoguin?=)
Date: Thu, 24 Jan 2013 22:23:31 +0100
Subject: [99s-extend] Cowboy feedback needed
Message-ID: <[email protected]>

Hey,

I'm looking into perhaps starting a project related to Cowboy and could 
use some feedback from users, particularly in the realm of numbers.

If you use Cowboy and have it in production where:

  *  Latency is vital
  *  Throughput is vital
  *  Concurrent number of connections is huge
  *  Load is huge (or would be with another solution)

Then I'd like to hear from you!

Please send me average numbers, statistics, graphs or anything where I 
can see how well it performs for you! In private if you prefer. Tell me 
if I can quote you or your company about it. Please answer even if we 
briefly discussed it in the past.

(If you found that it didn't perform enough for your needs you should 
probably open a ticket, or, if you can't, send me a private email.)

Looking forward to the feedback. Thanks!

-- 
Lo?c Hoguin
Erlang Cowboy
Nine Nines
http://ninenines.eu


From list1 at gjunka.com  Thu Jan 24 23:41:30 2013
From: list1 at gjunka.com (Grzegorz Junka)
Date: Thu, 24 Jan 2013 22:41:30 +0000
Subject: [99s-extend] Cowboy Makefile
Message-ID: <[email protected]>

Hi,
I understand the move away from Rebar but I'd like to see the project to 
be still Rebar-compatible. Would that be a problem? Mainly I am thinking 
about dependencies. The Cowboy Makefile assumes that Ranch is in its 
deps folder. If Cowboy is a part of a bigger application, and most often 
it will be in such a role rather than a standalone application, then all 
dependencies should be kept in one place. In that case it would be the 
main project's deps folder, not Cowboy's deps folder. Can the 
compilation process be split into compiling Cowboy dependencies 
separately from Cowboy itself?

something like:

all: compile-deps compile-cowboy

Then if Cowboy is a dependency itself it may be just compiled without 
the dependency (as it will be compiled when the main project is compiled).



From barcojie at gmail.com  Fri Jan 25 06:53:17 2013
From: barcojie at gmail.com (Barco You)
Date: Fri, 25 Jan 2013 13:53:17 +0800
Subject: [99s-extend] [erlang-questions] Cowboy feedback needed
In-Reply-To: <[email protected]>
References: <[email protected]>
Message-ID: <CA+qFv3vi-JoOVy52Uu7mjBg4Fd_Xr0rGykj1bJUFkkbWxhF4HQ@mail.gmail.com>

Hi Loic,

I'd like to send feedback very much. But right now Cowboy is just used as
demo in my company --- BesTV (www.bestv.com.cn), which is the largest IPTV
and intenetTV operator in China. Although I think Cowby is good, the
production environment is still dominated by Java and mainstream HTTP
servers. Because I'm from Ericsson, I hope to promote Erlang here but it's
not so easy. I would send the data if Cowboy would be used in production
and fully tested.

Thank you!
Barco

On Fri, Jan 25, 2013 at 5:23 AM, Lo?c Hoguin <essen at ninenines.eu> wrote:

> Hey,
>
> I'm looking into perhaps starting a project related to Cowboy and could
> use some feedback from users, particularly in the realm of numbers.
>
> If you use Cowboy and have it in production where:
>
>  *  Latency is vital
>  *  Throughput is vital
>  *  Concurrent number of connections is huge
>  *  Load is huge (or would be with another solution)
>
> Then I'd like to hear from you!
>
> Please send me average numbers, statistics, graphs or anything where I can
> see how well it performs for you! In private if you prefer. Tell me if I
> can quote you or your company about it. Please answer even if we briefly
> discussed it in the past.
>
> (If you found that it didn't perform enough for your needs you should
> probably open a ticket, or, if you can't, send me a private email.)
>
> Looking forward to the feedback. Thanks!
>
> --
> Lo?c Hoguin
> Erlang Cowboy
> Nine Nines
> http://ninenines.eu
> ______________________________**_________________
> erlang-questions mailing list
> erlang-questions at erlang.org
> http://erlang.org/mailman/**listinfo/erlang-questions<http://erlang.org/mailman/listinfo/erlang-questions>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130125/7d0820aa/attachment.html>

From mjtruog at gmail.com  Fri Jan 25 07:26:27 2013
From: mjtruog at gmail.com (Michael Truog)
Date: Thu, 24 Jan 2013 22:26:27 -0800
Subject: [99s-extend] [erlang-questions] Cowboy feedback needed
In-Reply-To: <[email protected]>
References: <[email protected]>
Message-ID: <[email protected]>

A comparison (summary) of cowboy 0.6.1 and misultin 0.9 final in the context of CloudI is here:
https://github.com/okeuday/CloudI/blob/master/src/tests/http_req/loadtest/results_v1_1_0/201210_summary.pdf
(the raw Tsung results are also within the same directory)

The results are just showing the latency when putting cowboy and misultin under 10kreq/s load with both 20k and 40k connections, when the requests go through CloudI messaging into all the supported programming languages (Erlang, C/C++, pure-Java, Python/C, pure-Python, and pure-Ruby.... the "pure" part is where only the target language is used to create the CloudI API, which does the Erlang binary term format CloudI request encoding/decoding).  So, the test is showing the performance of a simple HTTP GET query parameter parse/response using XML (the XML is based on historical misultin testing).

For these tests, it showed cowboy always has less latency which is significant, if the programming language internal latency is not significant.  The cpu usage of cowboy was slightly lower than misultin for high connection counts (40k instead of 20k).  The memory usage of cowboy was significantly lower than misultin.  The test results are for R15B01 and R15B02, just due to when I did the loadtesting.

I will continue to do similar loadtests in the future to make sure and evaluate performance with more recent Erlang releases, as time allows, but the Tsung configurations are within the repository for people to test their own (hardware) environments.

On 01/24/2013 01:23 PM, Lo?c Hoguin wrote:
> Hey,
>
> I'm looking into perhaps starting a project related to Cowboy and could use some feedback from users, particularly in the realm of numbers.
>
> If you use Cowboy and have it in production where:
>
>  *  Latency is vital
>  *  Throughput is vital
>  *  Concurrent number of connections is huge
>  *  Load is huge (or would be with another solution)
>
> Then I'd like to hear from you!
>
> Please send me average numbers, statistics, graphs or anything where I can see how well it performs for you! In private if you prefer. Tell me if I can quote you or your company about it. Please answer even if we briefly discussed it in the past.
>
> (If you found that it didn't perform enough for your needs you should probably open a ticket, or, if you can't, send me a private email.)
>
> Looking forward to the feedback. Thanks!
>