Advertisement
ronbuckley

OCLC Core-site.xml

Apr 18th, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. -PROD- hadoopsup@wchddb01pxdu:/prod/hadoop/prod/hadoop/conf$cat core-site.xml
  2. <?xml version="1.0"?>
  3. <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
  4.  
  5. <!-- Put site-specific property overrides in this file. -->
  6.  
  7. <configuration>
  8.  
  9. <property>
  10. <name>hadoop.tmp.dir</name>
  11. <value>/tmp/${user.name}</value>
  12. <description>A base for other temporary directories.</description>
  13. </property>
  14.  
  15. <property>
  16. <name>fs.defaultFS</name>
  17. <value>hdfs://cluster</value>
  18. </property>
  19.  
  20. <property>
  21. <name>ha.zookeeper.quorum</name>
  22. <value>wchddb01pxdu.prod.oclc.org:9011,wchddb02pxdu.prod.oclc.org:9011,wchddb35pxdu.prod.oclc.org:9011</value>
  23. </property>
  24.  
  25. <property>
  26. <name>io.compression.codecs</name>
  27. <value>org.apache.hadoop.io.compress.GzipCodec,org.apache.hadoop.io.compress.DefaultCodec,com.hadoop.compression.lzo.LzoCodec,com.hadoop.compression.lzo.LzopCodec,org.apache.hadoop.io.compress.BZip2Codec,org.apache.hadoop.io.compress.SnappyCodec</value>
  28. </property>
  29.  
  30. <property>
  31. <name>io.compression.codec.lzo.class</name>
  32. <value>com.hadoop.compression.lzo.LzoCodec</value>
  33. </property>
  34.  
  35. <property>
  36. <name>fs.trash.interval</name>
  37. <value>1440</value>
  38. </property>
  39.  
  40. <property>
  41. <name>ipc.server.tcpnodelay</name>
  42. <value>true</value>
  43. </property>
  44.  
  45. <property>
  46. <name>topology.script.file.name</name>
  47. <value>/prod/hadoop/prod/hadoop/conf/get_rack_id.pl</value>
  48. </property>
  49.  
  50. <property>
  51. <name>io.file.buffer.size</name>
  52. <value>131072</value>
  53. </property>
  54.  
  55. <property>
  56. <name>hadoop.proxyuser.prodcon.hosts</name>
  57. <value>*</value>
  58. <description>
  59. List of hosts the '#USER#' user is allowed to perform 'doAs'
  60. operations.
  61.  
  62. The '#USER#' must be replaced with the username o the user who is
  63. allowed to perform 'doAs' operations.
  64.  
  65. The value can be the '*' wildcard or a list of hostnames.
  66.  
  67. For multiple users copy this property and replace the user name
  68. in the property name.
  69. </description>
  70. </property>
  71.  
  72. <property>
  73. <name>hadoop.proxyuser.prodcon.groups</name>
  74. <value>*</value>
  75. <description>
  76. List of groups the '#USER#' user is allowed to impersonate users
  77. from to perform 'doAs' operations.
  78.  
  79. The '#USER#' must be replaced with the username o the user who is
  80. allowed to perform 'doAs' operations.
  81.  
  82. The value can be the '*' wildcard or a list of groups.
  83.  
  84. For multiple users copy this property and replace the user name
  85. in the property name.
  86. </description>
  87. </property>
  88.  
  89.  
  90. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement