Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - Document S3 and HDFS connections #265

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion docs/modules/ROOT/pages/usage.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down