Live data from Hacker News

Viewing profile — ankoh

ankoh

HN member
Joined
Sun, Mar 12, 2017, 1:07 PM UTC
HN karma
101
Public activity
11 items

About ankoh

No profile information was provided.

Recent public activity

  1. comment
    Comment #32501921

    This has to be ruled out first: https://github.com/whatwg/fs/issues/7#issuecomment-116176851... ...but then the OPFS will be a quite decent fit. We (DuckDB-Wasm) are also looking c…

  2. comment
    Comment #30813665

    We're still on a journey to explore what APIs work best with JavaScript but the differences between WASM and Node are on purpose. DuckDB-Wasm has isolated wasm heap memory and runs…

  3. comment
    Comment #29042558

    The author outlines many problems that you'll run into when implementing a persistent storage backend using the current browser APIs. We faced many of them ourselves but paused any…

  4. comment
    Comment #29042147

    I agree! DuckDB-Wasm can already open DuckDB database files in the browser the very same way.

  5. comment
    Comment #29040750

    It depends. Querying CSV files is particularly painful over the network since we still have to read everything for a full scan. With Parquet, you would at least only have to read t…

  6. comment
    Comment #29040360

    DuckDB-Wasm uses a traditional buffer manager and evicts pages using a combination of FIFO + LRU (to distinguish sequential scans from hot pages like the Parquet metadata).

  7. comment
    Comment #29040120

    Yes we do! DuckDB-Wasm can read files using HTTP range requests very similar to the sql.js-httpvfs from phiresky. The blog post contains a few examples how this can be used, for ex…

  8. comment
  9. comment
    Comment #29039917

    DuckDB-wasm is targeting the browser so it's not directly competing with Pandas (that's the job of native DuckDB). It's targeting use cases where you want to push analytical comput…

  10. comment
    Comment #29039480

    The WebAssembly module is 1.6 - 1.8 MB brotli-compressed depending on the Wasm feature set. We're currently investigating ways to reduce this to around 1 MB. We further use streami…

  11. story