core-site.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0"?>
  2. <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
  3. <!--
  4. ~ Licensed to the Apache Software Foundation (ASF) under one
  5. ~ or more contributor license agreements. See the NOTICE file
  6. ~ distributed with this work for additional information
  7. ~ regarding copyright ownership. The ASF licenses this file
  8. ~ to you under the Apache License, Version 2.0 (the
  9. ~ "License"); you may not use this file except in compliance
  10. ~ with the License. You may obtain a copy of the License at
  11. ~
  12. ~ http://www.apache.org/licenses/LICENSE-2.0
  13. ~
  14. ~ Unless required by applicable law or agreed to in writing, software
  15. ~ distributed under the License is distributed on an "AS IS" BASIS,
  16. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17. ~ See the License for the specific language governing permissions and
  18. ~ limitations under the License.
  19. -->
  20. <!-- Values used when running unit tests. Specify any values in here that
  21. should override the default values. -->
  22. <configuration>
  23. <property>
  24. <name>hadoop.tmp.dir</name>
  25. <value>target/build/test</value>
  26. <description>A base for other temporary directories.</description>
  27. <final>true</final>
  28. </property>
  29. <!-- Turn security off for tests by default -->
  30. <property>
  31. <name>hadoop.security.authentication</name>
  32. <value>simple</value>
  33. </property>
  34. <!--
  35. To run these tests.
  36. # Create a file auth-keys.xml - DO NOT ADD TO REVISION CONTROL
  37. # add the property test.fs.s3n.name to point to an S3 filesystem URL
  38. # Add the credentials for the service you are testing against
  39. -->
  40. <include xmlns="http://www.w3.org/2001/XInclude"
  41. href="auth-keys.xml"/>
  42. </configuration>