Live data from Hacker News

Viewing profile — gtuhl

gtuhl

HN member
Joined
Sat, Mar 28, 2009, 9:47 AM UTC
HN karma
107
Public activity
33 items

About gtuhl

No profile information was provided.

Recent public activity

  1. comment
    Comment #8033346

    The density of the DIMMs is where the price difference jumps. Right now 32GB sticks push the price way up. Common current chassis have 24 slots letting you hit 384GB total with no …

  2. comment
    Comment #7165271

    MailChimp - Atlanta, GA Database Engineer MailChimp is a DIY email-newsletter service based in Atlanta that serves more than 4 million users worldwide. We're self-funded and profit…

  3. comment
    Comment #6140337

    Atlanta, GA - MailChimp I am hiring for two roles on the Infrastructure side: Systems/Coding: http://mailchimp.theresumator.com/apply/6Il9br/Infrastructur... NOC/Networking: http:/…

  4. comment
    Comment #4194552

    Atlanta, GA. Full time. Infrastructure Engineer. Job Description MailChimp is looking for engineers to join our team. This is a full time position in Atlanta that will help build, …

  5. comment
    Comment #4053316

    Atlanta, GA - Full time, local, relocation possible MailChimp is looking for infrastructure engineers to join our team. This is a full time position in Atlanta that will help build…

  6. comment
    Comment #3652934

    MailChimp, Atlanta, GA, Full Time I am looking for Infrastructure Engineers to join the team. We support hundreds of servers, millions of customers, and send billions of emails eve…

  7. comment
    Comment #3112824

    I think the focus on in-memory only is what makes Redis great and I hope they never change. It lives on that requirement and is incredibly stable and fast. I don't want another hal…

  8. comment
    Comment #3024515

    I just poked around with some of our servers to verify. In Softlayer's Dallas facility (selected when ordering a server) 10 Gbps is an option. The maximum amount of bandwidth avail…

  9. comment
    Comment #3017241

    That does seem odd. I'd file a ticket and see what they have to say about it. In certain datacenters (think might be dallas05?) you can even get a 10Gbps uplink brought to a box so…

  10. comment
    Comment #3015928

    Softlayer offers this as well. You can spec out a box however you want up to pretty exotic configurations, get billed monthly, and can SSH into them in 3-4 hours. It is expensive, …

  11. comment
    Comment #2687361

    If I need to go cross-shard then I am doing it in code. If you knew both shards were on the same box you could do cross-shard joins if you used schemas like this but you would need…

  12. comment
    Comment #2686291

    Good point, sounds like I intend to keep it that way for this particular database in my comment. It's setup for multi box (each schema is mapped to a hostname in code) but I simply…

  13. comment
    Comment #2686220

    I'm a big fan of Redis precisely because it has a short list of promises and executes them well. So many of these other new data stores promise "infinite scale" and leave out the "…

  14. comment
    Comment #2686202

    I have a 1.5 TB Postgres database, sharded by schema, that runs wonderfully on a single box (12 core, 36GB RAM, raid 10 of 15k SAS drives). Why couldn't you shard with Postgres?

  15. comment
    Comment #2667628

    The tough thing about comparing these two is that it is hard to find a benchmark (I don't know of one) that works similarly with them both. Sysbench is somewhat of a standard for t…

  16. comment
    Comment #2666988

    Compared to MyISAM? Sure for certain aggregate functions, but it's too easy to point out reasons for avoiding MyISAM: fragmentation, no transactions, table locks on writes, complet…

  17. comment
    Comment #2666907

    Postgres has bitmap index support baked in as well and it works really well. I'd be awfully interested in knowing where MySQL beats it by 50x at anything.

  18. comment
    Comment #2644746

    I am not a big fan of Hadoop. It is a headache to configure and optimized for installs with node counts only a few companies could make use of. I really wish there were more option…

  19. comment
    Comment #2639453

    Agreed, hard drives fail constantly. I've had as many as 3 dead at a time while waiting for hot spares to rebuild in arrays as small as 24 drives. Dual drive failures have happened…

  20. comment
  21. comment
    Comment #2472463

    There are some nice middle options out there. I'll use Softlayer as an example as I have provisioned a lot of machinery over there. I can order machines online and SSH in 3-4 hours…

  22. comment
    Comment #2170802

    We do have transactional support via Amazon SES now: http://blog.mailchimp.com/mailchimp-launches-transactional-e... It rolled out this very week.

  23. comment
    Comment #881178

    If shopping for an SSD at least consider the OCZ Vertex. I've been running one in my Santa Rosa MBP for 7 months with no issues and excellent performance. See ( http://blog.gtuhl.c…

  24. comment
    Comment #811974

    While I think some of these new projects are great for certain tasks, this sentiment resonates with me often when talking with nosql evangelists.

  25. comment
    Comment #750680

    Thought I was add that the PostgreSQL documentation is really, really good for learning. It is a bit dense but overall very well written, includes nontrivial examples, and you can …