Skip to content

Commit 3cea246

Browse files
committed
Add reference to how to setup table space using the helm charts
1 parent e18440d commit 3cea246

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

docs/user_guides/fs/feature_group/create.md

+15-3
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ When you create a feature group, you can specify the table format you want to us
8989

9090
During the creation of a feature group, it is possible to define the `storage_connector` parameter, this allows for management of offline data in the desired table format outside the Hopsworks cluster. Currently, only [S3](../storage_connector/creation/s3.md) connectors and "DELTA" `time_travel_format` format is supported.
9191

92-
##### Online config
92+
##### Online Table Configuration
9393

94-
While defining online-enabled feature groups it is also possible to configure an online table. You can specify [table options](https://docs.rondb.com/table_options/#table-options) by providing comments. Additionally, it is also possible to define whether online data is stored in memory or on disk using [table space](https://docs.rondb.com/disk_columns/#disk-columns).
94+
When defining online-enabled feature groups it is also possible to configure the online table. You can specify [table options](https://docs.rondb.com/table_options/#table-options) by providing comments. Additionally, it is also possible to define whether online data is stored in memory or on disk using [table space](https://docs.rondb.com/disk_columns/#disk-columns).
9595

96-
The code example shows the creation of an online-enabled feature group that stores online data on disk using `ts_1` table space and setting several table properties in the comment section.
96+
The code example shows the creation of an online-enabled feature group that stores online data on disk using `ts_1` table space and sets several table properties in the comment section.
9797

9898
```
9999
fg = fs.create_feature_group(
@@ -106,6 +106,18 @@ fg = fs.create_feature_group(
106106
)
107107
```
108108

109+
!!! note Table Space
110+
The table space needs to be provisioned at system level before it can be used. You can do so by adding the following parameters to the values.yaml file used for your deployment with the Helm Charts:
111+
112+
```yaml
113+
rondb:
114+
resources:
115+
requests:
116+
storage:
117+
diskColumnGiB: 2
118+
```
119+
120+
109121

110122
#### Streaming Write API
111123

0 commit comments

Comments
 (0)