Releases: colinmarc/hdfs
Releases · colinmarc/hdfs
v1.1.0
This release contains support for basic HA Namenode setups (specifically support for manual failovers; the library has no ability to check zookeeper). This was added in #77 by @itszootime.
See the new NewClient
method and accompanying ClientOptions
struct for details.
v1.0.4
v1.0.3
v1.0.2
v1.0.1
v1.0.0
This is a much-belated major release which includes lots of fixes and changes.
Major feature additions:
- #12, #43, #45 and #53 collectively add write support, including
Create
andAppend
functions, aFileWriter
type, ahdfs put
command, and more - #41 adds
LoadHadoopConf
and other tools for accessing the system Hadoop configuration
Minor fixes and changes:
- #16 corrects
Mkdirall
such that it doesn't return an error when the directory already exists - #20 fixes
ReadAt
andTail
to work correctly with short files - #55 updates
Rename
andhdfs mv
to overwrite by default - #18 fixes the semantics around picking a default user; the env variable
HADOOP_USER_NAME
is used if present and overrides the OS user.
v0.1.4
This is a small release, adding a few new features and fixes:
- 93e320c - Tail prints to stdout now, instead of stderr
- 7306883 - Directories created as part of a
get
orgetmerge
will be created as 0755, instead of 0644 - 5ced062 - Adds
GetContentSummary
, which is an efficient way to get the total disk usage for a directory tree (among other things). This made thedu
command much faster.