Skip to content

Commit 5c1afff

Browse files
committed
AUTO: Sync ScalarDB docs in English to docs site repo
1 parent a11ce71 commit 5c1afff

File tree

5 files changed

+532
-57
lines changed

5 files changed

+532
-57
lines changed

docs/features.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ This document briefly explains which features are available in which editions of
2121
| [SQL interface (SQL API, JDBC, Spring Data JDBC, and LINQ)](scalardb-sql/index.mdx) |||||
2222
| [GraphQL interface](scalardb-graphql/index.mdx) |||||
2323
| [Vector search interface](scalardb-cluster/getting-started-with-vector-search.mdx) ||| ✅ (3.15+) (Private Preview**) ||
24-
| [Analytical query processing across ScalarDB-managed data sources](scalardb-samples/scalardb-analytics-spark-sample/README.mdx) |||| ✅ (3.14+) |
25-
| [Analytical query processing across non-ScalarDB-managed data sources](scalardb-samples/scalardb-analytics-spark-sample/README.mdx) |||| ✅ (3.15+) |
24+
| [Analytical query processing across ScalarDB-managed data sources](scalardb-analytics/quickstart.mdx) |||| ✅ (3.14+) |
25+
| [Analytical query processing across non-ScalarDB-managed data sources](scalardb-analytics/quickstart.mdx) |||| ✅ (3.15+) |
2626
| [Remote replication](scalardb-cluster/remote-replication.mdx) ||| ✅ (3.16+) (Private Preview**) ||
2727

2828
\* This feature is not available in the Enterprise Premium edition. If you want to use this feature, please [contact us](https://www.scalar-labs.com/contact).

docs/quickstart-scalardb-analytics-overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ displayed_sidebar: docsEnglish
1010
In this sub-category, you can see tutorials on how to run analytical queries over the databases that you write through ScalarDB by using a component called ScalarDB Analytics.
1111

1212
- To try running analytical queries through PostgreSQL, see [Getting Started with ScalarDB Analytics with PostgreSQL](scalardb-analytics-postgresql/getting-started.mdx).
13-
- To try running analytical queries through Spark, see [Getting Started with ScalarDB Analytics](scalardb-samples/scalardb-analytics-spark-sample/README.mdx).
13+
- To try running analytical queries through Spark, see [Getting Started with ScalarDB Analytics](scalardb-analytics/quickstart.mdx).
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
tags:
3+
- Enterprise Option
4+
displayed_sidebar: docsEnglish
5+
---
6+
7+
# ScalarDB Analytics
8+
9+
import WarningLicenseKeyContact from '/src/components/en-us/_warning-license-key-contact.mdx';
10+
11+
**ScalarDB Analytics** is the analytical component of ScalarDB. Similar to ScalarDB, it unifies diverse data sources - ranging from RDBMSs like PostgreSQL and MySQL to NoSQL databases such as Cassandra and DynamoDB - into a single logical database. While ScalarDB focuses on operational workloads with strong transactional consistency across multiple databases, ScalarDB Analytics is optimized for analytical workloads. It supports a wide range of queries, including complex joins, aggregations, and window functions. ScalarDB Analytics operates seamlessly on both ScalarDB-managed data sources and non-ScalarDB-managed ones, enabling advanced analytical queries across various datasets.
12+
13+
The current version of ScalarDB Analytics leverages **Apache Spark** as its execution engine. It provides a unified view of ScalarDB-managed and non-ScalarDB-managed data sources by utilizing a Spark custom catalog. Using ScalarDB Analytics, you can treat tables from these data sources as native Spark tables. This allows you to execute arbitrary Spark SQL queries seamlessly. For example, you can join a table stored in Cassandra with a table in PostgreSQL to perform a cross-database analysis with ease.
14+
15+
<WarningLicenseKeyContact product="ScalarDB Analytics with Spark" />
16+
17+
## Further reading
18+
19+
This section provides links to various ScalarDB Analytics–related documentation.
20+
21+
### Getting started
22+
23+
* [Getting Started with ScalarDB Analytics](./quickstart.mdx) - A quick tutorial to set up ScalarDB Analytics and run federated queries
24+
25+
### Key documentation
26+
27+
* [Overview](./overview.mdx) - Understand ScalarDB Analytics architecture and features
28+
* [Deploy ScalarDB Analytics](./deployment.mdx) - Deploy on Amazon EMR, Databricks, and other platforms
29+
* [Run Analytical Queries](./run-analytical-queries.mdx) - Execute queries across multiple databases
30+
* [Administration Guide](./administration.mdx) - Manage catalogs and data sources
31+
* [Configuration Reference](./configuration.mdx) - Configure Spark and data sources
32+
33+
### Technical details
34+
35+
* [Design Document](./design.mdx) - Deep dive into the technical architecture
36+
* [Version Compatibility](./run-analytical-queries.mdx#version-compatibility) - Supported Spark and Scala versions

0 commit comments

Comments
 (0)