The question is mainly about that, in my project, I want to create a table with 3 column family. the default replication number is 3. but I wanna change this replication number for centain column family, just because we dont need so much repliction for it.
for example, a table name table1
, and has 3 column family, f1
,f2
,f3
. In this case, we want to set the replication number of f3
is 1
. so how can I set this config? Is there any solutions without change the source code?
PS: via hbase shell or JAVA?