Skip to content

Commit 80138e4

Browse files
committed
AUTO: Sync ScalarDB docs in English to docs site repo
1 parent 3a567b3 commit 80138e4

File tree

1 file changed

+39
-25
lines changed

1 file changed

+39
-25
lines changed

versioned_docs/version-3.13/roadmap.mdx

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

1919
:::
2020

21-
### CY2024 Q4
21+
### CY2025 Q1
2222

2323
#### New capabilities
2424

25-
- **Data virtualization for analytics**
26-
- Users will be able to run read-only OLAP SQL queries on diverse data sources through ScalarDB Analytics. ScalarDB Analytics currently supports only ScalarDB-managed data stores, so this enhancement will virtually unify various data stores, like relational databases and NoSQL databases, and files in cloud object stores, like Amazon S3, without regard to whether the data sources are managed by ScalarDB transactions.
2725
- **Vector store abstraction**
2826
- 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.
2927

3028
#### Security
29+
3130
- **Fine-grained access control**
3231
- 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 users are authorized to issue particular operations, ScalarDB will check if users can access particular records.
3332

3433
#### Usability
3534

3635
- **Addition of time-related data types**
3736
- Users will be able to use time-related data types, which will make their existing applications easier to migrate.
38-
- **Removal of extra-write strategy**
39-
- Users will no longer be able to use the extra-write strategy to make transactions serializable. Although ScalarDB currently provides two strategies, extra-read and extra-write strategies, to make transactions serializable, the extra-write strategy has several limitations. For example, users can't issue write and scan operations in the same transaction. Therefore, the strategy will be removed so that users don't need to worry about such limitations when creating applications.
40-
41-
#### Performance
42-
43-
- **One-phase commit optimization**
44-
- 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.
45-
- **Reduction of storage space needed for managing ScalarDB metadata**
46-
- 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.
47-
- **Removal of coordinator writes for read-only transactions**
48-
- Users will experience faster execution for read-only transactions by removing coordinator writes for those transactions.
4937

5038
#### Cloud support
5139

@@ -54,37 +42,63 @@ If you have a feature request or want to prioritize feature development, please
5442
- **Google Cloud Platform (GCP) support**
5543
- Users will be able to deploy ScalarDB Cluster in Google Kubernetes Engine (GKE) in GCP.
5644

57-
### CY2025 Q1
45+
### CY2025 Q2
5846

5947
#### New capabilities
6048

6149
- **Native secondary index**
6250
- 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.
6351

52+
#### Support for additional databases
53+
54+
- **Databricks**
55+
- Users will be able to use Databricks as an underlying database through ScalarDB Cluster.
56+
- **Snowflake**
57+
- Users will be able to use Snowflake as an underlying database through ScalarDB Cluster.
58+
6459
#### Usability
6560

66-
- **Addition of SQL operations for aggregation**
67-
- Users will be able to issue aggregation operations in ScalarDB SQL.
61+
- **Addition of decimal data types**
62+
- Users will be able to use decimal data types so that users can handle decimal numbers with high precision.
63+
- **Removal of extra-write strategy**
64+
- Users will no longer be able to use the extra-write strategy to make transactions serializable. Although ScalarDB currently provides two strategies (extra-read and extra-write strategies) to make transactions serializable, the extra-write strategy has several limitations. For example, users can't issue write and scan operations in the same transaction. Therefore, the strategy will be removed so that users don't need to worry about such limitations when creating applications.
65+
- **Better governance in ScalarDB Analytics**
66+
- Users will be able to be authenticated and authorized by using the ScalarDB Core features.
6867

69-
- **Elimination of out-of-memory errors due to large scans**
70-
- Users will be able to issue large scans without experiencing out-of-memory errors.
71-
- **Enabling of read operations during a paused duration**
72-
- Users will be able to issue read operations even during a paused duration so that users can still read data while taking backups.
73-
- **Addition of more data types**
74-
- Users will be able to use more data types so that their existing applications will be easier to migrate.
68+
#### Performance
7569

76-
### CY2025 Q2 -
70+
- **Removal of WAL-interpreted views in ScalarDB Analytics**
71+
- Users will be able to read committed data by using ScalarDB Core instead of WAL-interpreted views.
72+
73+
### CY2025 Q3
7774

7875
#### Usability
7976

8077
- **Views**
81-
- Users will be able to define Views so that they can manage multiple different databases in an easier and simplified way.
78+
- Users will be able to define views so that they can manage multiple different databases in an easier and simplified way.
79+
- **Addition of SQL operations for aggregation**
80+
- Users will be able to issue aggregation operations in ScalarDB SQL.
81+
- **Elimination of out-of-memory errors due to large scans**
82+
- Users will be able to issue large scans without experiencing out-of-memory errors.
83+
- **Enabling of read operations during a paused duration**
84+
- Users will be able to issue read operations even during a paused duration so that users can still read data while taking backups.
8285

8386
#### Scalability and availability
8487

8588
- **Semi-synchronous replication**
8689
- Users will be able to provide 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.
8790

91+
### CY2025 Q4
92+
93+
#### Performance
94+
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.
97+
- **Reduction of storage space needed for managing ScalarDB metadata**
98+
- 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.
101+
88102
#### Cloud support
89103

90104
- **Red Hat OpenShift support**

0 commit comments

Comments
 (0)