Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
std_reply
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
std_reply
1y ago
Using Python syntax makes it more accessible.
2.
▲
by
std_reply
2y ago
Have you looked at tiup? https://tiup.io
3.
▲
by
std_reply
2y ago
EDB Distributed Postgres under the hood is a single node database with bolted on replication.
4.
▲
by
std_reply
2y ago
I’m contrasting a single node database with bolted on replication vs a distributed SQL database that gives strong consistency out of the box.
5.
▲
by
std_reply
2y ago
Go is used for the SQL layer, it’s a modern optimizer that can do distributed joins etc. ie. Issue parallel reads to the storage nodes. Additionally, it can push down the DAG to the TiKV storage nodes, written in Rust, to reduce movement of
6.
▲
by
std_reply
2y ago
I would argue the opposite, distributed databases are much easier to operate at large scale. Truly online distributed DDL, at least in TIDB, strong consistency etc. People who bang on about Postgres replication have rarely setup replication
7.
▲
by
std_reply
2y ago
TiKV the Core Storage scalable component is a CNCF graduated projected. PingCAP cannot change the license even if it wanted to.
8.
▲
by
std_reply
2y ago
TiDB is running core banking services too. I think people’s idea of scale and operating at scale is limited to their experience. You can get MySQL to run at any scale, look at Meta and Shopify. Operational complexity at that scale is a diff
9.
▲
by
std_reply
2y ago
This is quite an ignorant comment. TiDB routinely handles 100s of TB of data. Go watch LinkedIn’s presentation on why they choose TiDB as their strategic db going forward.
10.
▲
by
std_reply
2y ago
TiDB has four main components: 1. SQL front end nodes 2. Distributed shared nothing storage (TiKV) 3. Meta data server (PS) 4. TiFlash column store 1 and 3 are written in Go 2 is written in Rust and uses RocksDB 4 is written in C++ 2 &
11.
▲
by
std_reply
2y ago
My guess: then benefits SQL at scale and reduced maintenance burden. That’s what the article seems to hint at.
12.
▲
by
std_reply
2y ago
AirBnB, Databricks, Flipkart 3 of the largest banks in the world, some of the largest logistics companies in the world, at least 2K seriously large installations.
13.
▲
by
std_reply
5y ago
I think you need to update your knowledge about MySQL and not bang on about v5.1 and earlier.