Skip to content

Commit 5f886b9

Browse files
committed
refactor: folder structure changed
1 parent 684f0c6 commit 5f886b9

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

docs/data_engineering/data_lakehouse/apache_iceberg/iceberg_rust.md renamed to docs/data_engineering/data_lakehouse/apache_iceberg.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
description: Apache Iceberg Rust Package
1+
# Apache Iceberg
22

3-
# Rust package
3+
## Rust package
44

55
!!! bug
66

docs/data_engineering/data_lakehouse/delta_lake/delta_rs.md renamed to docs/data_engineering/data_lakehouse/delta_lake.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
title: delta-rs
1+
# Delta lake
22

3-
# delta-rs (Rust)
3+
## delta-rs (Rust)
44

5-
## Dependencies
5+
### Dependencies
66

77
```toml
88
[dependencies]
@@ -12,7 +12,7 @@ tokio = "1.42.0"
1212

1313
The `datafusion` feature is needed to write data to a table.
1414

15-
## S3 configurations
15+
### S3 configurations
1616

1717
Everytime you want to use S3 as a data store, you need to add the following:
1818

@@ -34,7 +34,7 @@ The S3 configuration options could be set as environment variables too.
3434

3535
S3 requires a locking provider by default ([more information](https://delta-io.github.io/delta-rs/usage/writing/writing-to-s3-with-locking-provider/)). If you don't want to use a locking provider, you can disable it by setting the `AWS_S3_ALLOW_UNSAFE_RENAME` variable to `true`.
3636

37-
## Create table
37+
### Create table
3838

3939
```rust
4040
use deltalake::{
@@ -74,7 +74,7 @@ async fn main() {
7474
}
7575
```
7676

77-
## Insert data
77+
### Insert data
7878

7979
```rust
8080
use deltalake::arrow::array::{Int32Array, RecordBatch, StringArray};
@@ -123,7 +123,7 @@ async fn main() {
123123
}
124124
```
125125

126-
## Load table
126+
### Load table
127127

128128
Open table:
129129

@@ -156,7 +156,7 @@ async fn main() {
156156
}
157157
```
158158

159-
## Time travel
159+
### Time travel
160160

161161
To load the previous state of a table, you can use the `open_table_with_version` function:
162162

@@ -171,7 +171,7 @@ If the table is already loaded and you want to change the version number, just u
171171
table.load_version(2).await.expect("Load failed");
172172
```
173173

174-
## Examining Table
174+
### Examining Table
175175

176176
You can find more information about this inside the [official documentation](https://delta-io.github.io/delta-rs/usage/examining-table/).
177177

0 commit comments

Comments
 (0)