You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/maintenance/filesystems.md
+83Lines changed: 83 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,7 @@ FileSystem pluggable jars for user to query tables from Spark/Hive side.
42
42
| Aliyun OSS | oss:// | Y ||
43
43
| S3 | s3:// | Y ||
44
44
| Tencent Cloud Object Storage | cosn:// | Y ||
45
+
| Huawei OBS | obs:// | Y ||
45
46
46
47
## Dependency
47
48
@@ -514,3 +515,85 @@ spark-sql \
514
515
{{< /tab >}}
515
516
516
517
{{< /tabs >}}
518
+
519
+
## OBS
520
+
521
+
{{< stable >}}
522
+
523
+
Download [paimon-obs-{{< version >}}.jar](https://repo.maven.apache.org/maven2/org/apache/paimon/paimon-obs/{{< version >}}/paimon-obs-{{< version >}}.jar).
524
+
525
+
{{< /stable >}}
526
+
527
+
{{< unstable >}}
528
+
529
+
Download [paimon-obs-{{< version >}}.jar](https://repository.apache.org/snapshots/org/apache/paimon/paimon-obs/{{< version >}}/).
530
+
531
+
{{< /unstable >}}
532
+
533
+
{{< tabs "obs" >}}
534
+
535
+
{{< tab "Flink" >}}
536
+
537
+
{{< hint info >}}
538
+
If you have already configured [obs access through Flink](https://nightlies.apache.org/flink/flink-docs-stable/docs/deployment/filesystems/s3/) (Via Flink FileSystem),
539
+
here you can skip the following configuration.
540
+
{{< /hint >}}
541
+
542
+
Put `paimon-obs-{{< version >}}.jar` into `lib` directory of your Flink home, and create catalog:
543
+
544
+
```sql
545
+
CREATE CATALOG my_catalog WITH (
546
+
'type' = 'paimon',
547
+
'warehouse' = 'obs://<bucket>/<path>',
548
+
'fs.obs.endpoint' = 'obs-endpoint-hostname',
549
+
'fs.obs.access.key' = 'xxx',
550
+
'fs.obs.secret.key' = 'yyy'
551
+
);
552
+
```
553
+
554
+
{{< /tab >}}
555
+
556
+
{{< tab "Spark" >}}
557
+
558
+
{{< hint info >}}
559
+
If you have already configured obs access through Spark (Via Hadoop FileSystem), here you can skip the following configuration.
560
+
{{< /hint >}}
561
+
562
+
Place `paimon-obs-{{< version >}}.jar` together with `paimon-spark-{{< version >}}.jar` under Spark's jars directory, and start like
0 commit comments