Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions hadoop-ozone/dist/src/main/compose/ozone/docker-config
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ OZONE-SITE.XML_ozone.scm.stale.node.interval=30s
OZONE-SITE.XML_ozone.scm.dead.node.interval=45s
OZONE-SITE.XML_hdds.heartbeat.interval=5s

OZONE-SITE.XML_dfs.container.ratis.datastream.enabled=true

OZONE_CONF_DIR=/etc/hadoop
OZONE_LOG_DIR=/var/log/hadoop

Expand Down
2 changes: 2 additions & 0 deletions hadoop-ozone/dist/src/main/compose/ozonesecure/docker-config
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ OZONE-SITE.XML_ozone.scm.dead.node.interval=45s
OZONE-SITE.XML_hdds.container.report.interval=60s
OZONE-SITE.XML_ozone.om.s3.grpc.server_enabled=true

OZONE-SITE.XML_dfs.container.ratis.datastream.enabled=true

HDFS-SITE.XML_dfs.datanode.kerberos.principal=dn/[email protected]
HDFS-SITE.XML_dfs.datanode.kerberos.keytab.file=/etc/security/keytabs/dn.keytab
HDFS-SITE.XML_dfs.web.authentication.kerberos.principal=HTTP/[email protected]
Expand Down
8 changes: 8 additions & 0 deletions hadoop-ozone/dist/src/main/smoketest/ozonefs/ozonefs.robot
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,18 @@ Check disk usage after create a file which uses RATIS replication type
Should contain ${result} ${expectedDiskUsage}


Put with Streaming
${result} = Execute ozone fs -D ozone.fs.datastream.enabled=true -put NOTICE.txt ${DEEP_URL}/STREAMING.txt
Should Be Empty ${result}
${result} = Execute ozone sh key list ${VOLUME}/${BUCKET} | jq -r '.[].name'
Should contain ${result} STREAMING.txt


List
${result} = Execute ozone fs -ls ${DEEP_URL}/
Should contain ${result} NOTICE.txt
Should contain ${result} PUTFILE.txt
Should contain ${result} STREAMING.txt

Move
Execute ozone fs -mv ${DEEP_URL}/NOTICE.txt ${DEEP_URL}/MOVED.TXT
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<declared.ozone.version>${ozone.version}</declared.ozone.version>

<!-- Apache Ratis version -->
<ratis.version>2.4.1</ratis.version>
<ratis.version>2.4.2-8b8bdda-SNAPSHOT</ratis.version>

<!-- Apache Ratis thirdparty version -->
<ratis.thirdparty.version>1.0.3</ratis.thirdparty.version>
Expand Down