Skip to content

Commit

Permalink
Update faq page (#23704)
Browse files Browse the repository at this point in the history
* update faq page

* fix a typo

* add preview/stable

* edits and fixes

* changing to design goals style format

* format

* making link shortcode take named params

* format

* edits to the faq page

* add trade-offs

* fixes from code review

* format

---------

Co-authored-by: Dwight Hodge <[email protected]>
Co-authored-by: aishwarya24 <[email protected]>
  • Loading branch information
3 people authored Sep 16, 2024
1 parent add83ef commit 69db717
Show file tree
Hide file tree
Showing 11 changed files with 182 additions and 284 deletions.
1 change: 1 addition & 0 deletions .github/vale-styles/Yugabyte/spelling-exceptions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ Javafuzz
JavaScript
Jenkins
Jenkinsfile
Jepsen
Jira
jq
jQuery
Expand Down
12 changes: 6 additions & 6 deletions docs/content/preview/architecture/design-goals.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ type: docs

## Scalability

YugabyteDB scales out horizontally by adding more nodes to handle increasing data volumes and higher workloads. With YugabyteDB, you can also opt for vertical scaling choosing more powerful infrastructure components. {{<link "../../explore/linear-scalability/">}}
YugabyteDB scales out horizontally by adding more nodes to handle increasing data volumes and higher workloads. With YugabyteDB, you can also opt for vertical scaling choosing more powerful infrastructure components. {{<link dest="../../explore/linear-scalability/">}}

## High Availability

YugabyteDB ensures continuous availability, even in the face of individual node failures or network partitions. YugabyteDB achieves this by replicating data across multiple nodes and implementing failover mechanisms via leader election. {{<link "../../explore/fault-tolerance">}}
YugabyteDB ensures continuous availability, even in the face of individual node failures or network partitions. YugabyteDB achieves this by replicating data across multiple nodes and implementing failover mechanisms via leader election. {{<link dest="../../explore/fault-tolerance">}}

## Fault Tolerance

YugabyteDB is resilient to various types of failures, such as node crashes, network partitions, disk failures, and other hardware or software faults and failure of various fault domains. It can automatically recover from these failures without data loss or corruption. {{<link "../../explore/fault-tolerance">}}
YugabyteDB is resilient to various types of failures, such as node crashes, network partitions, disk failures, and other hardware or software faults and failure of various fault domains. It can automatically recover from these failures without data loss or corruption. {{<link dest="../../explore/fault-tolerance">}}

## Consistency

Expand Down Expand Up @@ -66,7 +66,7 @@ YugabyteDB monitors and automatically re-balances the number of tablet leaders a

## Data locality

YugabyteDB supports colocated tables and databases which enables related data to be kept together on the same node for performance reasons. {{<link "../../explore/colocation">}}
YugabyteDB supports colocated tables and databases which enables related data to be kept together on the same node for performance reasons. {{<link dest="../../explore/colocation">}}

## Security

Expand Down Expand Up @@ -113,7 +113,7 @@ In addition:

## Cassandra compatibility

[YCQL](../../api/ycql/) is a [semi-relational CQL API](../../explore/ycql-language/) that is best suited for internet-scale OLTP and HTAP applications needing massive write scalability and fast queries. YCQL supports distributed transactions, strongly-consistent secondary indexes, and a native JSON column type. YCQL has its roots in the Cassandra Query Language. {{<link "../query-layer">}}
[YCQL](../../api/ycql/) is a [semi-relational CQL API](../../explore/ycql-language/) that is best suited for internet-scale OLTP and HTAP applications needing massive write scalability and fast queries. YCQL supports distributed transactions, strongly-consistent secondary indexes, and a native JSON column type. YCQL has its roots in the Cassandra Query Language. {{<link dest="../query-layer">}}

## Performance

Expand Down Expand Up @@ -143,7 +143,7 @@ YugabyteDB has been designed with several cloud-native principles in mind.

## Kubernetes-ready

YugabyteDB works natively in Kubernetes and other containerized environments as a stateful application. {{<link "../../deploy/kubernetes/">}}
YugabyteDB works natively in Kubernetes and other containerized environments as a stateful application. {{<link dest="../../deploy/kubernetes/">}}

## Open source

Expand Down
48 changes: 24 additions & 24 deletions docs/content/preview/architecture/key-concepts.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ This is a warning with a [link](https://www.yugabyte.com).

You can add a link to a url with an icon using the `link` shortcode which takes url as a string argument. Internal and external links will have different icons. You can use the `:version` variable to expand to all versions.

- {{<link "https://www.google.com">}} : _External link_ `{{</*link "https://www.google.com"*/>}}`
- {{<link "../syntax-diagrams">}} : _Relative internal link_ `{{</*link "../syntax-diagrams"*/>}}`
- {{<link "/:version/explore">}} : _Full path internal link_ `{{</*link "/:version/explore"*/>}}`
- {{<link dest="https://www.google.com">}} : _External link_ `{{</*link "https://www.google.com"*/>}}`
- {{<link dest="../syntax-diagrams">}} : _Relative internal link_ `{{</*link "../syntax-diagrams"*/>}}`
- {{<link dest="/:version/explore">}} : _Full path internal link_ `{{</*link "/:version/explore"*/>}}`

## Tables

Expand Down
Loading

0 comments on commit 69db717

Please sign in to comment.