Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ohsayan committed Dec 15, 2023
1 parent 4f69796 commit e96f32a
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions docs/4.architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ That's why, every component in Skytable has been engineered from the ground up,

And all of that, without you having to be an expert, and with the least maintenance that you can expect.

## Fundamental differences from SQL
## Fundamental differences from relational systems

BlueQL kind of looks and feels like SQL and that's the ultimate goal, so that developers from the SQL world find it easier to migrate. But Skytable's evaluation and execution of queries is fundamentally different from SQL counterparts and even NoSQL engines. Here are some key differences:
BlueQL kind of looks and feels like using SQL with a relational database but that doesn't make Skytable's internals the same, with the most important distinction being the fact that Skytable has a NoSQL engine! But Skytable's evaluation and execution of queries is fundamentally different from SQL counterparts and even NoSQL engines. Here are some key differences:

- All DML queries are point queries and **not** range queries:
- This means that they will either return atleast one row or error
Expand All @@ -38,7 +38,6 @@ We believe you can now hopefully see how Skytable's workings are fundamentally d
that you might have a lot of questions! If you do, please reach out. We're here to help.
:::


## Data model

Just like SQL has `DATABASE`s, Skytable has `SPACE`s which are collections of what we call data containers like tables.
Expand Down Expand Up @@ -93,9 +92,8 @@ DDL and DCL transactions use a log-based append-only driver while DML queries us
Skytable is heavily multithreaded enabling incredible vertical scalability and you can witness it for yourself by running benchmarks (or looking at ones that we publish). Clustering and replication are on track to be released soon.

:::info Features on track
Clustering (horizontal scalability) and replication (failover) is right on track and we're also expecting to deliver this by Q1
2024. We'd also like to note that clustering is too important a feature to ignore so you can be assured that we're hard at work
on it.
Clustering and replication are right on track and we're expecting to deliver them by Q1 2024. We'd also like to note that
clustering is too important to ignore so you can be assured that we're hard at work on it.
:::

Skytable will use atleast as many threads as the number of logical CPUs present on the host. At this moment it is not possible to
Expand Down

0 comments on commit e96f32a

Please sign in to comment.