Skip to content

Commit 92bf77a

Browse files
AUTO: Sync ScalarDB docs in English to docs site repo (#1116)
Co-authored-by: josh-wong <[email protected]>
1 parent 0ee9156 commit 92bf77a

File tree

1 file changed

+50
-34
lines changed

1 file changed

+50
-34
lines changed

versioned_docs/version-3.14/roadmap.mdx

Lines changed: 50 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -18,43 +18,20 @@ If you have a feature request or want to prioritize feature development, please
1818

1919
:::
2020

21-
### CY2025 Q1
22-
23-
#### New capabilities
24-
25-
- **Vector store abstraction**
26-
- Users will be able to store and search embeddings (vectors) in and from vector stores through a new vector store interface in ScalarDB. With this feature, users can simplify the process of realizing retrieval-augmented generation (RAG) with large language models (LLMs) by reading data from databases through the existing ScalarDB interface, creating embeddings from the data, and storing and searching the embeddings to and from a vector store through the new interface.
27-
28-
#### Security
29-
30-
- **Attributed-based access control (ABAC)**
31-
- Users will be able to authorize accesses to the underlying databases in a finer-grained way. In addition to the current simple authorization where ScalarDB checks if a user is authorized to issue particular operations to a table, ScalarDB will check if a user can access particular records based on the attributes of the user and the records.
32-
33-
#### Usability
34-
35-
- **Addition of time-related data types**
36-
- Users will be able to use time-related data types, which will make their existing applications easier to migrate.
37-
38-
#### Cloud support
39-
40-
- **Container offering in Azure Marketplace**
41-
- Users will be able to deploy ScalarDB Cluster by using the Azure container offering, which enables users to use a pay-as-you-go subscription model.
42-
- **Google Cloud Platform (GCP) support**
43-
- Users will be able to deploy ScalarDB Cluster in Google Kubernetes Engine (GKE) in GCP.
4421

4522
### CY2025 Q2
4623

47-
#### New capabilities
48-
49-
- **Native secondary index**
50-
- Users will be able to define flexible secondary indexes. The existing secondary index is limited because it is implemented based on the common capabilities of the supported databases' secondary indexes. Therefore, for example, you cannot define a multi-column index. The new secondary index will be created at the ScalarDB layer so that you can create more flexible indexes, like a multi-column index.
5124

5225
#### Support for additional databases
5326

27+
- **IBM Db2**
28+
- Users will be able to use IBM Db2 as an underlying database through ScalarDB Cluster.
29+
- **TiDB**
30+
- Users will be able to use TiDB as an underlying database through ScalarDB Cluster.
5431
- **Databricks**
55-
- Users will be able to use Databricks as an underlying database through ScalarDB Cluster.
32+
- Users will be able to use Databricks as an underlying database through ScalarDB Cluster and ScalarDB Analytics.
5633
- **Snowflake**
57-
- Users will be able to use Snowflake as an underlying database through ScalarDB Cluster.
34+
- Users will be able to use Snowflake as an underlying database through ScalarDB Cluster and ScalarDB Analytics.
5835

5936
#### Usability
6037

@@ -67,11 +44,33 @@ If you have a feature request or want to prioritize feature development, please
6744

6845
#### Performance
6946

47+
- **Addition of read-committed isolation**
48+
- Users will be able to run transactions with a read-committed isolation to achieve better performance for applications that do not require strong correctness.
49+
- **One-phase commit optimization for a single relational database**
50+
- Users will be able to run a transaction more efficiently by using one-phase commit if the operations of the transaction are all applied to a single database or a single partition.
51+
- **Optimization for multiple write operations per database**
52+
- Users will be able to run transactions more efficiently with a batch preparation and commitment if there are multiple write operations for a database.
53+
- **Optimization for read-only transactions**
54+
- Users will be able to run transactions more efficiently by avoiding coordinator writes when committing transactions.
7055
- **Removal of WAL-interpreted views in ScalarDB Analytics**
7156
- Users will be able to read committed data by using ScalarDB Core instead of WAL-interpreted views, which will increase query performance.
7257

58+
#### Cloud support
59+
60+
- **Container offering in Azure Marketplace for ScalarDB Cluster**
61+
- Users will be able to deploy ScalarDB Cluster by using the Azure container offering, which enables users to use a pay-as-you-go subscription model.
62+
- **Google Cloud Platform (GCP) support for ScalarDB Cluster**
63+
- Users will be able to deploy ScalarDB Cluster in Google Kubernetes Engine (GKE) in GCP.
64+
- **Container offering in Amazon Marketplace for ScalarDB Analytics**
65+
- Users will be able to deploy ScalarDB Analytics by using the container offering, which enables users to use a pay-as-you-go subscription model.
66+
7367
### CY2025 Q3
7468

69+
#### New capabilities
70+
71+
- **Decoupled metadata management**
72+
- Users will be able to start using ScalarDB Cluster without migrating or changing the schemas of existing applications by managing the transaction metadata of ScalarDB in a separate location.
73+
7574
#### Usability
7675

7776
- **Views**
@@ -83,25 +82,42 @@ If you have a feature request or want to prioritize feature development, please
8382
- **Enabling of read operations during a paused duration**
8483
- Users will be able to issue read operations even during a paused duration so that users can still read data while taking backups.
8584

85+
#### Performance
86+
87+
- **One-phase commit optimization**
88+
- Users will experience faster execution for simple transactions that write to a single partition. ScalarDB will omit the prepare-record and commit-state phases without sacrificing correctness if a transaction updates only one partition by exploiting the single-partition linearizable operations of the underlying databases.
89+
8690
#### Scalability and availability
8791

8892
- **Semi-synchronous replication**
8993
- Users will be able to replicate the data of ScalarDB-based applications in a disaster-recoverable manner. For example, assume you provide a primary service in Tokyo and a standby service in Osaka. In case of catastrophic failure in Tokyo, you can switch the primary service to Osaka so that you can continue to provide the service without data loss and extended downtime.
9094

9195
### CY2025 Q4
9296

97+
#### New capabilities
98+
99+
- **Native secondary index**
100+
- Users will be able to define flexible secondary indexes. The existing secondary index is limited because it is implemented based on the common capabilities of the supported databases' secondary indexes. Therefore, for example, you cannot define a multi-column index. The new secondary index will be created at the ScalarDB layer so that you can create more flexible indexes, like a multi-column index.
101+
- **Better catalog management**
102+
- Users will be able to manage a data catalog across diverse databases in a unified manner.
103+
104+
#### Support for additional databases (object storage)
105+
106+
- **Azure Blob Storage**
107+
- Users will be able to use Azure Blob Storage as an underlying database through ScalarDB Cluster.
108+
- **Amazon S3**
109+
- Users will be able to use Amazon S3 as an underlying database through ScalarDB Cluster.
110+
- **Google Cloud Storage**
111+
- Users will be able to use Google Cloud Storage as an underlying database through ScalarDB Cluster and ScalarDB Analytics.
112+
93113
#### Performance
94114

95-
- **One-phase commit optimization**
96-
- Users will experience faster execution for simple transactions that write to a single partition. ScalarDB will omit the prepare-record and commit-state phases without sacrificing correctness if a transaction updates only one partition by exploiting the single-partition linearizable operations of the underlying databases.
97115
- **Reduction of storage space needed for managing ScalarDB metadata**
98116
- Users will likely use less storage space to run ScalarDB. ScalarDB will remove the before image of committed transactions after they are committed. However, whether or not those committed transactions will impact actual storage space depends on the underlying databases.
99-
- **Removal of coordinator writes for read-only transactions**
100-
- Users will experience faster execution for read-only transactions by removing coordinator writes for those transactions.
101117

102118
#### Cloud support
103119

104120
- **Red Hat OpenShift support**
105121
- Users will be able to use Red Hat–certified Helm Charts for ScalarDB Cluster in OpenShift environments.
106122
- **Container offering in Google Cloud Marketplace**
107-
- Users will be able to deploy ScalarDB Cluster by using the Google Cloud container offering, which enables users to use a pay-as-you-go subscription model.
123+
- Users will be able to deploy ScalarDB Cluster by using the Google Cloud container offering, which enables users to use a pay-as-you-go subscription model.

0 commit comments

Comments
 (0)