s3a.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <!--
  2. ~ Licensed to the Apache Software Foundation (ASF) under one
  3. ~ or more contributor license agreements. See the NOTICE file
  4. ~ distributed with this work for additional information
  5. ~ regarding copyright ownership. The ASF licenses this file
  6. ~ to you under the Apache License, Version 2.0 (the
  7. ~ "License"); you may not use this file except in compliance
  8. ~ with the License. You may obtain a copy of the License at
  9. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing, software
  13. ~ distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ See the License for the specific language governing permissions and
  16. ~ limitations under the License.
  17. -->
  18. <configuration>
  19. <!--
  20. S3A is a blobstore, with very different behavior than a
  21. classic filesystem.
  22. -->
  23. <property>
  24. <name>fs.contract.test.root-tests-enabled</name>
  25. <value>true</value>
  26. </property>
  27. <property>
  28. <name>fs.contract.test.random-seek-count</name>
  29. <value>10</value>
  30. </property>
  31. <property>
  32. <name>fs.contract.is-blobstore</name>
  33. <value>true</value>
  34. </property>
  35. <property>
  36. <name>fs.contract.create-visibility-delayed</name>
  37. <value>true</value>
  38. </property>
  39. <property>
  40. <name>fs.contract.is-case-sensitive</name>
  41. <value>true</value>
  42. </property>
  43. <property>
  44. <name>fs.contract.rename-returns-false-if-source-missing</name>
  45. <value>true</value>
  46. </property>
  47. <property>
  48. <name>fs.contract.rename-remove-dest-if-empty-dir</name>
  49. <value>true</value>
  50. </property>
  51. <property>
  52. <name>fs.contract.supports-append</name>
  53. <value>false</value>
  54. </property>
  55. <property>
  56. <name>fs.contract.supports-atomic-directory-delete</name>
  57. <value>false</value>
  58. </property>
  59. <property>
  60. <name>fs.contract.supports-atomic-rename</name>
  61. <value>false</value>
  62. </property>
  63. <property>
  64. <name>fs.contract.supports-block-locality</name>
  65. <value>false</value>
  66. </property>
  67. <property>
  68. <name>fs.contract.supports-concat</name>
  69. <value>false</value>
  70. </property>
  71. <property>
  72. <name>fs.contract.supports-getfilestatus</name>
  73. <value>true</value>
  74. </property>
  75. <property>
  76. <name>fs.contract.supports-seek</name>
  77. <value>true</value>
  78. </property>
  79. <property>
  80. <name>fs.contract.supports-seek-on-closed-file</name>
  81. <value>true</value>
  82. </property>
  83. <property>
  84. <name>fs.contract.rejects-seek-past-eof</name>
  85. <value>true</value>
  86. </property>
  87. <property>
  88. <name>fs.contract.supports-strict-exceptions</name>
  89. <value>true</value>
  90. </property>
  91. <property>
  92. <name>fs.contract.supports-unix-permissions</name>
  93. <value>false</value>
  94. </property>
  95. <property>
  96. <name>fs.contract.rename-overwrites-dest</name>
  97. <value>false</value>
  98. </property>
  99. </configuration>