This is an automated email from the ASF dual-hosted git repository. weichiu pushed a commit to branch HDDS-13371 in repository https://gitbox.apache.org/repos/asf/ozone.git
commit 4b7e86877577947b5d92fac54695df36c6081473 Author: Wei-Chiu Chuang <[email protected]> AuthorDate: Thu Jul 3 03:13:14 2025 -0700 docs: Add ozone.om.transport.class to RPC encryption doc Change-Id: I8a6bc00c1c2125f0963e9dd550e670d4957bc2e2 --- hadoop-hdds/docs/content/security/protect-in-transit-traffic.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hadoop-hdds/docs/content/security/protect-in-transit-traffic.md b/hadoop-hdds/docs/content/security/protect-in-transit-traffic.md index bfcf544f0b..b06f0fb4cf 100644 --- a/hadoop-hdds/docs/content/security/protect-in-transit-traffic.md +++ b/hadoop-hdds/docs/content/security/protect-in-transit-traffic.md @@ -36,6 +36,10 @@ Ozone traffic, whether between the cluster and client, or internal inside the cl </property> ``` +### ozone.om.transport.class + +While the default is `org.apache.hadoop.ozone.om.protocolPB.Hadoop3OmTransportFactory`, it is possible to specify a gRPC based transport using the `ozone.om.transport.class` configuration property: `org.apache.hadoop.ozone.om.protocolPB.GrpcOmTransportFactory`. In this case, the Hadoop RPC configuration is not applicable. + ## gRPC TLS Encryption Ozone traffic may also be transferred via gRPC (e.g., Ratis write pipeline or client reading blocks from DataNode). To enable TLS for gRPC traffic, set `hdds.grpc.tls.enabled` to `true`. This encrypts communication between Ozone services that use gRPC. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
