Book Image

Learning HBase

By : Shashwat Shriparv
Book Image

Learning HBase

By: Shashwat Shriparv

Overview of this book

Table of Contents (18 chapters)
Learning HBase
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Important files in Hadoop


We will look at some important files that we need to consider. We will also see why these files are important in Hadoop. The following is the list of files:

  • Hadoop-default files: The following is the list of files that are shipped with Hadoop, which contains the default settings. Users must not change settings inside this file; rather, the changes must be done in site-specific files, which are listed in Hadoop overridden files.

    • mapred-default.xml

    • core-default.xml

    • hdfs-default.xml

    • yarn-default.xml

    • httpfs-default.xml

  • Hadoop configuration files to override default values: These are the files that are site specific or the values inside these files override the default parameters. So, changes must be made or new parameters must be added to these files:

    • mapred-site.xml

    • core-site.xml

    • hdfs-site.xml

    • yarn-site.xml

    • httpfs-site.xml

  • Hadoop configuration files to specify runtime parameters: These are the runtime files that provide Java-related settings and memory and...