summaryrefslogblamecommitdiffstats
path: root/archives/extend/2013-September.txt
blob: a79d38573b3ed1c267ca15a985f6080f15cb8600 (plain) (tree)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                     
From joe.freeman at bitroot.com  Sun Sep 15 19:01:30 2013
From: joe.freeman at bitroot.com (Joe Freeman)
Date: Sun, 15 Sep 2013 18:01:30 +0100
Subject: [99s-extend] Cowboy load test
Message-ID: <CAOBKReerkZKL_Rm9j7X4FH3YUbFHZDGHiVojNgO7WepOWCc_eQ@mail.gmail.com>

Hi,

I've started work on a project using Clojure, but I was wondering whether
(and secretly hoping that) Erlang would be a better fit, so I've been load
testing a few web server frameworks. I'm particularly interested in how the
server can handle a large number of concurrent WebSocket connections, and
the test I've been running is similar to Eric Moritz's [1].

I've setup a simple Cowboy 'echo' server running on an EC2 instance
(m1.medium, as in Eric's test) which could comfortably handle 10k
concurrent WebSocket requests (as in Eric's results), while echoing about
200 messages/second. The CPU usage of the VM at this point is about 99%,
but the server continues to handle up to 40k concurrent connections with a
consistent average response time (<30ms). Pushing the test beyond this
number results in a spike in response times and lots of connection timeouts.

40k connections seems pretty good, but when comparing this to the same test
against a couple of Clojure/JVM-based frameworks (specifically Aleph/Netty
and http-kit) I find I can get higher numbers of concurrent connections
with slightly better average response times (100k connections, <10ms
response time) using much less CPU (~20%). In fact, memory seems to be the
limiting factor.

So I have two questions:

1) Should I be concerned about the CPU usage in the Erlang/Cowboy test? I
have limited experience with Erlang so far, but 100% CPU feels like a bad
thing.

2) Is there any way to increase the performance of the cowboy server? Are
there any Erlang VM parameters I can change? The fact that the Clojure/JVM
tests (on the same machine) have managed to get to 100k connections
suggests that the limitation isn't being imposed by the operating system
(I've applied changes various changes to sysctl and ulimit).

(Perhaps an echo server isn't the best way to compare HTTP servers, but it
feels like a good starting point.)

Thanks for any help.

[1] https://github.com/ericmoritz/wsdemo/blob/results-v1/results.md - the
GitHub repo actually contains code for an Aleph server, but results from
this aren't included in the summary here.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130915/c9a5340e/attachment.html>

From essen at ninenines.eu  Sun Sep 15 21:02:35 2013
From: essen at ninenines.eu (=?ISO-8859-1?Q?Lo=EFc_Hoguin?=)
Date: Sun, 15 Sep 2013 21:02:35 +0200
Subject: [99s-extend] Cowboy load test
In-Reply-To: <CAOBKReerkZKL_Rm9j7X4FH3YUbFHZDGHiVojNgO7WepOWCc_eQ@mail.gmail.com>
References: <CAOBKReerkZKL_Rm9j7X4FH3YUbFHZDGHiVojNgO7WepOWCc_eQ@mail.gmail.com>
Message-ID: <[email protected]>

This sounds like you have too many timers, or something else is using 
the CPU. 40k connections is literally nothing. Also make sure the 
clients are on a separate VM/machine.

Either way 99% CPU for 10k sounds high, I've had that with 0 CPU (though 
on real hardware).

Someone a couple years back got above 1 million after fixing 'too many 
timers issues' but I don't think it was on a medium instance.

On 09/15/2013 07:01 PM, Joe Freeman wrote:
> Hi,
>
> I've started work on a project using Clojure, but I was wondering
> whether (and secretly hoping that) Erlang would be a better fit, so I've
> been load testing a few web server frameworks. I'm particularly
> interested in how the server can handle a large number of concurrent
> WebSocket connections, and the test I've been running is similar to Eric
> Moritz's [1].
>
> I've setup a simple Cowboy 'echo' server running on an EC2 instance
> (m1.medium, as in Eric's test) which could comfortably handle 10k
> concurrent WebSocket requests (as in Eric's results), while echoing
> about 200 messages/second. The CPU usage of the VM at this point is
> about 99%, but the server continues to handle up to 40k concurrent
> connections with a consistent average response time (<30ms). Pushing the
> test beyond this number results in a spike in response times and lots of
> connection timeouts.
>
> 40k connections seems pretty good, but when comparing this to the same
> test against a couple of Clojure/JVM-based frameworks (specifically
> Aleph/Netty and http-kit) I find I can get higher numbers of concurrent
> connections with slightly better average response times (100k
> connections, <10ms response time) using much less CPU (~20%). In fact,
> memory seems to be the limiting factor.
>
> So I have two questions:
>
> 1) Should I be concerned about the CPU usage in the Erlang/Cowboy test?
> I have limited experience with Erlang so far, but 100% CPU feels like a
> bad thing.
>
> 2) Is there any way to increase the performance of the cowboy server?
> Are there any Erlang VM parameters I can change? The fact that the
> Clojure/JVM tests (on the same machine) have managed to get to 100k
> connections suggests that the limitation isn't being imposed by the
> operating system (I've applied changes various changes to sysctl and
> ulimit).
>
> (Perhaps an echo server isn't the best way to compare HTTP servers, but
> it feels like a good starting point.)
>
> Thanks for any help.
>
> [1] https://github.com/ericmoritz/wsdemo/blob/results-v1/results.md -
> the GitHub repo actually contains code for an Aleph server, but results
> from this aren't included in the summary here.
>
>
>
> _______________________________________________
> Extend mailing list
> Extend at lists.ninenines.eu
> http://lists.ninenines.eu:81/listinfo/extend
>


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


From essen at ninenines.eu  Sun Sep 15 21:05:02 2013
From: essen at ninenines.eu (=?ISO-8859-1?Q?Lo=EFc_Hoguin?=)
Date: Sun, 15 Sep 2013 21:05:02 +0200
Subject: [99s-extend] Cowboy load test
In-Reply-To: <[email protected]>
References: <CAOBKReerkZKL_Rm9j7X4FH3YUbFHZDGHiVojNgO7WepOWCc_eQ@mail.gmail.com>
 <[email protected]>
Message-ID: <[email protected]>

This just hit me after hitting send.

Another possibility is that you are using text frames which are required 
to be valid UTF-8. Cowboy checks that (as required by the RFC), and it's 
fairly expensive, while most other servers don't. Try with binary frames 
instead.

On 09/15/2013 09:02 PM, Lo?c Hoguin wrote:
> This sounds like you have too many timers, or something else is using
> the CPU. 40k connections is literally nothing. Also make sure the
> clients are on a separate VM/machine.
>
> Either way 99% CPU for 10k sounds high, I've had that with 0 CPU (though
> on real hardware).
>
> Someone a couple years back got above 1 million after fixing 'too many
> timers issues' but I don't think it was on a medium instance.
>
> On 09/15/2013 07:01 PM, Joe Freeman wrote:
>> Hi,
>>
>> I've started work on a project using Clojure, but I was wondering
>> whether (and secretly hoping that) Erlang would be a better fit, so I've
>> been load testing a few web server frameworks. I'm particularly
>> interested in how the server can handle a large number of concurrent
>> WebSocket connections, and the test I've been running is similar to Eric
>> Moritz's [1].
>>
>> I've setup a simple Cowboy 'echo' server running on an EC2 instance
>> (m1.medium, as in Eric's test) which could comfortably handle 10k
>> concurrent WebSocket requests (as in Eric's results), while echoing
>> about 200 messages/second. The CPU usage of the VM at this point is
>> about 99%, but the server continues to handle up to 40k concurrent
>> connections with a consistent average response time (<30ms). Pushing the
>> test beyond this number results in a spike in response times and lots of
>> connection timeouts.
>>
>> 40k connections seems pretty good, but when comparing this to the same
>> test against a couple of Clojure/JVM-based frameworks (specifically
>> Aleph/Netty and http-kit) I find I can get higher numbers of concurrent
>> connections with slightly better average response times (100k
>> connections, <10ms response time) using much less CPU (~20%). In fact,
>> memory seems to be the limiting factor.
>>
>> So I have two questions:
>>
>> 1) Should I be concerned about the CPU usage in the Erlang/Cowboy test?
>> I have limited experience with Erlang so far, but 100% CPU feels like a
>> bad thing.
>>
>> 2) Is there any way to increase the performance of the cowboy server?
>> Are there any Erlang VM parameters I can change? The fact that the
>> Clojure/JVM tests (on the same machine) have managed to get to 100k
>> connections suggests that the limitation isn't being imposed by the
>> operating system (I've applied changes various changes to sysctl and
>> ulimit).
>>
>> (Perhaps an echo server isn't the best way to compare HTTP servers, but
>> it feels like a good starting point.)
>>
>> Thanks for any help.
>>
>> [1] https://github.com/ericmoritz/wsdemo/blob/results-v1/results.md -
>> the GitHub repo actually contains code for an Aleph server, but results
>> from this aren't included in the summary here.
>>
>>
>>
>> _______________________________________________
>> Extend mailing list
>> Extend at lists.ninenines.eu
>> http://lists.ninenines.eu:81/listinfo/extend
>>
>
>


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


From akonsu at gmail.com  Mon Sep 16 15:50:22 2013
From: akonsu at gmail.com (akonsu)
Date: Mon, 16 Sep 2013 09:50:22 -0400
Subject: [99s-extend] how to send a message to all connections in cowboy
Message-ID: <CA+eMAwYqrYJ1bFQfuJJJm=Sfan3K0VVdOQRPb2ULsomk6VuGsA@mail.gmail.com>

Hello,

this is somewhat similar to what someone else has asked:
http://lists.ninenines.eu:81/archives/extend/2013-August/000224.html

I am new to cowboy, I have a process that runs alongside a cowboy server
and this process needs to periodically send text to all http clients
connected to the cowboy server. My goal is to have a streaming connection
for each http client so that I could stream text to them from my process.
how is this done?

Thanks!
Konstantin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130916/dedbf486/attachment.html>

From essen at ninenines.eu  Mon Sep 16 19:06:32 2013
From: essen at ninenines.eu (=?ISO-8859-1?Q?Lo=EFc_Hoguin?=)
Date: Mon, 16 Sep 2013 19:06:32 +0200
Subject: [99s-extend] how to send a message to all connections in cowboy
In-Reply-To: <CA+eMAwYqrYJ1bFQfuJJJm=Sfan3K0VVdOQRPb2ULsomk6VuGsA@mail.gmail.com>
References: <CA+eMAwYqrYJ1bFQfuJJJm=Sfan3K0VVdOQRPb2ULsomk6VuGsA@mail.gmail.com>
Message-ID: <[email protected]>

On 09/16/2013 03:50 PM, akonsu wrote:
> Hello,
>
> this is somewhat similar to what someone else has asked:
> http://lists.ninenines.eu:81/archives/extend/2013-August/000224.html
>
> I am new to cowboy, I have a process that runs alongside a cowboy server
> and this process needs to periodically send text to all http clients
> connected to the cowboy server. My goal is to have a streaming
> connection for each http client so that I could stream text to them from
> my process. how is this done?

Same answer really. You need some kind of process registry, like gproc 
properties for example, that will store all Pids and allow you to send a 
message to all of them.

On init, register the process, and then handle the incoming message when 
it arrives.

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


From akonsu at gmail.com  Mon Sep 16 19:14:24 2013
From: akonsu at gmail.com (akonsu)
Date: Mon, 16 Sep 2013 13:14:24 -0400
Subject: [99s-extend] how to send a message to all connections in cowboy
In-Reply-To: <[email protected]>
References: <CA+eMAwYqrYJ1bFQfuJJJm=Sfan3K0VVdOQRPb2ULsomk6VuGsA@mail.gmail.com>
 <[email protected]>
Message-ID: <CA+eMAwYJdErXi780jUepDaCMrWPv99N1diF0a_88AzfM3Z9mMA@mail.gmail.com>

thanks. Suppose my external process is registered and has a name, so I can
discover it by name from my cowboy request handler. when my cowboy handler
is invoked, can I just send the handler's process ID to the external
process? the question is then how does the external process know that the
http client has disconnected so that it can stop sending data to it.


2013/9/16 Lo?c Hoguin <essen at ninenines.eu>

> On 09/16/2013 03:50 PM, akonsu wrote:
>
>> Hello,
>>
>> this is somewhat similar to what someone else has asked:
>> http://lists.ninenines.eu:81/**archives/extend/2013-August/**000224.html<http://lists.ninenines.eu:81/archives/extend/2013-August/000224.html>
>>
>> I am new to cowboy, I have a process that runs alongside a cowboy server
>> and this process needs to periodically send text to all http clients
>> connected to the cowboy server. My goal is to have a streaming
>> connection for each http client so that I could stream text to them from
>> my process. how is this done?
>>
>
> Same answer really. You need some kind of process registry, like gproc
> properties for example, that will store all Pids and allow you to send a
> message to all of them.
>
> On init, register the process, and then handle the incoming message when
> it arrives.
>
> --
> 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/20130916/f55d10f5/attachment.html>

From essen at ninenines.eu  Mon Sep 16 19:19:59 2013
From: essen at ninenines.eu (=?UTF-8?B?TG/Dr2MgSG9ndWlu?=)
Date: Mon, 16 Sep 2013 19:19:59 +0200
Subject: [99s-extend] how to send a message to all connections in cowboy
In-Reply-To: <CA+eMAwYJdErXi780jUepDaCMrWPv99N1diF0a_88AzfM3Z9mMA@mail.gmail.com>
References: <CA+eMAwYqrYJ1bFQfuJJJm=Sfan3K0VVdOQRPb2ULsomk6VuGsA@mail.gmail.com>
 <[email protected]>
 <CA+eMAwYJdErXi780jUepDaCMrWPv99N1diF0a_88AzfM3Z9mMA@mail.gmail.com>
Message-ID: <[email protected]>

Monitors.

But really gproc does all that for you and is already well tested.

https://github.com/esl/gproc

On 09/16/2013 07:14 PM, akonsu wrote:
> thanks. Suppose my external process is registered and has a name, so I
> can discover it by name from my cowboy request handler. when my cowboy
> handler is invoked, can I just send the handler's process ID to the
> external process? the question is then how does the external process
> know that the http client has disconnected so that it can stop sending
> data to it.
>
>
> 2013/9/16 Lo?c Hoguin <essen at ninenines.eu <mailto:essen at ninenines.eu>>
>
>     On 09/16/2013 03:50 PM, akonsu wrote:
>
>         Hello,
>
>         this is somewhat similar to what someone else has asked:
>         http://lists.ninenines.eu:81/__archives/extend/2013-August/__000224.html
>         <http://lists.ninenines.eu:81/archives/extend/2013-August/000224.html>
>
>         I am new to cowboy, I have a process that runs alongside a
>         cowboy server
>         and this process needs to periodically send text to all http clients
>         connected to the cowboy server. My goal is to have a streaming
>         connection for each http client so that I could stream text to
>         them from
>         my process. how is this done?
>
>
>     Same answer really. You need some kind of process registry, like
>     gproc properties for example, that will store all Pids and allow you
>     to send a message to all of them.
>
>     On init, register the process, and then handle the incoming message
>     when it arrives.
>
>     --
>     Lo?c Hoguin
>     Erlang Cowboy
>     Nine Nines
>     http://ninenines.eu
>
>


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


From akonsu at gmail.com  Thu Sep 19 06:30:57 2013
From: akonsu at gmail.com (akonsu)
Date: Thu, 19 Sep 2013 00:30:57 -0400
Subject: [99s-extend] cowboy_loop_handler
Message-ID: <CA+eMAwZtgAjDxQTo6VgC729hhog7wONi-o6vnQa21JExgjUGDA@mail.gmail.com>

Hello,

from the documentation:

info(Info, Req, State) -> {ok, Req, State} | {loop, Req, State} | {loop,
Req, State, hibernate}


in case my handler receives a lot of messages, and they come very often,
does a response of the latter form {loop, Req, State, hibernate} save
anything? Can hibernating in this case actually hinder performance?

thanks
Konstantin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130919/9614ef5e/attachment.html>

From essen at ninenines.eu  Thu Sep 19 11:03:02 2013
From: essen at ninenines.eu (=?ISO-8859-1?Q?Lo=EFc_Hoguin?=)
Date: Thu, 19 Sep 2013 11:03:02 +0200
Subject: [99s-extend] cowboy_loop_handler
In-Reply-To: <CA+eMAwZtgAjDxQTo6VgC729hhog7wONi-o6vnQa21JExgjUGDA@mail.gmail.com>
References: <CA+eMAwZtgAjDxQTo6VgC729hhog7wONi-o6vnQa21JExgjUGDA@mail.gmail.com>
Message-ID: <[email protected]>

How much is a lot of messages?

Hibernating is a bit more expensive on the CPU but better for saving 
memory. It's generally fine to use except when you have a really busy 
system. Do note that it also means your responses will be slightly 
slower (though that is generally not noticeable).

On 09/19/2013 06:30 AM, akonsu wrote:
> Hello,
>
> from the documentation:
>
> info(Info, Req, State) -> {ok, Req, State} | {loop, Req, State}| {loop,
> Req, State, hibernate}
>
>
> in case my handler receives a lot of messages, and they come very often,
> does a response of the latter form {loop, Req, State, hibernate} save
> anything? Can hibernating in this case actually hinder performance?
>
> thanks
> Konstantin
>
>
> _______________________________________________
> Extend mailing list
> Extend at lists.ninenines.eu
> http://lists.ninenines.eu:81/listinfo/extend
>


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


From akonsu at gmail.com  Thu Sep 19 13:37:58 2013
From: akonsu at gmail.com (akonsu)
Date: Thu, 19 Sep 2013 07:37:58 -0400
Subject: [99s-extend] cowboy_loop_handler
In-Reply-To: <[email protected]>
References: <CA+eMAwZtgAjDxQTo6VgC729hhog7wONi-o6vnQa21JExgjUGDA@mail.gmail.com>
 <[email protected]>
Message-ID: <CA+eMAwYiCni664CiSRLmS6nuZOv1O7OSn0D8TM3ZHPRSHu6g_A@mail.gmail.com>

my http handler receives messages carrying json parts obtained from a
twitter stream by a separate process. the twitter stream is the stream of
all public tweets, (they call it "firehose") so there are a lot.


2013/9/19 Lo?c Hoguin <essen at ninenines.eu>

> How much is a lot of messages?
>
> Hibernating is a bit more expensive on the CPU but better for saving
> memory. It's generally fine to use except when you have a really busy
> system. Do note that it also means your responses will be slightly slower
> (though that is generally not noticeable).
>
>
> On 09/19/2013 06:30 AM, akonsu wrote:
>
>> Hello,
>>
>> from the documentation:
>>
>> info(Info, Req, State) -> {ok, Req, State} | {loop, Req, State}| {loop,
>> Req, State, hibernate}
>>
>>
>> in case my handler receives a lot of messages, and they come very often,
>> does a response of the latter form {loop, Req, State, hibernate} save
>> anything? Can hibernating in this case actually hinder performance?
>>
>> thanks
>> Konstantin
>>
>>
>> ______________________________**_________________
>> Extend mailing list
>> Extend at lists.ninenines.eu
>> http://lists.ninenines.eu:81/**listinfo/extend<http://lists.ninenines.eu:81/listinfo/extend>
>>
>>
>
> --
> 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/20130919/0a4bcb6c/attachment.html>

From akonsu at gmail.com  Fri Sep 20 20:47:54 2013
From: akonsu at gmail.com (akonsu)
Date: Fri, 20 Sep 2013 14:47:54 -0400
Subject: [99s-extend] timeouts and slow clients in cowboy loop handler
Message-ID: <CA+eMAwaZoY2LMns_SahfQmNLC5Z6j_nB_YuCHapyShHL6CHnQA@mail.gmail.com>

Hi,

I am using loop handler and I stream from it:

info({stream, Part}, Req, S) ->
    ok = cowboy_req:chunk(Part, Req),
    {loop, Req, S, hibernate};

I have two questions:

1. on timeouts cowboy sends 204 No Content. In my case it is not the right
response because I may have already sent some data. Is there a way to send
a custom response?

2. how to check if the client is too slow and is not reading the response
stream fast enough? If this happens, then I need to disconnect.

I can live without 1. but I need to figure out 2. Please help.

thank you!
Konstantin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130920/6e3fa036/attachment.html>

From essen at ninenines.eu  Fri Sep 20 20:50:57 2013
From: essen at ninenines.eu (=?ISO-8859-1?Q?Lo=EFc_Hoguin?=)
Date: Fri, 20 Sep 2013 20:50:57 +0200
Subject: [99s-extend] timeouts and slow clients in cowboy loop handler
In-Reply-To: <CA+eMAwaZoY2LMns_SahfQmNLC5Z6j_nB_YuCHapyShHL6CHnQA@mail.gmail.com>
References: <CA+eMAwaZoY2LMns_SahfQmNLC5Z6j_nB_YuCHapyShHL6CHnQA@mail.gmail.com>
Message-ID: <[email protected]>

Loop handlers close after a while regardless of what you send, it only 
checks what the client sends. The best way for you would be to disable 
that timeout and handle it manually.

As for the second question, I'm still reading the thread on 
erlang-questions but I've seen some good ideas about timestamps so far.

On 09/20/2013 08:47 PM, akonsu wrote:
> Hi,
>
> I am using loop handler and I stream from it:
>
> info({stream, Part}, Req, S) ->
>      ok = cowboy_req:chunk(Part, Req),
>      {loop, Req, S, hibernate};
>
> I have two questions:
>
> 1. on timeouts cowboy sends 204 No Content. In my case it is not the
> right response because I may have already sent some data. Is there a way
> to send a custom response?
>
> 2. how to check if the client is too slow and is not reading the
> response stream fast enough? If this happens, then I need to disconnect.
>
> I can live without 1. but I need to figure out 2. Please help.
>
> thank you!
> Konstantin
>
>
>
> _______________________________________________
> Extend mailing list
> Extend at lists.ninenines.eu
> http://lists.ninenines.eu:81/listinfo/extend
>


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


From akonsu at gmail.com  Fri Sep 20 20:54:56 2013
From: akonsu at gmail.com (akonsu)
Date: Fri, 20 Sep 2013 14:54:56 -0400
Subject: [99s-extend] timeouts and slow clients in cowboy loop handler
In-Reply-To: <[email protected]>
References: <CA+eMAwaZoY2LMns_SahfQmNLC5Z6j_nB_YuCHapyShHL6CHnQA@mail.gmail.com>
 <[email protected]>
Message-ID: <CA+eMAwavLu=E6Ayd2SLKz=OqAn5rfDU=-2USHYcNu-JDSmKhYA@mail.gmail.com>

thanks!

how to implement timeout callback manually? if I had receive then I would
just use timeout clause there, but with the handler I do not know...

I have doubts about validity of my question on the erlang list.  I later
realised that there is no problem receiving messages in my handler from my
upstream process, I can do it fast enough and shove everything to the
response. my real problem is to determine if the http client is reading
fast enough from the response...


2013/9/20 Lo?c Hoguin <essen at ninenines.eu>

> Loop handlers close after a while regardless of what you send, it only
> checks what the client sends. The best way for you would be to disable that
> timeout and handle it manually.
>
> As for the second question, I'm still reading the thread on
> erlang-questions but I've seen some good ideas about timestamps so far.
>
>
> On 09/20/2013 08:47 PM, akonsu wrote:
>
>> Hi,
>>
>> I am using loop handler and I stream from it:
>>
>> info({stream, Part}, Req, S) ->
>>      ok = cowboy_req:chunk(Part, Req),
>>      {loop, Req, S, hibernate};
>>
>> I have two questions:
>>
>> 1. on timeouts cowboy sends 204 No Content. In my case it is not the
>> right response because I may have already sent some data. Is there a way
>> to send a custom response?
>>
>> 2. how to check if the client is too slow and is not reading the
>> response stream fast enough? If this happens, then I need to disconnect.
>>
>> I can live without 1. but I need to figure out 2. Please help.
>>
>> thank you!
>> Konstantin
>>
>>
>>
>> ______________________________**_________________
>> Extend mailing list
>> Extend at lists.ninenines.eu
>> http://lists.ninenines.eu:81/**listinfo/extend<http://lists.ninenines.eu:81/listinfo/extend>
>>
>>
>
> --
> 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/20130920/32352505/attachment.html>

From essen at ninenines.eu  Fri Sep 20 20:56:31 2013
From: essen at ninenines.eu (=?UTF-8?B?TG/Dr2MgSG9ndWlu?=)
Date: Fri, 20 Sep 2013 20:56:31 +0200
Subject: [99s-extend] timeouts and slow clients in cowboy loop handler
In-Reply-To: <CA+eMAwavLu=E6Ayd2SLKz=OqAn5rfDU=-2USHYcNu-JDSmKhYA@mail.gmail.com>
References: <CA+eMAwaZoY2LMns_SahfQmNLC5Z6j_nB_YuCHapyShHL6CHnQA@mail.gmail.com>
 <[email protected]>
 <CA+eMAwavLu=E6Ayd2SLKz=OqAn5rfDU=-2USHYcNu-JDSmKhYA@mail.gmail.com>
Message-ID: <[email protected]>

chunk only returns when the client has received the chunk, so the 
timestamps solution should work.

As for the timeout, you can simply use erlang:send_after or something 
like usual and the message will arrive in info/3.

On 09/20/2013 08:54 PM, akonsu wrote:
> thanks!
>
> how to implement timeout callback manually? if I had receive then I
> would just use timeout clause there, but with the handler I do not know...
>
> I have doubts about validity of my question on the erlang list.  I later
> realised that there is no problem receiving messages in my handler from
> my upstream process, I can do it fast enough and shove everything to the
> response. my real problem is to determine if the http client is reading
> fast enough from the response...
>
>
> 2013/9/20 Lo?c Hoguin <essen at ninenines.eu <mailto:essen at ninenines.eu>>
>
>     Loop handlers close after a while regardless of what you send, it
>     only checks what the client sends. The best way for you would be to
>     disable that timeout and handle it manually.
>
>     As for the second question, I'm still reading the thread on
>     erlang-questions but I've seen some good ideas about timestamps so far.
>
>
>     On 09/20/2013 08:47 PM, akonsu wrote:
>
>         Hi,
>
>         I am using loop handler and I stream from it:
>
>         info({stream, Part}, Req, S) ->
>               ok = cowboy_req:chunk(Part, Req),
>               {loop, Req, S, hibernate};
>
>         I have two questions:
>
>         1. on timeouts cowboy sends 204 No Content. In my case it is not the
>         right response because I may have already sent some data. Is
>         there a way
>         to send a custom response?
>
>         2. how to check if the client is too slow and is not reading the
>         response stream fast enough? If this happens, then I need to
>         disconnect.
>
>         I can live without 1. but I need to figure out 2. Please help.
>
>         thank you!
>         Konstantin
>
>
>
>         _________________________________________________
>         Extend mailing list
>         Extend at lists.ninenines.eu <mailto:Extend at lists.ninenines.eu>
>         http://lists.ninenines.eu:81/__listinfo/extend
>         <http://lists.ninenines.eu:81/listinfo/extend>
>
>
>
>     --
>     Lo?c Hoguin
>     Erlang Cowboy
>     Nine Nines
>     http://ninenines.eu
>
>


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


From akonsu at gmail.com  Fri Sep 20 20:59:46 2013
From: akonsu at gmail.com (akonsu)
Date: Fri, 20 Sep 2013 14:59:46 -0400
Subject: [99s-extend] timeouts and slow clients in cowboy loop handler
In-Reply-To: <[email protected]>
References: <CA+eMAwaZoY2LMns_SahfQmNLC5Z6j_nB_YuCHapyShHL6CHnQA@mail.gmail.com>
 <[email protected]>
 <CA+eMAwavLu=E6Ayd2SLKz=OqAn5rfDU=-2USHYcNu-JDSmKhYA@mail.gmail.com>
 <[email protected]>
Message-ID: <CA+eMAwbGgYLp0W2esA204iZ0sumV2dBBN6ppbqD29ZKow+ts3A@mail.gmail.com>

Understand about chunks being synchronous. that helps me tremendously to
understand how it works.

would you give me a sketchy example of how to use send_after in a loop
handler? (sorry I am new to erlang)

Konstantin


2013/9/20 Lo?c Hoguin <essen at ninenines.eu>

> chunk only returns when the client has received the chunk, so the
> timestamps solution should work.
>
> As for the timeout, you can simply use erlang:send_after or something like
> usual and the message will arrive in info/3.
>
>
> On 09/20/2013 08:54 PM, akonsu wrote:
>
>> thanks!
>>
>> how to implement timeout callback manually? if I had receive then I
>> would just use timeout clause there, but with the handler I do not know...
>>
>> I have doubts about validity of my question on the erlang list.  I later
>> realised that there is no problem receiving messages in my handler from
>> my upstream process, I can do it fast enough and shove everything to the
>> response. my real problem is to determine if the http client is reading
>> fast enough from the response...
>>
>>
>> 2013/9/20 Lo?c Hoguin <essen at ninenines.eu <mailto:essen at ninenines.eu>>
>>
>>
>>     Loop handlers close after a while regardless of what you send, it
>>     only checks what the client sends. The best way for you would be to
>>     disable that timeout and handle it manually.
>>
>>     As for the second question, I'm still reading the thread on
>>     erlang-questions but I've seen some good ideas about timestamps so
>> far.
>>
>>
>>     On 09/20/2013 08:47 PM, akonsu wrote:
>>
>>         Hi,
>>
>>         I am using loop handler and I stream from it:
>>
>>         info({stream, Part}, Req, S) ->
>>               ok = cowboy_req:chunk(Part, Req),
>>               {loop, Req, S, hibernate};
>>
>>         I have two questions:
>>
>>         1. on timeouts cowboy sends 204 No Content. In my case it is not
>> the
>>         right response because I may have already sent some data. Is
>>         there a way
>>         to send a custom response?
>>
>>         2. how to check if the client is too slow and is not reading the
>>         response stream fast enough? If this happens, then I need to
>>         disconnect.
>>
>>         I can live without 1. but I need to figure out 2. Please help.
>>
>>         thank you!
>>         Konstantin
>>
>>
>>
>>         ______________________________**___________________
>>         Extend mailing list
>>         Extend at lists.ninenines.eu <mailto:Extend at lists.**ninenines.eu<Extend at lists.ninenines.eu>
>> >
>>         http://lists.ninenines.eu:81/_**_listinfo/extend<http://lists.ninenines.eu:81/__listinfo/extend>
>>
>>         <http://lists.ninenines.eu:81/**listinfo/extend<http://lists.ninenines.eu:81/listinfo/extend>
>> >
>>
>>
>>
>>     --
>>     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/20130920/4c005881/attachment.html>

From essen at ninenines.eu  Fri Sep 20 21:04:34 2013
From: essen at ninenines.eu (=?UTF-8?B?TG/Dr2MgSG9ndWlu?=)
Date: Fri, 20 Sep 2013 21:04:34 +0200
Subject: [99s-extend] timeouts and slow clients in cowboy loop handler
In-Reply-To: <CA+eMAwbGgYLp0W2esA204iZ0sumV2dBBN6ppbqD29ZKow+ts3A@mail.gmail.com>
References: <CA+eMAwaZoY2LMns_SahfQmNLC5Z6j_nB_YuCHapyShHL6CHnQA@mail.gmail.com>
 <[email protected]>
 <CA+eMAwavLu=E6Ayd2SLKz=OqAn5rfDU=-2USHYcNu-JDSmKhYA@mail.gmail.com>
 <[email protected]>
 <CA+eMAwbGgYLp0W2esA204iZ0sumV2dBBN6ppbqD29ZKow+ts3A@mail.gmail.com>
Message-ID: <[email protected]>

send_after sends an Erlang message to a Pid after N milliseconds. It's 
the same as Pid ! Message, except it's sent later. Send it to self().

But if you're going to use timestamps then you probably don't need this 
timeout, just check the timestamps and close when too slow.

On 09/20/2013 08:59 PM, akonsu wrote:
> Understand about chunks being synchronous. that helps me tremendously to
> understand how it works.
>
> would you give me a sketchy example of how to use send_after in a loop
> handler? (sorry I am new to erlang)
>
> Konstantin
>
>
> 2013/9/20 Lo?c Hoguin <essen at ninenines.eu <mailto:essen at ninenines.eu>>
>
>     chunk only returns when the client has received the chunk, so the
>     timestamps solution should work.
>
>     As for the timeout, you can simply use erlang:send_after or
>     something like usual and the message will arrive in info/3.
>
>
>     On 09/20/2013 08:54 PM, akonsu wrote:
>
>         thanks!
>
>         how to implement timeout callback manually? if I had receive then I
>         would just use timeout clause there, but with the handler I do
>         not know...
>
>         I have doubts about validity of my question on the erlang list.
>           I later
>         realised that there is no problem receiving messages in my
>         handler from
>         my upstream process, I can do it fast enough and shove
>         everything to the
>         response. my real problem is to determine if the http client is
>         reading
>         fast enough from the response...
>
>
>         2013/9/20 Lo?c Hoguin <essen at ninenines.eu
>         <mailto:essen at ninenines.eu> <mailto:essen at ninenines.eu
>         <mailto:essen at ninenines.eu>>>
>
>
>              Loop handlers close after a while regardless of what you
>         send, it
>              only checks what the client sends. The best way for you
>         would be to
>              disable that timeout and handle it manually.
>
>              As for the second question, I'm still reading the thread on
>              erlang-questions but I've seen some good ideas about
>         timestamps so far.
>
>
>              On 09/20/2013 08:47 PM, akonsu wrote:
>
>                  Hi,
>
>                  I am using loop handler and I stream from it:
>
>                  info({stream, Part}, Req, S) ->
>                        ok = cowboy_req:chunk(Part, Req),
>                        {loop, Req, S, hibernate};
>
>                  I have two questions:
>
>                  1. on timeouts cowboy sends 204 No Content. In my case
>         it is not the
>                  right response because I may have already sent some
>         data. Is
>                  there a way
>                  to send a custom response?
>
>                  2. how to check if the client is too slow and is not
>         reading the
>                  response stream fast enough? If this happens, then I
>         need to
>                  disconnect.
>
>                  I can live without 1. but I need to figure out 2.
>         Please help.
>
>                  thank you!
>                  Konstantin
>
>
>
>                  ___________________________________________________
>                  Extend mailing list
>         Extend at lists.ninenines.eu <mailto:Extend at lists.ninenines.eu>
>         <mailto:Extend at lists.__ninenines.eu
>         <mailto:Extend at lists.ninenines.eu>>
>         http://lists.ninenines.eu:81/____listinfo/extend
>         <http://lists.ninenines.eu:81/__listinfo/extend>
>
>                  <http://lists.ninenines.eu:81/__listinfo/extend
>         <http://lists.ninenines.eu:81/listinfo/extend>>
>
>
>
>              --
>              Lo?c Hoguin
>              Erlang Cowboy
>              Nine Nines
>         http://ninenines.eu
>
>
>
>
>     --
>     Lo?c Hoguin
>
>     Erlang Cowboy
>     Nine Nines
>     http://ninenines.eu
>
>


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


From mrhegarty at gmail.com  Sun Sep 22 22:55:31 2013
From: mrhegarty at gmail.com (Matthew Hegarty)
Date: Sun, 22 Sep 2013 21:55:31 +0100
Subject: [99s-extend] Cowboy helloworld make fails with missing_beam_file
	(hipe)
Message-ID: <CAAcKVnkWZ_CHTCu7J0N16g4DqWPEnBriOgYN1A2r05Xom92mCQ@mail.gmail.com>

hi
Just starting out so I've got latest versions of apps.
in cowboy/examples/hello_world, running make fails with:
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130922/77e355ff/attachment.html>

From mrhegarty at gmail.com  Sun Sep 22 22:59:37 2013
From: mrhegarty at gmail.com (Matthew Hegarty)
Date: Sun, 22 Sep 2013 21:59:37 +0100
Subject: [99s-extend] Cowboy helloworld make fails with
	missing_beam_file (hipe)
In-Reply-To: <CAAcKVnkWZ_CHTCu7J0N16g4DqWPEnBriOgYN1A2r05Xom92mCQ@mail.gmail.com>
References: <CAAcKVnkWZ_CHTCu7J0N16g4DqWPEnBriOgYN1A2r05Xom92mCQ@mail.gmail.com>
Message-ID: <CAAcKVnknx8gBQZSL-QUOTUVin=a0M+KAEwNd84HMOO1C3iSyZQ@mail.gmail.com>

hi
Just starting out so I'm trying to run cowboy's helloworld
in cowboy/examples/hello_world, running make fails with:

===> Provider (rlx_prv_discover) failed with: {error,
                                                      {rlx_app_discovery,
                                                       [{missing_beam_file,
                                                         hipe,

<<"/usr/local/lib/erlang/lib/hipe-3.10/ebin/hipe.beam">>},
                                                        {missing_beam_file,
                                                         hipe,

<<"/usr/local/lib/erlang/lib/hipe-3.10.1/ebin/hipe.beam">>}]}}

there is no hipe.beam in /usr/local/lib/erlang/lib/hipe-3.10.1/ebin/, it is
in /usr/local/lib/erlang/lib/hipe-3.10.2.1/ebin/hipe.beam.
I've tried passing the correct dir to relx using --lib-dir but I still get
the same error.

Any ideas what's going wrong?

erl: Erlang R16B02 (erts-5.10.3)
relx: 0.0.0+build.275.refca03701
rebar: rebar 2.1.0-pre R16B02 20130922_191744 git 2.1.0-pre-46-g78fa8fc


On 22 September 2013 21:55, Matthew Hegarty <mrhegarty at gmail.com> wrote:

> hi
> Just starting out so I've got latest versions of apps.
> in cowboy/examples/hello_world, running make fails with:
>
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130922/6e925e9d/attachment.html>

From lloyd at writersglen.com  Mon Sep 23 01:57:41 2013
From: lloyd at writersglen.com (lloyd at writersglen.com)
Date: Sun, 22 Sep 2013 19:57:41 -0400 (EDT)
Subject: [99s-extend] Cowboy: Having problems with Getting Started
Message-ID: <[email protected]>

Hello,

Forgive my ignorance, but I'm having problems with the Getting Started chapter of the Cowboy Guide.

Near the end I can download relx just fine. But there seems to be a hidden assumption shared, perhaps, by all Erlang cowboys but outside my understanding.

When I get to $./relx, the following is returned:

lloyd at Reliance:~/hello_erlang/relx$ ./relx
===> Starting relx build process ...
===> Resolving OTP Applications from directories:
          /home/lloyd/hello_erlang/relx/ebin
          /home/lloyd/hello_erlang/relx/deps
          /usr/lib/erlang/lib

===> Resolving available OTP Releases from directories:
          /home/lloyd/hello_erlang/relx/ebin
          /home/lloyd/hello_erlang/relx/deps
          /usr/lib/erlang/lib

Failed to solve release:
 Dependency hello_erlang is specified as a dependency but is not reachable by the system.

I've added all variations to .erlang that I can think of to put hello_erlang into the code path, but none seem to work. Can some kind soul let me in on the secret?

Many thanks,

Lloyd

*********************************************
My books:

THE GOSPEL OF ASHES
http://thegospelofashes.com

Strength is not enough. Do they have the courage 
and the cunning? Can they survive long enough to 
save the lives of millions?  

FREEIN' PANCHO
http://freeinpancho.com

A community of misfits help a troubled boy find his way 

AYA TAKEO
http://ayatakeo.com

Star-crossed love, war and power in an alternative 
universe

Available through Amazon or by request from your 
favorite bookstore


**********************************************



From essen at ninenines.eu  Wed Sep 25 17:09:16 2013
From: essen at ninenines.eu (=?ISO-8859-1?Q?Lo=EFc_Hoguin?=)
Date: Wed, 25 Sep 2013 17:09:16 +0200
Subject: [99s-extend] Cowboy helloworld make fails with
 missing_beam_file (hipe)
In-Reply-To: <CAAcKVnknx8gBQZSL-QUOTUVin=a0M+KAEwNd84HMOO1C3iSyZQ@mail.gmail.com>
References: <CAAcKVnkWZ_CHTCu7J0N16g4DqWPEnBriOgYN1A2r05Xom92mCQ@mail.gmail.com>
 <CAAcKVnknx8gBQZSL-QUOTUVin=a0M+KAEwNd84HMOO1C3iSyZQ@mail.gmail.com>
Message-ID: <[email protected]>

Why does it look for hipe at all to begin with?

I'll ping tristan about it.

On 09/22/2013 10:59 PM, Matthew Hegarty wrote:
> hi
> Just starting out so I'm trying to run cowboy's helloworld
> in cowboy/examples/hello_world, running make fails with:
>
> ===> Provider (rlx_prv_discover) failed with: {error,
>                                                        {rlx_app_discovery,
>                                                         [{missing_beam_file,
>                                                           hipe,
>
> <<"/usr/local/lib/erlang/lib/hipe-3.10/ebin/hipe.beam">>},
>                                                          {missing_beam_file,
>                                                           hipe,
>
> <<"/usr/local/lib/erlang/lib/hipe-3.10.1/ebin/hipe.beam">>}]}}
>
> there is no hipe.beam in /usr/local/lib/erlang/lib/hipe-3.10.1/ebin/, it
> is in /usr/local/lib/erlang/lib/hipe-3.10.2.1/ebin/hipe.beam.
> I've tried passing the correct dir to relx using --lib-dir but I still
> get the same error.
>
> Any ideas what's going wrong?
>
> erl: Erlang R16B02 (erts-5.10.3)
> relx: 0.0.0+build.275.refca03701
> rebar: rebar 2.1.0-pre R16B02 20130922_191744 git 2.1.0-pre-46-g78fa8fc
>
>
> On 22 September 2013 21:55, Matthew Hegarty <mrhegarty at gmail.com
> <mailto:mrhegarty at gmail.com>> wrote:
>
>     hi
>     Just starting out so I've got latest versions of apps.
>     in cowboy/examples/hello_world, running make fails with:
>
>
>
>
>
>
> _______________________________________________
> Extend mailing list
> Extend at lists.ninenines.eu
> http://lists.ninenines.eu:81/listinfo/extend
>


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


From essen at ninenines.eu  Wed Sep 25 17:10:01 2013
From: essen at ninenines.eu (=?ISO-8859-1?Q?Lo=EFc_Hoguin?=)
Date: Wed, 25 Sep 2013 17:10:01 +0200
Subject: [99s-extend] Cowboy: Having problems with Getting Started
In-Reply-To: <[email protected]>
References: <[email protected]>
Message-ID: <[email protected]>

On 09/23/2013 01:57 AM, lloyd at writersglen.com wrote:
> Hello,
>
> Forgive my ignorance, but I'm having problems with the Getting Started chapter of the Cowboy Guide.
>
> Near the end I can download relx just fine. But there seems to be a hidden assumption shared, perhaps, by all Erlang cowboys but outside my understanding.
>
> When I get to $./relx, the following is returned:
>
> lloyd at Reliance:~/hello_erlang/relx$ ./relx

You're in hello_erlang/relx, I'm guessing you want to do that in 
hello_erlang/ directly.

> ===> Starting relx build process ...
> ===> Resolving OTP Applications from directories:
>            /home/lloyd/hello_erlang/relx/ebin
>            /home/lloyd/hello_erlang/relx/deps
>            /usr/lib/erlang/lib
>
> ===> Resolving available OTP Releases from directories:
>            /home/lloyd/hello_erlang/relx/ebin
>            /home/lloyd/hello_erlang/relx/deps
>            /usr/lib/erlang/lib
>
> Failed to solve release:
>   Dependency hello_erlang is specified as a dependency but is not reachable by the system.
>
> I've added all variations to .erlang that I can think of to put hello_erlang into the code path, but none seem to work. Can some kind soul let me in on the secret?
>
> Many thanks,
>
> Lloyd
>
> *********************************************
> My books:
>
> THE GOSPEL OF ASHES
> http://thegospelofashes.com
>
> Strength is not enough. Do they have the courage
> and the cunning? Can they survive long enough to
> save the lives of millions?
>
> FREEIN' PANCHO
> http://freeinpancho.com
>
> A community of misfits help a troubled boy find his way
>
> AYA TAKEO
> http://ayatakeo.com
>
> Star-crossed love, war and power in an alternative
> universe
>
> Available through Amazon or by request from your
> favorite bookstore
>
>
> **********************************************
>
> _______________________________________________
> Extend mailing list
> Extend at lists.ninenines.eu
> http://lists.ninenines.eu:81/listinfo/extend
>


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


From tristan.sloughter at gmail.com  Wed Sep 25 18:25:04 2013
From: tristan.sloughter at gmail.com (Tristan Sloughter)
Date: Wed, 25 Sep 2013 09:25:04 -0700
Subject: [99s-extend] Cowboy helloworld make fails with
 missing_beam_file (hipe)
In-Reply-To: <[email protected]>
References: <CAAcKVnkWZ_CHTCu7J0N16g4DqWPEnBriOgYN1A2r05Xom92mCQ@mail.gmail.com>
 <CAAcKVnknx8gBQZSL-QUOTUVin=a0M+KAEwNd84HMOO1C3iSyZQ@mail.gmail.com>
 <[email protected]>
Message-ID: <[email protected]>

I ran into the same thing. I assume you installed Erlang from the Erlang
Solutions repo?

Install erlang-hipe package. Or remove
/usr/local/lib/erlang/lib/hipe-3.10.2.1 entirely.

Their packages install a broken hipe app, missing lots of beams, for
some reason. But if you install the hipe package it'll install what is
missing. I told them about this but I haven't heard back.

-- 
  Tristan Sloughter
  tsloughter at fastmail.fm

On Wed, Sep 25, 2013, at 08:09 AM, Lo?c Hoguin wrote:
> Why does it look for hipe at all to begin with?
> 
> I'll ping tristan about it.
> 
> On 09/22/2013 10:59 PM, Matthew Hegarty wrote:
> > hi
> > Just starting out so I'm trying to run cowboy's helloworld
> > in cowboy/examples/hello_world, running make fails with:
> >
> > ===> Provider (rlx_prv_discover) failed with: {error,
> >                                                        {rlx_app_discovery,
> >                                                         [{missing_beam_file,
> >                                                           hipe,
> >
> > <<"/usr/local/lib/erlang/lib/hipe-3.10/ebin/hipe.beam">>},
> >                                                          {missing_beam_file,
> >                                                           hipe,
> >
> > <<"/usr/local/lib/erlang/lib/hipe-3.10.1/ebin/hipe.beam">>}]}}
> >
> > there is no hipe.beam in /usr/local/lib/erlang/lib/hipe-3.10.1/ebin/, it
> > is in /usr/local/lib/erlang/lib/hipe-3.10.2.1/ebin/hipe.beam.
> > I've tried passing the correct dir to relx using --lib-dir but I still
> > get the same error.
> >
> > Any ideas what's going wrong?
> >
> > erl: Erlang R16B02 (erts-5.10.3)
> > relx: 0.0.0+build.275.refca03701
> > rebar: rebar 2.1.0-pre R16B02 20130922_191744 git 2.1.0-pre-46-g78fa8fc
> >
> >
> > On 22 September 2013 21:55, Matthew Hegarty <mrhegarty at gmail.com
> > <mailto:mrhegarty at gmail.com>> wrote:
> >
> >     hi
> >     Just starting out so I've got latest versions of apps.
> >     in cowboy/examples/hello_world, running make fails with:
> >
> >
> >
> >
> >
> >
> > _______________________________________________
> > Extend mailing list
> > Extend at lists.ninenines.eu
> > http://lists.ninenines.eu:81/listinfo/extend
> >
> 
> 
> -- 
> 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


-- 
  Tristan Sloughter
  tristan.sloughter at gmail.com


From essen at ninenines.eu  Wed Sep 25 18:27:58 2013
From: essen at ninenines.eu (=?ISO-8859-1?Q?Lo=EFc_Hoguin?=)
Date: Wed, 25 Sep 2013 18:27:58 +0200
Subject: [99s-extend] Mailing lists maintenance 28th of September
Message-ID: <[email protected]>

Hello,

Just a heads up, I will be moving the mailing lists to a new server 
Saturday. As a result they might be unavailable for a couple hours/days 
depending on how well I manage to do it.

Thanks for your understanding!

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


From mrhegarty at gmail.com  Thu Sep 26 21:03:06 2013
From: mrhegarty at gmail.com (Matthew Hegarty)
Date: Thu, 26 Sep 2013 20:03:06 +0100
Subject: [99s-extend] Cowboy helloworld make fails with
	missing_beam_file (hipe)
In-Reply-To: <[email protected]>
References: <CAAcKVnkWZ_CHTCu7J0N16g4DqWPEnBriOgYN1A2r05Xom92mCQ@mail.gmail.com>
 <CAAcKVnknx8gBQZSL-QUOTUVin=a0M+KAEwNd84HMOO1C3iSyZQ@mail.gmail.com>
 <[email protected]>
 <[email protected]>
Message-ID: <CAAcKVnkTmqkvxq8r6ufAAgkqoLrzjO_rVENuk9YzZNd-mmnM6Q@mail.gmail.com>

hi
I compiled Erlang from source (downloaded from erlang.org)


On 25 September 2013 17:25, Tristan Sloughter
<tristan.sloughter at gmail.com>wrote:

> I ran into the same thing. I assume you installed Erlang from the Erlang
> Solutions repo?
>
> Install erlang-hipe package. Or remove
> /usr/local/lib/erlang/lib/hipe-3.10.2.1 entirely.
>
> Their packages install a broken hipe app, missing lots of beams, for
> some reason. But if you install the hipe package it'll install what is
> missing. I told them about this but I haven't heard back.
>
> --
>   Tristan Sloughter
>   tsloughter at fastmail.fm
>
> On Wed, Sep 25, 2013, at 08:09 AM, Lo?c Hoguin wrote:
> > Why does it look for hipe at all to begin with?
> >
> > I'll ping tristan about it.
> >
> > On 09/22/2013 10:59 PM, Matthew Hegarty wrote:
> > > hi
> > > Just starting out so I'm trying to run cowboy's helloworld
> > > in cowboy/examples/hello_world, running make fails with:
> > >
> > > ===> Provider (rlx_prv_discover) failed with: {error,
> > >
>  {rlx_app_discovery,
> > >
> [{missing_beam_file,
> > >                                                           hipe,
> > >
> > > <<"/usr/local/lib/erlang/lib/hipe-3.10/ebin/hipe.beam">>},
> > >
>  {missing_beam_file,
> > >                                                           hipe,
> > >
> > > <<"/usr/local/lib/erlang/lib/hipe-3.10.1/ebin/hipe.beam">>}]}}
> > >
> > > there is no hipe.beam in /usr/local/lib/erlang/lib/hipe-3.10.1/ebin/,
> it
> > > is in /usr/local/lib/erlang/lib/hipe-3.10.2.1/ebin/hipe.beam.
> > > I've tried passing the correct dir to relx using --lib-dir but I still
> > > get the same error.
> > >
> > > Any ideas what's going wrong?
> > >
> > > erl: Erlang R16B02 (erts-5.10.3)
> > > relx: 0.0.0+build.275.refca03701
> > > rebar: rebar 2.1.0-pre R16B02 20130922_191744 git 2.1.0-pre-46-g78fa8fc
> > >
> > >
> > > On 22 September 2013 21:55, Matthew Hegarty <mrhegarty at gmail.com
> > > <mailto:mrhegarty at gmail.com>> wrote:
> > >
> > >     hi
> > >     Just starting out so I've got latest versions of apps.
> > >     in cowboy/examples/hello_world, running make fails with:
> > >
> > >
> > >
> > >
> > >
> > >
> > > _______________________________________________
> > > Extend mailing list
> > > Extend at lists.ninenines.eu
> > > http://lists.ninenines.eu:81/listinfo/extend
> > >
> >
> >
> > --
> > 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
>
>
> --
>   Tristan Sloughter
>   tristan.sloughter at gmail.com
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130926/d34b33e3/attachment.html>

From tristan.sloughter at gmail.com  Thu Sep 26 21:04:00 2013
From: tristan.sloughter at gmail.com (Tristan Sloughter)
Date: Thu, 26 Sep 2013 12:04:00 -0700
Subject: [99s-extend] Cowboy helloworld make fails with
 missing_beam_file (hipe)
In-Reply-To: <CAAcKVnkTmqkvxq8r6ufAAgkqoLrzjO_rVENuk9YzZNd-mmnM6Q@mail.gmail.com>
References: <CAAcKVnkWZ_CHTCu7J0N16g4DqWPEnBriOgYN1A2r05Xom92mCQ@mail.gmail.com>
 <CAAcKVnknx8gBQZSL-QUOTUVin=a0M+KAEwNd84HMOO1C3iSyZQ@mail.gmail.com>
 <[email protected]>
 <[email protected]>
 <CAAcKVnkTmqkvxq8r6ufAAgkqoLrzjO_rVENuk9YzZNd-mmnM6Q@mail.gmail.com>
Message-ID: <[email protected]>

Did you enable hipe when you compiled? Does
/usr/local/lib/erlang/lib/hipe-3.10.2.1/ebin/hipe.beam exist?



--
Tristan Sloughter
tristan.sloughter at gmail.com





On Thu, Sep 26, 2013, at 12:03 PM, Matthew Hegarty wrote:

hi

I compiled Erlang from source (downloaded from [1]erlang.org)



On 25 September 2013 17:25, Tristan Sloughter
<[2]tristan.sloughter at gmail.com> wrote:

I ran into the same thing. I assume you installed Erlang from the
Erlang

Solutions repo?



Install erlang-hipe package. Or remove

/usr/local/lib/erlang/lib/hipe-3.10.2.1 entirely.



Their packages install a broken hipe app, missing lots of beams, for

some reason. But if you install the hipe package it'll install what is

missing. I told them about this but I haven't heard back.



--

  Tristan Sloughter

  [3]tsloughter at fastmail.fm




On Wed, Sep 25, 2013, at 08:09 AM, Lo?c Hoguin wrote:
> Why does it look for hipe at all to begin with?
>
> I'll ping tristan about it.
>
> On 09/22/2013 10:59 PM, Matthew Hegarty wrote:
> > hi
> > Just starting out so I'm trying to run cowboy's helloworld
> > in cowboy/examples/hello_world, running make fails with:
> >
> > ===> Provider (rlx_prv_discover) failed with: {error,
> >
{rlx_app_discovery,
> >
[{missing_beam_file,
> >                                                           hipe,
> >
> > <<"/usr/local/lib/erlang/lib/hipe-3.10/ebin/hipe.beam">>},
> >
{missing_beam_file,
> >                                                           hipe,
> >
> > <<"/usr/local/lib/erlang/lib/hipe-3.10.1/ebin/hipe.beam">>}]}}
> >
> > there is no hipe.beam in
/usr/local/lib/erlang/lib/hipe-3.10.1/ebin/, it
> > is in /usr/local/lib/erlang/lib/hipe-3.10.2.1/ebin/hipe.beam.
> > I've tried passing the correct dir to relx using --lib-dir but I
still
> > get the same error.
> >
> > Any ideas what's going wrong?
> >
> > erl: Erlang R16B02 (erts-5.10.3)
> > relx: 0.0.0+build.275.refca03701
> > rebar: rebar 2.1.0-pre R16B02 20130922_191744 git
2.1.0-pre-46-g78fa8fc
> >
> >
> > On 22 September 2013 21:55, Matthew Hegarty <[4]mrhegarty at gmail.com
> > <mailto:[5]mrhegarty at gmail.com>> wrote:
> >
> >     hi
> >     Just starting out so I've got latest versions of apps.
> >     in cowboy/examples/hello_world, running make fails with:
> >
> >
> >
> >
> >
> >
> > _______________________________________________
> > Extend mailing list
> > [6]Extend at lists.ninenines.eu
> > [7]http://lists.ninenines.eu:81/listinfo/extend
> >
>
>
> --

> Lo?c Hoguin



> Erlang Cowboy

> Nine Nines

> [8]http://ninenines.eu

> _______________________________________________
> Extend mailing list
> [9]Extend at lists.ninenines.eu
> [10]http://lists.ninenines.eu:81/listinfo/extend


--

  Tristan Sloughter

  [11]tristan.sloughter at gmail.com

References

1. http://erlang.org/
2. mailto:tristan.sloughter at gmail.com
3. mailto:tsloughter at fastmail.fm
4. mailto:mrhegarty at gmail.com
5. mailto:mrhegarty at gmail.com
6. mailto:Extend at lists.ninenines.eu
7. http://lists.ninenines.eu:81/listinfo/extend
8. http://ninenines.eu/
9. mailto:Extend at lists.ninenines.eu
  10. http://lists.ninenines.eu:81/listinfo/extend
  11. mailto:tristan.sloughter at gmail.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130926/28d38e59/attachment.html>

From mrhegarty at gmail.com  Thu Sep 26 22:36:03 2013
From: mrhegarty at gmail.com (Matthew Hegarty)
Date: Thu, 26 Sep 2013 21:36:03 +0100
Subject: [99s-extend] Cowboy helloworld make fails with
	missing_beam_file (hipe)
In-Reply-To: <[email protected]>
References: <CAAcKVnkWZ_CHTCu7J0N16g4DqWPEnBriOgYN1A2r05Xom92mCQ@mail.gmail.com>
 <CAAcKVnknx8gBQZSL-QUOTUVin=a0M+KAEwNd84HMOO1C3iSyZQ@mail.gmail.com>
 <[email protected]>
 <[email protected]>
 <CAAcKVnkTmqkvxq8r6ufAAgkqoLrzjO_rVENuk9YzZNd-mmnM6Q@mail.gmail.com>
 <[email protected]>
Message-ID: <CAAcKVn=wMD6crYFEHXB=BcO8HhOJHK5Rhk7LAAzJVBNDU1+tYw@mail.gmail.com>

yes it exists.  I believe hipe is enabled by default when I compile.

however there is no

 /usr/local/lib/erlang/lib/hipe-3.10/ebin/hipe.beam
 /usr/local/lib/erlang/lib/hipe-3.10.1/ebin/hipe.beam

which is what relx is apparently looking for.
Do you know where does relx get these paths from?


On 26 September 2013 20:04, Tristan Sloughter
<tristan.sloughter at gmail.com>wrote:

> **
> Did you enable hipe when you compiled? Does
> /usr/local/lib/erlang/lib/hipe-3.10.2.1/ebin/hipe.beam exist?
>
> --
>  Tristan Sloughter
>  tristan.sloughter at gmail.com
>
>
>
> On Thu, Sep 26, 2013, at 12:03 PM, Matthew Hegarty wrote:
>
> hi
> I compiled Erlang from source (downloaded from erlang.org)
>
>
> On 25 September 2013 17:25, Tristan Sloughter <tristan.sloughter at gmail.com
> > wrote:
>
>
> I ran into the same thing. I assume you installed Erlang from the Erlang
>  Solutions repo?
>
>  Install erlang-hipe package. Or remove
>  /usr/local/lib/erlang/lib/hipe-3.10.2.1 entirely.
>
>  Their packages install a broken hipe app, missing lots of beams, for
>  some reason. But if you install the hipe package it'll install what is
>  missing. I told them about this but I haven't heard back.
>
>  --
>    Tristan Sloughter
>    tsloughter at fastmail.fm
>
>
>  On Wed, Sep 25, 2013, at 08:09 AM, Lo?c Hoguin wrote:
>  > Why does it look for hipe at all to begin with?
>  >
>  > I'll ping tristan about it.
>  >
>  > On 09/22/2013 10:59 PM, Matthew Hegarty wrote:
>  > > hi
>  > > Just starting out so I'm trying to run cowboy's helloworld
>  > > in cowboy/examples/hello_world, running make fails with:
>  > >
>  > > ===> Provider (rlx_prv_discover) failed with: {error,
>  > >
>  {rlx_app_discovery,
>  > >
> [{missing_beam_file,
>  > >                                                           hipe,
>  > >
>  > > <<"/usr/local/lib/erlang/lib/hipe-3.10/ebin/hipe.beam">>},
>  > >
>  {missing_beam_file,
>  > >                                                           hipe,
>  > >
>  > > <<"/usr/local/lib/erlang/lib/hipe-3.10.1/ebin/hipe.beam">>}]}}
>  > >
>  > > there is no hipe.beam in /usr/local/lib/erlang/lib/hipe-3.10.1/ebin/,
> it
>  > > is in /usr/local/lib/erlang/lib/hipe-3.10.2.1/ebin/hipe.beam.
>  > > I've tried passing the correct dir to relx using --lib-dir but I still
>  > > get the same error.
>  > >
>  > > Any ideas what's going wrong?
>  > >
>  > > erl: Erlang R16B02 (erts-5.10.3)
>  > > relx: 0.0.0+build.275.refca03701
>  > > rebar: rebar 2.1.0-pre R16B02 20130922_191744 git
> 2.1.0-pre-46-g78fa8fc
>  > >
>  > >
>  > > On 22 September 2013 21:55, Matthew Hegarty <mrhegarty at gmail.com
>  > > <mailto:mrhegarty at gmail.com>> wrote:
>  > >
>  > >     hi
>  > >     Just starting out so I've got latest versions of apps.
>  > >     in cowboy/examples/hello_world, running make fails with:
>  > >
>  > >
>  > >
>  > >
>  > >
>  > >
>  > > _______________________________________________
>  > > Extend mailing list
>  > > Extend at lists.ninenines.eu
>  > > http://lists.ninenines.eu:81/listinfo/extend
>  > >
>  >
>  >
>  > --
>  > 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
>
>
>  --
>    Tristan Sloughter
>    tristan.sloughter at gmail.com
>
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130926/3a77fe04/attachment.html>

From mrhegarty at gmail.com  Sat Sep 28 22:41:16 2013
From: mrhegarty at gmail.com (Matthew Hegarty)
Date: Sat, 28 Sep 2013 21:41:16 +0100
Subject: [99s-extend] Cowboy helloworld make fails with
	missing_beam_file (hipe)
In-Reply-To: <CAAcKVn=wMD6crYFEHXB=BcO8HhOJHK5Rhk7LAAzJVBNDU1+tYw@mail.gmail.com>
References: <CAAcKVnkWZ_CHTCu7J0N16g4DqWPEnBriOgYN1A2r05Xom92mCQ@mail.gmail.com>
 <CAAcKVnknx8gBQZSL-QUOTUVin=a0M+KAEwNd84HMOO1C3iSyZQ@mail.gmail.com>
 <[email protected]>
 <[email protected]>
 <CAAcKVnkTmqkvxq8r6ufAAgkqoLrzjO_rVENuk9YzZNd-mmnM6Q@mail.gmail.com>
 <[email protected]>
 <CAAcKVn=wMD6crYFEHXB=BcO8HhOJHK5Rhk7LAAzJVBNDU1+tYw@mail.gmail.com>
Message-ID: <CAAcKVn=K=7Pv+J_Qx+dJqRH=xcDdhGPws2MmsuwpROVGU_1Axg@mail.gmail.com>

Got it to work.  I apparently had a few versions of hipe in my Erlang lib
dir:

$ /usr/local/lib/erlang/lib $ ll -ld hipe*
drwxr-xr-x  9 root root 4096 Feb 11  2013 hipe-3.10/
drwxr-xr-x  9 root root 4096 Mar  1  2013 hipe-3.10.1/
drwxr-xr-x 10 root root 4096 Jul  2 11:31 hipe-3.10.2/
drwxr-xr-x 10 root root 4096 Sep 21 17:36 hipe-3.10.2.1/

They must have come from previous erlang installations (compilation from
source).  The solution was to remove the older versions and leave only the
latest one.  Maybe relx should be able to handle this?

thanks for the responses

Matt


On 26 September 2013 21:36, Matthew Hegarty <mrhegarty at gmail.com> wrote:

> yes it exists.  I believe hipe is enabled by default when I compile.
>
> however there is no
>
>  /usr/local/lib/erlang/lib/hipe-3.10/ebin/hipe.beam
>  /usr/local/lib/erlang/lib/hipe-3.10.1/ebin/hipe.beam
>
> which is what relx is apparently looking for.
> Do you know where does relx get these paths from?
>
>
> On 26 September 2013 20:04, Tristan Sloughter <tristan.sloughter at gmail.com
> > wrote:
>
>> **
>> Did you enable hipe when you compiled? Does
>> /usr/local/lib/erlang/lib/hipe-3.10.2.1/ebin/hipe.beam exist?
>>
>> --
>>  Tristan Sloughter
>>  tristan.sloughter at gmail.com
>>
>>
>>
>> On Thu, Sep 26, 2013, at 12:03 PM, Matthew Hegarty wrote:
>>
>> hi
>> I compiled Erlang from source (downloaded from erlang.org)
>>
>>
>> On 25 September 2013 17:25, Tristan Sloughter <
>> tristan.sloughter at gmail.com> wrote:
>>
>>
>> I ran into the same thing. I assume you installed Erlang from the Erlang
>>  Solutions repo?
>>
>>  Install erlang-hipe package. Or remove
>>  /usr/local/lib/erlang/lib/hipe-3.10.2.1 entirely.
>>
>>  Their packages install a broken hipe app, missing lots of beams, for
>>  some reason. But if you install the hipe package it'll install what is
>>  missing. I told them about this but I haven't heard back.
>>
>>  --
>>    Tristan Sloughter
>>    tsloughter at fastmail.fm
>>
>>
>>  On Wed, Sep 25, 2013, at 08:09 AM, Lo?c Hoguin wrote:
>>  > Why does it look for hipe at all to begin with?
>>  >
>>  > I'll ping tristan about it.
>>  >
>>  > On 09/22/2013 10:59 PM, Matthew Hegarty wrote:
>>  > > hi
>>  > > Just starting out so I'm trying to run cowboy's helloworld
>>  > > in cowboy/examples/hello_world, running make fails with:
>>  > >
>>  > > ===> Provider (rlx_prv_discover) failed with: {error,
>>  > >
>>  {rlx_app_discovery,
>>  > >
>> [{missing_beam_file,
>>  > >                                                           hipe,
>>  > >
>>  > > <<"/usr/local/lib/erlang/lib/hipe-3.10/ebin/hipe.beam">>},
>>  > >
>>  {missing_beam_file,
>>  > >                                                           hipe,
>>  > >
>>  > > <<"/usr/local/lib/erlang/lib/hipe-3.10.1/ebin/hipe.beam">>}]}}
>>  > >
>>  > > there is no hipe.beam in
>> /usr/local/lib/erlang/lib/hipe-3.10.1/ebin/, it
>>  > > is in /usr/local/lib/erlang/lib/hipe-3.10.2.1/ebin/hipe.beam.
>>  > > I've tried passing the correct dir to relx using --lib-dir but I
>> still
>>  > > get the same error.
>>  > >
>>  > > Any ideas what's going wrong?
>>  > >
>>  > > erl: Erlang R16B02 (erts-5.10.3)
>>  > > relx: 0.0.0+build.275.refca03701
>>  > > rebar: rebar 2.1.0-pre R16B02 20130922_191744 git
>> 2.1.0-pre-46-g78fa8fc
>>  > >
>>  > >
>>  > > On 22 September 2013 21:55, Matthew Hegarty <mrhegarty at gmail.com
>>  > > <mailto:mrhegarty at gmail.com>> wrote:
>>  > >
>>  > >     hi
>>  > >     Just starting out so I've got latest versions of apps.
>>  > >     in cowboy/examples/hello_world, running make fails with:
>>  > >
>>  > >
>>  > >
>>  > >
>>  > >
>>  > >
>>  > > _______________________________________________
>>  > > Extend mailing list
>>  > > Extend at lists.ninenines.eu
>>  > > http://lists.ninenines.eu:81/listinfo/extend
>>  > >
>>  >
>>  >
>>  > --
>>  > 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
>>
>>
>>  --
>>    Tristan Sloughter
>>    tristan.sloughter at gmail.com
>>
>>
>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130928/b1333ac2/attachment.html>

From tristan.sloughter at gmail.com  Sat Sep 28 22:43:25 2013
From: tristan.sloughter at gmail.com (Tristan Sloughter)
Date: Sat, 28 Sep 2013 13:43:25 -0700
Subject: [99s-extend] Cowboy helloworld make fails with
 missing_beam_file (hipe)
In-Reply-To: <CAAcKVn=K=7Pv+J_Qx+dJqRH=xcDdhGPws2MmsuwpROVGU_1Axg@mail.gmail.com>
References: <CAAcKVnkWZ_CHTCu7J0N16g4DqWPEnBriOgYN1A2r05Xom92mCQ@mail.gmail.com>
 <CAAcKVnknx8gBQZSL-QUOTUVin=a0M+KAEwNd84HMOO1C3iSyZQ@mail.gmail.com>
 <[email protected]>
 <[email protected]>
 <CAAcKVnkTmqkvxq8r6ufAAgkqoLrzjO_rVENuk9YzZNd-mmnM6Q@mail.gmail.com>
 <[email protected]>
 <CAAcKVn=wMD6crYFEHXB=BcO8HhOJHK5Rhk7LAAzJVBNDU1+tYw@mail.gmail.com>
 <CAAcKVn=K=7Pv+J_Qx+dJqRH=xcDdhGPws2MmsuwpROVGU_1Axg@mail.gmail.com>
Message-ID: <[email protected]>

Yea, since I doubt the OTP team (or anyone) will fix the fact that it
installs a broken hipe we've decided to just warn on broken apps during
the discovery phase. So it'll only fail if the broken app is also
suppose to be part of the release.



Finishing up the relx patch right now.



--
Tristan Sloughter
tristan.sloughter at gmail.com





On Sat, Sep 28, 2013, at 01:41 PM, Matthew Hegarty wrote:

Got it to work.  I apparently had a few versions of hipe in my Erlang
lib dir:

$ /usr/local/lib/erlang/lib $ ll -ld hipe*
drwxr-xr-x  9 root root 4096 Feb 11  2013 hipe-3.10/
drwxr-xr-x  9 root root 4096 Mar  1  2013 hipe-3.10.1/
drwxr-xr-x 10 root root 4096 Jul  2 11:31 hipe-3.10.2/
drwxr-xr-x 10 root root 4096 Sep 21 17:36 hipe-3.10.2.1/

They must have come from previous erlang installations (compilation
from source).  The solution was to remove the older versions and leave
only the latest one.  Maybe relx should be able to handle this?

thanks for the responses

Matt



On 26 September 2013 21:36, Matthew Hegarty <[1]mrhegarty at gmail.com>
wrote:

yes it exists.  I believe hipe is enabled by default when I compile.

however there is no

 /usr/local/lib/erlang/lib/hipe-3.10/ebin/hipe.beam
 /usr/local/lib/erlang/lib/hipe-3.10.1/ebin/hipe.beam

which is what relx is apparently looking for.
Do you know where does relx get these paths from?



On 26 September 2013 20:04, Tristan Sloughter
<[2]tristan.sloughter at gmail.com> wrote:

Did you enable hipe when you compiled? Does
/usr/local/lib/erlang/lib/hipe-3.10.2.1/ebin/hipe.beam exist?

--
Tristan Sloughter
[3]tristan.sloughter at gmail.com



On Thu, Sep 26, 2013, at 12:03 PM, Matthew Hegarty wrote:

hi

I compiled Erlang from source (downloaded from [4]erlang.org)



On 25 September 2013 17:25, Tristan Sloughter
<[5]tristan.sloughter at gmail.com> wrote:

I ran into the same thing. I assume you installed Erlang from the
Erlang

Solutions repo?



Install erlang-hipe package. Or remove

/usr/local/lib/erlang/lib/hipe-3.10.2.1 entirely.



Their packages install a broken hipe app, missing lots of beams, for

some reason. But if you install the hipe package it'll install what is

missing. I told them about this but I haven't heard back.



--

  Tristan Sloughter

  [6]tsloughter at fastmail.fm




On Wed, Sep 25, 2013, at 08:09 AM, Lo?c Hoguin wrote:
> Why does it look for hipe at all to begin with?
>
> I'll ping tristan about it.
>
> On 09/22/2013 10:59 PM, Matthew Hegarty wrote:
> > hi
> > Just starting out so I'm trying to run cowboy's helloworld
> > in cowboy/examples/hello_world, running make fails with:
> >
> > ===> Provider (rlx_prv_discover) failed with: {error,
> >
{rlx_app_discovery,
> >
[{missing_beam_file,
> >                                                           hipe,
> >
> > <<"/usr/local/lib/erlang/lib/hipe-3.10/ebin/hipe.beam">>},
> >
{missing_beam_file,
> >                                                           hipe,
> >
> > <<"/usr/local/lib/erlang/lib/hipe-3.10.1/ebin/hipe.beam">>}]}}
> >
> > there is no hipe.beam in
/usr/local/lib/erlang/lib/hipe-3.10.1/ebin/, it
> > is in /usr/local/lib/erlang/lib/hipe-3.10.2.1/ebin/hipe.beam.
> > I've tried passing the correct dir to relx using --lib-dir but I
still
> > get the same error.
> >
> > Any ideas what's going wrong?
> >
> > erl: Erlang R16B02 (erts-5.10.3)
> > relx: 0.0.0+build.275.refca03701
> > rebar: rebar 2.1.0-pre R16B02 20130922_191744 git
2.1.0-pre-46-g78fa8fc
> >
> >
> > On 22 September 2013 21:55, Matthew Hegarty <[7]mrhegarty at gmail.com
> > <mailto:[8]mrhegarty at gmail.com>> wrote:
> >
> >     hi
> >     Just starting out so I've got latest versions of apps.
> >     in cowboy/examples/hello_world, running make fails with:
> >
> >
> >
> >
> >
> >
> > _______________________________________________
> > Extend mailing list
> > [9]Extend at lists.ninenines.eu
> > [10]http://lists.ninenines.eu:81/listinfo/extend
> >
>
>
> --

> Lo?c Hoguin



> Erlang Cowboy

> Nine Nines

> [11]http://ninenines.eu

> _______________________________________________
> Extend mailing list
> [12]Extend at lists.ninenines.eu
> [13]http://lists.ninenines.eu:81/listinfo/extend


--

  Tristan Sloughter

  [14]tristan.sloughter at gmail.com

References

1. mailto:mrhegarty at gmail.com
2. mailto:tristan.sloughter at gmail.com
3. mailto:tristan.sloughter at gmail.com
4. http://erlang.org/
5. mailto:tristan.sloughter at gmail.com
6. mailto:tsloughter at fastmail.fm
7. mailto:mrhegarty at gmail.com
8. mailto:mrhegarty at gmail.com
9. mailto:Extend at lists.ninenines.eu
  10. http://lists.ninenines.eu:81/listinfo/extend
  11. http://ninenines.eu/
  12. mailto:Extend at lists.ninenines.eu
  13. http://lists.ninenines.eu:81/listinfo/extend
  14. mailto:tristan.sloughter at gmail.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ninenines.eu/archives/extend/attachments/20130928/41b322fd/attachment.html>