mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 08:23:47 +01:00
aed77a8fb2
The latter is more portable, while the former only works on systems where /bin/bash exists (or is symlinked appropriately). |
||
---|---|---|
.. | ||
core-site.xml | ||
Dockerfile | ||
hdfs-site.xml | ||
httpfs-site.xml | ||
kdc.conf | ||
kms-site.xml | ||
krb5.conf | ||
mapred-site.xml | ||
README.md | ||
run.sh | ||
yarn-site.xml |
Test HDFS
This is a docker image for rclone's integration tests which runs an hdfs filesystem in a docker image.
Build
docker build --rm -t rclone/test-hdfs .
docker push rclone/test-hdfs
Test
configure remote:
[TestHdfs]
type = hdfs
namenode = 127.0.0.1:8020
username = root
run tests
cd backend/hdfs
GO111MODULE=on go test -v
hdfs logs will be available in .stdout.log
and .stderr.log
Kerberos
test can be run against kerberos-enabled hdfs
-
configure local krb5.conf
[libdefaults] default_realm = KERBEROS.RCLONE [realms] KERBEROS.RCLONE = { kdc = localhost }
-
enable kerberos in remote configuration
[TestHdfs] ... service_principal_name = hdfs/localhost data_transfer_protection = privacy
-
run test
cd backend/hdfs KERBEROS=true GO111MODULE=on go test -v