Live data from Hacker News

Viewing profile — aweisberg

aweisberg

HN member
Joined
Wed, May 26, 2010, 8:34 PM UTC
HN karma
15
Public activity
15 items

About aweisberg

VoltDB developer I blog about my work at http://afewmoreamps.com

Recent public activity

  1. comment
    Comment #6725095

    I have the same grandfathered plan. I wish I had bought more storage when it was available. It looks like we aren't getting any upgrades not that I blame them.

  2. comment
    Comment #6551085

    I would be really surprised to find that a tree is faster then a fast cryptographic hash function like SIP hash. Cache misses to main memory are worth 10s of instructions and that …

  3. comment
    Comment #6551055

    This is actually an important topic for me. I am implementing a sharding distribution based on consistent hashing using MurmurHash3 as hash function. I am taking the first 4-bytes …

  4. comment
    Comment #6551029

    A secret seed is not sufficient to prevent DoS vulnerabilities. That is one of the things the creators of SIP hash demonstrated. You can create collisions with MurmurHash3 that wor…

  5. comment
    Comment #6346945

    For the last 18 years or so I have been taking some form of low cost Ritalin with a co-pay between 15-25 dollars. This ancient medication that is a generic costs 130 dollars a mont…

  6. comment
    Comment #5804681

    Is comparing a hex-core to a quad-core apples to apples? Haswell per core performance is still better although it will be a long time before we see a hex-core part.

  7. comment
    Comment #3853506

    The intent of the test was to measure throughput. Since the API is asynchronous that means the client was submitting as much work as would fit in the queues at both client and serv…

  8. comment
    Comment #1654322

    Neoview and Teradata are OLAP databases. OLTP is a different problem.

  9. comment
    Comment #1636691

    NoSQL doesn't mean NoDurability. Many of them offer better multi-datacenter durability and availability by dropping ACID for BASE. I suspect that most data by volume belongs in a B…

  10. comment
    Comment #1472900

    kbd+ is a column store (analytic database) and does not partition horizontally. The two things they have in common is that they are both in memory (and kdb+ not necessarily) and su…

  11. comment
    Comment #1383449

    Redis does not support partitioning so it is even more apples to oranges then VoltDB vs. Cassandra. Both VoltDB and Cassandra rely on adding nodes to scale.

  12. comment
    Comment #1383408

    VoltDB replicates synchronously.

  13. comment
    Comment #1383407

    MongoDB partitioning support is still under development. Probably more apple to oranges then VoltDB vs. Cassandra.

  14. comment
    Comment #1381668

    http://wiki.apache.org/cassandra/Durability "Cassandra's example configuration shows CommitLogSync set to periodic, meaning that we sync the commitlog every CommitLogSyncPeriodInMS…

  15. comment
    Comment #1381606

    "Cassandra writes to disk. VoltDB is an in-memory database. So I gave both systems plenty of RAM to hold the data set and turned Cassandra's consistency settings pretty low." So in…