Live data from Hacker News

A complete ClickHouse OLAP engine, compiled to WebAssembly

wasm.chdb.io

1–10 of 16 posts

Re: A complete ClickHouse OLAP engine, compiled to WebAssembly

#3
post #2

Mobile chrome safari not supported , curious why

They have compiled to WASM64, the newer 64bit version of WASM. That's not available on iOS yet.

WASM till recently has had a 32bit address space, to match the limitations of JS numbers. With 64bit WASM you have to use BigInt rather than the floats that are numbers in js to address the memory.

It's only the address space that's affected - old WASM still handled 64bit math fine.

Re: A complete ClickHouse OLAP engine, compiled to WebAssembly

#6
post #2

Mobile chrome safari not supported , curious why

They have compiled to WASM64, the newer 64bit version of WASM. That's not available on iOS yet. WASM till recently has had a 32bit address space, to match the limitations of JS numbers. With 64bit WASM you have to use BigInt rather than the floats that are numbers in js to address the memory. It's only the address space that's affected - old WASM still handled 64bit math fine.

Safari is the new IE

Re: A complete ClickHouse OLAP engine, compiled to WebAssembly

#10

Is the point of this privacy, offline analytics, or eliminating server costs, and does that survive the download cost of 95 megabytes?

WebAssembly doesn’t run only in the browser. WebAssembly runtimes can be effective sandboxing mechanisms for embedded plugins, serverless execution, etc.
Post reply on HN