HN user

mpsq

1,063 karma

[ my public key: https://keybase.io/mpsq; my proof: https://keybase.io/mpsq/sigs/YTn9zZdwQTgajlqvSzHctBVQ6TuVwWUea-imL3K_Nmk ]

Posts59
Comments6
View on HN
pmarchive.com 9mo ago

Guide to Big Companies: Retaining great people

mpsq
1pts0
fortune.com 1y ago

YC-backed Anima wrongly diagnosed a patient in UK NHS diabetes screening

mpsq
2pts2
github.com 1y ago

Linux userspace audio configuration for Apple Silicon Macs

mpsq
4pts0
geodesy.noaa.gov 4y ago

GPS on BenchMarks: crowdsourced data collection for the National Geodetic Survey

mpsq
2pts0
www.reuters.com 4y ago

Satellite outage knocks out thousands of Enercon's wind turbines

mpsq
31pts14
zettelkasten.de 4y ago

Zettelkasten: Notes and knowledge management system used in research and study

mpsq
2pts0
en.wikipedia.org 4y ago

Havana Syndrome

mpsq
1pts0
github.com 4y ago

Slgobinath/SafeEyes: Protect your eyes from eye strain using a break reminder

mpsq
2pts0
petapixel.com 4y ago

Eyes of the Afghan Girl: A Critical Take on the 'Steve McCurry Scandal'

mpsq
1pts1
en.wikipedia.org 4y ago

Confused Deputy Problem

mpsq
1pts0
github.com 4y ago

EasyCrypt: Computer-Aided Cryptographic Proofs

mpsq
1pts0
restofworld.org 4y ago

Refugees help power machine learning advances at Microsoft, Facebook, and Amazon

mpsq
3pts0
en.wikipedia.org 4y ago

London Underground Cooling

mpsq
2pts1
github.com 4y ago

Libopenaptx: Open-source implementation of Audio Processing Technology (aptX)

mpsq
2pts0
www.theguardian.com 4y ago

Buried in Concrete: Mafia Architecture

mpsq
2pts0
www.theguardian.com 5y ago

Australian funnel-web spider may help human hearts

mpsq
4pts0
sxmo.org 5y ago

Sxmo: Minimalist environment for Linux mobile devices

mpsq
4pts0
github.com 5y ago

Librespot: Open-source Spotify client library now support dithering

mpsq
3pts0
mattscodecave.com 5y ago

The Web Is Turning into Cable TV

mpsq
3pts0
www.gnu.org 5y ago

GNU Coding Standards: Writing Robust Programs

mpsq
120pts109
www.improbable.io 5y ago

Game architecture to handle 4000 concurrent live players

mpsq
4pts1
metasub.org 5y ago

MetaSub: A world-wide DNA map of microbiomes found in public transports

mpsq
1pts0
www.theguardian.com 5y ago

Astronomers create largest map of the universe’s dark matter

mpsq
4pts1
emacsair.me 5y ago

Magit 3.0

mpsq
347pts140
www.bloomberg.com 5y ago

Solar Power's Decade of Falling Costs Is Thrown into Reverse

mpsq
13pts4
www.wordreference.com 5y ago

About Wordreference.com

mpsq
1pts0
en.wikipedia.org 5y ago

List of English words of French origin

mpsq
1pts0
www.bbc.co.uk 5y ago

Covid: Dracula's castle in Romania offers tourists vaccine

mpsq
1pts0
en.wikipedia.org 5y ago

War of the Cow

mpsq
1pts0
www.theguardian.com 5y ago

Britons working at home spend more time on job in Covid crisis, ONS finds

mpsq
1pts0

This GitHub repository is just the database, what about the code that holds together their cloud resources? I was not able to find it.

They criticize AWS for making money on Elasticsearch for example, AWS is "taking advantage of the R&D efforts of others". So Amazon is making money on a "serverless" / cloud experience. At the same time, it is known that Amazon is contributing back to Elasticsearch [1]. To that regard, I find their business model really similar to the one AWS is relying upon.

[1] https://www.techrepublic.com/article/aws-contributes-to-elas...

I can't get over the fact that they first say:

"Amazon has a history of offering services that take advantage of the R&D efforts of others: for example, Amazon Elasticsearch Service, Amazon Managed Streaming for Apache Kafka,[...]"

And at the end of the article they promote how they themselves rely on other people hard work:

"TimescaleDB uses a dramatically different design principle: build on PostgreSQL. As noted previously, this allows TimescaleDB to inherit over 25 years of dedicated engineering effort that the entire PostgreSQL community has done to build a rock-solid database that supports millions of applications worldwide."

In the end, it sounds like they are doing exactly what Amazon is doing with open-source.

Everyone seems to be blaming the "bad" (relatively, I personally don't believe that) performance of FF on Gecko. But is that the case? Isn't it mostly because of many websites relying heavily on JS while V8 is much faster than SpiderMonkey? I have been following Phoronix benchmarks for years and where Chrome shines seems to always be on JS benchmarks.

Given that Gecko is probably not the bottleneck, I would consider the decision of halting the project not a bad one. Servo delivered tons of amazing things already, it is a clear success. Maybe Mozilla should consider using V8? After all, losing SpiderMonkey might not be that bad, there is enough "competitors".

As you said, performance is the main differentiator. We are orders of magnitude faster than TimescaleDB and InfluxDB on both data ingestion and querying. TimescaleDB relies on Postgres and has great SQL support. This is not the case for InfluxDB and this is where QuestDB shines: we do not plan to move away from SQL, we are very dedicated in bringing good support and some enhancements to make sure the querying language is as flexible and efficient as possible for our users.

Thanks for your feedback, I am pleased to know that you like it!

- This is a c5.metal instance (AWS) with 48 physical cores and 192 GB of memory. We use only 24 of those 48 cores.

- If I understand your example well, the query "select * from trips where trip_type = 'Dispatch' and pickup_datetime = '2018-03' and vendor_id = 'VTS';" should be similar. There is no limit in how many filters you can specify in the where clause, it will also have a very minor (if any) impact on the performance.

- Currently yes but this is something we are working on. Out of order insertions is one of our priority and you can expect this to be implemented in a very near future.

- Currently no. However, the way data is stored means that columns are extremely compressible as you mentioned. Our internal API (how we store, access/retrieve columns) would make it easy for us to implement compression, we will do it if this is something important for our users. In the meantime, a filesystem like BTRFS or ZFS would do a nice job (if disk usage is your concern).

- GROUP BY is automatically inferred, users don't need to specify it explicitly, you can find more details about this here: https://questdb.io/docs/sqlExtensions#important-differences-...

EDIT: fix typos