hdfs-deprecated icon indicating copy to clipboard operation
hdfs-deprecated copied to clipboard

[DEPRECATED] This project is deprecated. It will be archived on December 1, 2017.

Results 75 hdfs-deprecated issues
Sort by recently updated
recently updated
newest added

Create process for upgrade. Ensure that the framework upgrades successfully without data loss, etc.

For data nodes, we do not need to recover them in the case that there is a sufficient number of data nodes. There are a couple of options here regarding...

The user would like to configure the number of data nodes used.

configuration

Request the appropriate port for NN, DN, and JN's

This is because there are datanodes on every slave so there isn't any room to start another JN/NN/ZK when a slave is detached. We should instead be shutting down a...

stability

Looks like SchedulerConf is bloating the build with all of hadoop-commons just for a few classes. ``` $ grep -rn "org.apache.hadoop" src/ src/main/java/org/apache/mesos/hdfs/config/SchedulerConf.java:4:import org.apache.hadoop.conf.Configuration; src/main/java/org/apache/mesos/hdfs/config/SchedulerConf.java:5:import org.apache.hadoop.conf.Configured; src/main/java/org/apache/mesos/hdfs/config/SchedulerConf.java:6:import org.apache.hadoop.fs.Path; src/test/java/org/apache/mesos/hdfs/TestScheduler.java:4:import org.apache.hadoop.conf.Configuration;...

enhancement

Some parameters, such as `dfs.namenode.heartbeat.recheck-interval` are outdated and don't exist in the [2.5.0 spec](https://hadoop.apache.org/docs/r2.3.0/hadoop-project-dist/hadoop-hdfs/hdfs-default.xml)

configuration

Add configuration parameters for AWS key and secret to be used in core-site.xml. Resulting XML in core-site.xml should look like this: ``` XML fs.s3n.awsAccessKeyId {AWS_ACCESS_KEY} fs.s3n.awsSecretAccessKey {AWS_SECRET_KEY} ```

configuration

Include fs.defaultFS and fs.default.name in core-site.xml to allow dfs commands without providing full site name in the command. Running `hdfs dfs -ls /` instead of `hdfs dfs -ls hdfs://hdfs/` Xml...

configuration