Advertisement
Guest User

Untitled

a guest
Mar 21st, 2012
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. ?xml version="1.0"?>
  2. <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
  3. <!--
  4. /**
  5. * Copyright 2010 The Apache Software Foundation
  6. *
  7. * Licensed to the Apache Software Foundation (ASF) under one
  8. * or more contributor license agreements. See the NOTICE file
  9. * distributed with this work for additional information
  10. * regarding copyright ownership. The ASF licenses this file
  11. * to you under the Apache License, Version 2.0 (the
  12. * "License"); you may not use this file except in compliance
  13. * with the License. You may obtain a copy of the License at
  14. *
  15. * http://www.apache.org/licenses/LICENSE-2.0
  16. *
  17. * Unless required by applicable law or agreed to in writing, software
  18. * distributed under the License is distributed on an "AS IS" BASIS,
  19. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  20. * See the License for the specific language governing permissions and
  21. * limitations under the License.
  22. */
  23. -->
  24. <configuration>
  25. ?xml version="1.0"?>
  26. <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
  27. <configuration>
  28. <property>
  29. <name>hbase.rootdir</name>
  30. <value>hdfs://HADOOP.domain.be:54310/hbase</value>
  31. </property>
  32.  
  33. <property>
  34. <name>hbase.cluster.distributed</name>
  35. <value>true</value>
  36. <description>The mode the cluster will be in. Possible values are
  37. false: standalone and pseudo-distributed setups with managed Zookeeper
  38. true: fully-distributed with unmanaged Zookeeper Quorum (see hbase-env.sh)
  39. </description>
  40. </property>
  41.  
  42. <property>
  43. <name>dfs.support.append</name>
  44. <value>true</value>
  45. </property>
  46. <property>
  47. <name>hbase.zookeeper.property.clientPort</name>
  48. <value>2222</value>
  49. <description>Property from ZooKeeper's config zoo.cfg.
  50. The port at which the clients will connect.
  51. </description>
  52. </property>
  53. <property>
  54. <name>hbase.zookeeper.quorum</name>
  55. <value>HADOOP.domain.be,HDP06.domain.be,HDP08.domain.be</value>
  56. <description>Comma separated list of servers in the ZooKeeper Quorum.
  57. For example, "host1.mydomain.com,host2.mydomain.com,host3.mydomain.com".
  58. By default this is set to localhost for local and pseudo-distributed modes
  59. of operation. For a fully-distributed setup, this should be set to a full
  60. list of ZooKeeper quorum servers. If HBASE_MANAGES_ZK is set in hbase-env.sh
  61. this is the list of servers which we will start/stop ZooKeeper on.
  62. </description>
  63. </property>
  64. <property>
  65. <name>hbase.zookeeper.property.dataDir</name>
  66. <value>/usr/local/zookeeper</value>
  67. <description>Property from ZooKeeper's config zoo.cfg.
  68. The directory where the snapshot is stored.
  69. </description>
  70. </property>
  71. <property>
  72. <name>hbase.zookeeper.property.authProvider.1</name>
  73. <value>org.apache.zookeeper.server.auth.SASLAuthenticationProvider</value>
  74. </property>
  75. <property>
  76. <name>hbase.zookeeper.property.kerberos.removeHostFromPrincipal</name>
  77. <value>true</value>
  78. </property>
  79. <property>
  80. <name>hbase.zookeeper.property.kerberos.removeRealmFromPrincipal</name>
  81. <value>true</value>
  82. </property>
  83. </configuration>
  84. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement