usman-m | 8 years ago | on: Kinase: A Framework for Building Web Scrapers in Chrome
usman-m's comments
usman-m | 10 years ago | on: ContinuouSQL Triggers
usman-m | 10 years ago | on: ContinuouSQL Triggers
usman-m | 10 years ago | on: Orchestra: An open-source system to orchestrate teams of experts and machines
usman-m | 10 years ago | on: Making Postgres Bloom
usman-m | 10 years ago | on: Making Postgres Bloom
We actually support a HyperLogLog backed COUNT DISTINCT aggregate too: http://docs.pipelinedb.com/aggregates.html#general-aggregate...
usman-m | 10 years ago | on: Making Postgres Bloom
SELECT <user_id> FROM (SELECT DISTINCT user_id FROM user_actions);
You're absolutely right that both those queries will give the same result. I guess I was trying to motivate the basic problem of finding whether some user exists in a set of users, and `SELECT DISTINCT` is the SQL way of representing a set.Fixed the post, thanks!
usman-m | 10 years ago | on: Making Postgres Bloom
Continuous views are consumers for streams. You can think of them as high throughput real-time materialized views. The source of data for the stream can be practically anything. Logical decoding on the other hand is a producer of streaming data--it's basically a human readable replication log. So you could potentially stream the logically decoded log into PipelineDB and build some continuous views in front of it.
usman-m | 10 years ago | on: Making Postgres Bloom
usman-m | 10 years ago | on: To Be Continuous
Awesome--let us know what you think about it!
usman-m | 10 years ago | on: To Be Continuous
However, we love Postgres and plan on actively merging upstream releases!