Live data from Hacker News

Viewing profile — ewencp

ewencp

HN member
Joined
Mon, May 23, 2011, 4:02 AM UTC
HN karma
53
Public activity
36 items

About ewencp

No profile information was provided.

Recent public activity

  1. comment
    Comment #26644440

    The downloads page is only for official releases, RCs are not distributed the same way and are not permanent unless promoted to an official release. See the mailing list thread for…

  2. comment
    Comment #18136985

    terraform: 2014 ansible: 2012 openstack: 2010 cloudera: 2008 hortonworks: 2011 emr: 2011 (those were quickly googled, apologies if i got any dates wrong) timing is important. cloud…

  3. comment
    Comment #15900563

    Regarding your first issue, this is very much a matter of defaults. I can't be sure of your exact pipeline and connectors, but if, for example, you were using the JDBC connector, i…

  4. comment
    Comment #14672246

    I should also mention that system/integration tests of the new functionality was a requirement for releasing it. For example, here's one of the tests https://github.com/apache/kafk…

  5. comment
    Comment #14672230

    It's not Jepsen, but we actually do a fair amount of system and integration testing, some of which does things like kill nodes (randomly, the controller, etc) and validates data is…

  6. comment
    Comment #14005701

    Debezium implements Kafka Connectors, so the serialization is pluggable. Debezium can work with thrift, you just need a thrift converter for Kafka Connect.

  7. comment
    Comment #11493989

    It's not particularly efficient, but probably the easiest way to draw Voronoi diagrams on the GPU doesn't require a shader at all. Instead, use an orthographic projection and draw …

  8. story
  9. story
  10. comment
    Comment #9055223

    For apt repositories, you might be interested in http://www.aptly.info/ , especially if you want to host it on S3 as it integrates very well. As others have mentioned reprepo isn't…

  11. comment
    Comment #8589052

    In particular, http://kafka.apache.org/documentation.html#intro_consumers addresses the concept of consumer groups and what ordering is guaranteed. One thing that might be worth no…

  12. comment
    Comment #8588724

    Agreed! It's not Docker, but I'm working on getting a decent Vagrant setup included with Kafka: https://issues.apache.org/jira/browse/KAFKA-1173 That supports pulling up a full clu…

  13. comment
    Comment #7683903

    Along similar lines, all of the English Wikipedia is http://en.wikipedia.org/wiki/Wikipedia:Database_download#Eng... . That omits all the history (just the current pages), but stil…

  14. comment
    Comment #7426713

    The golang folks did a nice write-up on profiling Go code: http://blog.golang.org/profiling-go-programs and it covers both CPU and heap profiling. They've incorporated Google's per…

  15. comment
    Comment #6649470

    This is correct, here are the physical measurements: Nexus 4: 133.9 x 68.7 x 9.1 mm Nexus 5: 137.84 x 69.17 x 8.59 mm That said, I still find it frustrating -- the Nexus 4 screen i…

  16. comment
    Comment #6603119

    Many years later, similar functionality made it into gdb: http://sourceware.org/gdb/wiki/ReverseDebug

  17. comment
    Comment #6559999

    Given the huge variation in (mis)calibrated settings on top of the huge variation of displays themselves, you'd probably be fine running f.lux. In fact, I would think you would wan…

  18. comment
    Comment #6447390

    Thanks for trying it out. Sounds like a bug in the collection editor. I want to improve that process to handle cases like yours -- if you don't find the feed, make it easy to look …

  19. comment
    Comment #6349494

    Ah, sorry, I was using it in the locality sense (as in, coherent access). Admittedly less common, but not uncommon, in algorithms; downright confusing if you're in an architecture …

  20. comment
    Comment #6349467

    I'm just learning Go, I'm certainly no evangelist. One huge difference for me, however, doesn't have to do with the language. It's deployment. It's really nice for deployment to be…

  21. comment
    Comment #6349442

    For the vast majority of cases, I would expect panic/recover to work for iteration over in-memory data structures. For something like a database iterator where the possible errors …

  22. comment
    Comment #6347858

    To build on thrownaway2424's response, the point in the article was to demonstrate the pattern for building the iterator. Very simply structured data helps do that. In reality you'…

  23. comment
    Comment #6347855

    Fair enough. My day-to-day coding with Go right now involves large data sets where materializing something like that would be expensive. I'll admit my view of the issue is strongly…

  24. comment
    Comment #6347828

    I mentioned this pitfall, but didn't show how to solve it. I haven't seen a complete example yet and didn't take the time to work out the details yet. I'm less concerned about comp…

  25. comment
    Comment #6347823

    Testing performance by iterating over an array can be dangerous because all the data is conveniently grouped together such that the processor will have the next data it needs in ca…