Skip to content

Commit

Permalink
Showing 29 changed files with 50 additions and 49 deletions.
4 changes: 2 additions & 2 deletions docs/content/latest/admin/cqlsh.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: cqlsh - YCQL shell/CLI for YugabyteDB
title: cqlsh - YCQL shell for YugabyteDB
headerTitle: cqlsh
linkTitle: cqlsh
description: Use the YCQL shell (cqlsh), a command line interface (CLI), to interact with YugabyteDB using YCQL.
description: Use the YCQL shell (cqlsh) to interact with YugabyteDB.
aliases:
- /develop/tools/cqlsh/
- /latest/develop/tools/cqlsh/
2 changes: 1 addition & 1 deletion docs/content/latest/admin/ysql-dump.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
title: ysql_dump - back up a YSQL database
headerTitle: ysql_dump
linkTitle: ysql_dump
description: Back up a specified YugabyteDB YSQL database into plain-text, SQL script file.
description: Back up a specified YSQL database into plain-text, SQL script file.
headcontent: Extract a YugabyteDB database into a SQL script file.
menu:
latest:
4 changes: 2 additions & 2 deletions docs/content/latest/admin/ysqlsh.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: ysqlsh - YSQL shell/CLI for YugabyteDB
title: ysqlsh - YSQL shell for YugabyteDB
headerTitle: ysqlsh
linkTitle: ysqlsh
description: Interact with distributed SQL databases using the YSQL shell (ysqlsh), a command line interface (CLI).
description: Use the YSQL shell (ysqlsh) to interact with YugabyteDB.
aliases:
- /develop/tools/ysqlsh/
- /latest/develop/tools/ysqlsh/
6 changes: 3 additions & 3 deletions docs/content/latest/api/ycql/_index.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
title: Yugabyte Cloud Query Language (YCQL)
headerTitle: Yugabyte Cloud Query Language (YCQL)
linkTitle: YCQL
description: YCQL is a SQL-based, flexible-schema API that is best fit for internet-scale OLTP application needing a semi-relational API.
description: YCQL is a SQL-based, semi-relational API that is best fit for internet-scale OLTP applications.
summary: Reference for the YCQL API
image: /images/section_icons/api/ycql.png
headcontent:
@@ -20,9 +20,9 @@ showAsideToc: true

## Introduction

YCQL is a SQL-based, flexible-schema API that is best fit for internet-scale OLTP application needing a semi-relational API highly optimized for write-intensive applications as well as blazing-fast queries. It supports distributed transactions, strongly consistent secondary indexes, and a native JSON column type. It has its roots in the [Cassandra Query Language (CQL)](http://cassandra.apache.org/doc/latest/cql/index.html).
Yugabyte Cloud Query Language (YCQL) is a SQL-based, semi-relational API that is best fit for internet-scale OLTP applications needing massive data ingestion and blazing-fast queries. It supports strongly consistent secondary indexes, a native JSON column type, and distributed transactions. It has its roots in the [Cassandra Query Language (CQL)](http://cassandra.apache.org/doc/latest/cql/index.html).

YCQL supports the following features.
This page covers the following YCQL features.

- Data definition language (DDL) statements.
- Data manipulation language (DML) statements.
2 changes: 1 addition & 1 deletion docs/content/latest/api/ysql/_index.md
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ showAsideToc: true

## Introduction

The Yugabyte Structured Query Language (YSQL) is the distributed SQL API for YugabyteDB and is compatible with the SQL dialect of PostgreSQL. Currently, YSQL is compatible with PostgreSQL 11.2 version. YugabyteDB and YSQL are optimized for RDBMS workloads that need horizontal write scalability and global data distribution while also using relational modeling features, such as JOINs, distributed transactions, and referential integrity (such as foreign keys).
Yugabyte Structured Query Language (YSQL) is an ANSI SQL, fully-relational API that is best fit for scale-out RDBMS applications needing ultra resilience, massive write scalability and geographic data distribution. Currently, YSQL is compatible with PostgreSQL 11.2 version and is in fact built by reusing PostgreSQL's native query layer. It supports all traditional relational modeling features, such as referential integrity (such as foreign keys), JOINs, distributed transactions, partial indexes, triggers and stored procedures.

The main components of YSQL include the data definition language (DDL), the data manipulation language (DML), and the data control language (DCL). A number of elements are used to construct these components, including data types, database objects, names and qualifiers, expressions, and comments. Other components are also provided for different purposes such as system control, transaction control, and performance tuning.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: SQL functions and operators for arrays
linkTitle: Functions and operators
linkTitle: Functions & operators
headerTitle: Built-in SQL functions and operators for arrays
description: Built-in SQL functions and operators for arrays
image: /images/section_icons/api/ysql.png
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
title: JSON functions and operators
headerTitle: JSON functions and operators
linkTitle: Functions and operators
linkTitle: Functions & operators
summary: Functions and operators
description: Learn about JSON functions and operators categorized by the purpose (goal) you want to accomplish.
description: Learn about JSON functions and operators categorized by the goal you want to accomplish.
image: /images/section_icons/api/ysql.png
menu:
latest:
3 changes: 2 additions & 1 deletion docs/content/latest/api/ysql/exprs/_index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Functions and operators [YSQL]
headerTitle: Functions and operators
linkTitle: Functions and operators
linkTitle: Functions & operators
description: YSQL supports all PostgreSQL-compatible built-in functions and operators.
image: /images/section_icons/api/ysql.png
menu:
@@ -23,3 +23,4 @@ YSQL supports all PostgreSQL-compatible built-in functions and operators. The fo
| [`lastval`](func_lastval) | Returns the value returned from the last call to `nextval()` (for any sequence) in the current session|
| [`nextval`](func_nextval) | Returns the next value from the session's sequence cache |
| [`JSON functions and operators`](../datatypes/type_json/functions-operators/) | Detailed list of JSON-specific functions and operators |
| [`Array functions and operators`](../datatypes/type_array/functions-operators/) | Detailed list of array functions and operators |
2 changes: 1 addition & 1 deletion docs/content/latest/comparisons/postgresql.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
title: Compare PostgreSQL with YugabyteDB
headerTitle: PostgreSQL
linkTitle: PostgreSQL
description: Compare YugabyteDB with PostgreSQL.
description: Compare PostgreSQL with YugabyteDB.
aliases:
- /comparisons/postgresql/
menu:
4 changes: 2 additions & 2 deletions docs/content/latest/deploy/enterprise-edition/_index.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
title: Deploy the Yugabyte Platform for mission-critical deployments
headerTitle: Yugabyte Platform
linkTitle: Yugabyte Platform
description: Use YugaWare and the Yugabyte Platform to deploy and manage mission-critical YugabyteDB clusters.
description: Use Yugabyte Platform to deploy and manage mission-critical YugabyteDB clusters.
headcontent:
image: /images/section_icons/deploy/enterprise.png
aliases:
@@ -14,7 +14,7 @@ menu:
weight: 638
---

The Yugabyte Platform is best fit for mission-critical deployments, such as production or pre-production testing. It starts out by first installing YugaWare, the YugabyteDB Admin Console in a highly available mode and then spinning up YugabyteDB clusters on one or more regions (across public cloud and private on-premise data centers).
The Yugabyte Platform is best fit for mission-critical deployments, such as production or pre-production testing. It starts out by first installing YugaWare, the YugabyteDB Admin Console, in a highly available mode and then spinning up YugabyteDB clusters on one or more regions (across public cloud and private on-premise data centers).

YugaWare is a containerized application that is installed and managed using <a href="https://www.replicated.com/" target="_blank">Replicated</a> for mission-critical environments (such as production or performance or failure mode testing). Replicated is a purpose-built tool for on-premise deployments and life cycle management of containerized applications. For environments that are not mission-critical, such as those needed for local development or simple functional testing, you can also use <a href="../../quick-start/install">YugabyteDB</a>.

Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
title: Configure the YugaWare Admin Console
headerTitle: Configure Admin Console
linkTitle: 3. Configure Admin Console
description: Configure YugaWare, the Admin Console, for your YugabyteDB clusters.
description: Configure the YugabyteDB Admin Console.
aliases:
- deploy/enterprise-edition/configure-admin-console/
menu:
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Configure Amazon Web Services (AWS) for YugabyteDB using YugaWare
title: Configure Amazon Web Services (AWS) for YugabyteDB deployments
headerTitle: Configure cloud providers
linkTitle: 4. Configure cloud providers
description: Configure Amazon Web Services (AWS) for YugabyteDB clusters using the YugaWare Admin Console
description: Configure Amazon Web Services (AWS) for YugabyteDB deployments using the YugabyteDB Admin Console
aliases:
- /deploy/enterprise-edition/configure-cloud-providers/
- /latest/deploy/enterprise-edition/configure-cloud-providers/
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Configure Microsoft Azure for YugabyteDB using YugaWare
title: Configure Microsoft Azure for YugabyteDB deployments
headerTitle: Configure cloud providers
linkTitle: 4. Configure cloud providers
description: Configure Microsoft Azure for YugabyteDB clusters using YugaWare
description: Configure Microsoft Azure for YugabyteDB deployments using the YugabyteDB Admin Console
menu:
latest:
identifier: configure-cloud-providers-3-azure
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Configure Google Cloud Platform (GCP) for YugabyteDB using YugaWare
title: Configure Google Cloud Platform (GCP) for YugabyteDB deployments
headerTitle: Configure cloud providers
linkTitle: 4. Configure cloud providers
description: Configure Google Cloud Platform (GCP) for YugabyteDB clusters using the YugaWare Admin Console
description: Configure Google Cloud Platform (GCP) for YugabyteDB deployments using the YugabyteDB Admin Console
menu:
latest:
identifier: configure-cloud-providers-2-gcp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Configure Kubernetes for YugabyteDB using YugaWare
title: Configure Kubernetes for YugabyteDB deployments
headerTitle: Configure cloud providers
linkTitle: 4. Configure cloud providers
description: Configure Kubernetes for YugabyteDB clusters using the YugaWare Admin Console
description: Configure Kubernetes for YugabyteDB deployments using the YugabyteDB Admin Console
menu:
latest:
identifier: configure-cloud-providers-4-kubernetes
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Configure on-premises data centers for YugabyteDB using YugaWare
title: Configure on-premises data centers for YugabyteDB deployments
headerTitle: Configure cloud providers
linkTitle: 4. Configure cloud providers
description: Configure on-premises data centers for YugabyteDB clusters using the YugaWare Admin Console
description: Configure on-premises data centers for YugabyteDB deployments using the YugabyteDB Admin Console
menu:
latest:
identifier: configure-cloud-providers-5-onprem
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
title: Prepare cloud environments for Yugabyte Platform and YugaWare
headerTitle: Prepare cloud environment
linkTitle: 1. Prepare cloud environment
description: Prepare your cloud environment (AWS or GCP) for the Yugabyte Platform and YugaWare
description: Prepare your cloud environment for the Yugabyte Platform
aliases:
- /deploy/enterprise-edition/prepare-cloud-environment/
menu:
2 changes: 1 addition & 1 deletion docs/content/latest/manage/_index.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
title: Manage YugabyteDB
headerTitle: Manage
linkTitle: Manage
description: Manage YugabyteDB
description: Manage YugabyteDB clusters.
image: /images/section_icons/quick_start/sample_apps.png
headcontent:
aliases:
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Back up and restore Yugabyte Platform clusters
title: Back up and restore clusters using Yugabyte Platform
headerTitle: Back up and restore
linkTitle: Back up and restore
description: Use the YugabyteDB Admin Console to back up and restore clusters.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Health checking and alerts using YugaWare
title: Health checking and alerts using using Yugabyte Platform
headerTitle: Health checking and alerts
linkTitle: Health checking and alerts
description: Use YugaWare for health checking and alerts
description: Use Yugabyte Platform for health checking and alerts
aliases:
- /manage/enterprise-edition/cluster-health/
- /manage/cluster-health/
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Create a multi-region Yugabyte Platform universe
title: Create a multi-region universe using using Yugabyte Platform
headerTitle: Create universe - Multi-region
linkTitle: Create universe - Multi-region
description: Create a Yugabyte Platform universe that spans multiple geographic regions.
description: Create a YugabyteDB universe that spans multiple geographic regions using Yugabyte Platform.
menu:
latest:
identifier: manage-create-universe-multi-region
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Create a multi-zone Yugabyte Platform universe
title: Create a multi-zone universe using Yugabyte Platform
headerTitle: Create universe - Multi-zone
linkTitle: Create universe - Multi-zone
description: Use YugaWare to create a Yugabyte Platform universe in one geographic region across multiple zones.
description: Create a YugabyteDB universe that spans multiple availability zones using Yugabyte Platform.
aliases:
- /manage/enterprise-edition/create-universe/
menu:
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Delete a universe using YugaWare
title: Delete a universe using Yugabyte Platform
headerTitle: Delete universe
linkTitle: Delete universe
description: Delete a universe using YugaWare
description: Delete a universe using Yugabyte Platform.
aliases:
- /manage/enterprise-edition/delete-universe/
menu:
4 changes: 2 additions & 2 deletions docs/content/latest/manage/enterprise-edition/edit-config.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Edit configuration flags using YugaWare
title: Edit configuration flags using Yugabyte Platform
headerTitle: Edit configuration flags
linkTitle: Edit configuration flags
description: Edit configuration flags using YugaWare
description: Edit configuration flags using Yugabyte Platform.
aliases:
- /manage/enterprise-edition/edit-flags/
menu:
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Edit universe using YugaWare
title: Edit universe using Yugabyte Platform
headerTitle: Edit universe
linkTitle: Edit universe
description: Use the YugaWare Admin Console to edit a universe.
description: Use the YugabyteDB Admin Console to edit a universe.
aliases:
- /manage/enterprise-edition/edit-universe/
menu:
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Create and edit instance tags using YugaWare
title: Create and edit instance tags using Yugabyte Platform
headerTitle: Create and edit instance tags
linkTitle: Create and edit instance tags
description: Create and edit instance tags using YugaWare
description: Create and edit instance tags using Yugabyte Platform.
aliases:
- /manage/enterprise-edition/instance-tags/
menu:
4 changes: 2 additions & 2 deletions docs/content/latest/manage/enterprise-edition/node-actions.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Node status and actions in YugaWare
title: Node status and actions in Yugabyte Platform
headerTitle: Node status and actions
linkTitle: Node status and actions
description: Node status and actions in YugaWare
description: Node status and actions in Yugabyte Platform.
aliases:
- /manage/enterprise-edition/node-actions/
menu:
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
title: Create read replica clusters
headerTitle: Create read replica clusters
linkTitle: Read replica clusters
description: Create a read replica cluster in a hybrid cloud deployment using YugaWare.
description: Create a read replica cluster using Yugabyte Platform.
menu:
latest:
identifier: manage-read-replicas
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Upgrade universes using YugaWare
title: Upgrade universes using Yugabyte Platform
headerTitle: Upgrade universe
linkTitle: Upgrade universe
description: Upgrade universes using YugaWare.
description: Upgrade universes using Yugabyte Platform.
aliases:
- /manage/enterprise-edition/upgrade-universe/
menu:

0 comments on commit daf161f

Please sign in to comment.