HBASE-20598 Upgrade to JRuby 9.2
[hbase.git] / conf / hbase-site.xml
blob48b78ec72d071a9c0e6307d3cab77afd82c81143
1 <?xml version="1.0"?>
2 <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
3 <!--
4 /*
5  * Licensed to the Apache Software Foundation (ASF) under one
6  * or more contributor license agreements.  See the NOTICE file
7  * distributed with this work for additional information
8  * regarding copyright ownership.  The ASF licenses this file
9  * to you under the Apache License, Version 2.0 (the
10  * "License"); you may not use this file except in compliance
11  * with the License.  You may obtain a copy of the License at
12  *
13  *     http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21 -->
22 <configuration>
23   <!--
24     The following properties are set for running HBase as a single process on a
25     developer workstation. With this configuration, HBase is running in
26     "stand-alone" mode and without a distributed file system. In this mode, and
27     without further configuration, HBase and ZooKeeper data are stored on the
28     local filesystem, in a path under the value configured for `hbase.tmp.dir`.
29     This value is overridden from its default value of `/tmp` because many
30     systems clean `/tmp` on a regular basis. Instead, it points to a path within
31     this HBase installation directory.
33     Running against the `LocalFileSystem`, as opposed to a distributed
34     filesystem, runs the risk of data integrity issues and data loss. Normally
35     HBase will refuse to run in such an environment. Setting
36     `hbase.unsafe.stream.capability.enforce` to `false` overrides this behavior,
37     permitting operation. This configuration is for the developer workstation
38     only and __should not be used in production!__
40     See also https://hbase.apache.org/book.html#standalone_dist
41   -->
42   <property>
43     <name>hbase.cluster.distributed</name>
44     <value>false</value>
45   </property>
46   <property>
47     <name>hbase.tmp.dir</name>
48     <value>${env.HBASE_HOME:-.}/tmp</value>
49   </property>
50   <property>
51     <name>hbase.unsafe.stream.capability.enforce</name>
52     <value>false</value>
53   </property>
54 </configuration>