diff --git a/docs/modules/ROOT/pages/usage.adoc b/docs/modules/ROOT/pages/usage.adoc index 5d46acc9..18c3cbd3 100644 --- a/docs/modules/ROOT/pages/usage.adoc +++ b/docs/modules/ROOT/pages/usage.adoc @@ -9,7 +9,31 @@ Please open an https://github.com/stackabletech/hive-operator/issues[issue] if y == S3 Support Hive supports creating tables in S3 compatible object stores. -To use this feature you need to provide connection details for the object store. +To use this feature you need to provide connection details for the object store using the xref:home:concepts:s3.adoc[S3Connection]. + +An example usage can look like this: + +[source,yaml] +---- + s3: + inline: + host: minio + port: 9000 + accessStyle: Path + credentials: + secretClass: simple-hive-s3-secret-class +---- + +== Apache HDFS Support + +As well as S3, Hive also supports creating tables in HDFS. +You can add the HDFS connection as follows: + +[source,yaml] +---- + hdfs: + configMap: my-hdfs-cluster # Name of the HdfsCluster +---- == Monitoring