1

HBase 0.94.0を起動し、HDFS0.20.0上で実行しています。私は宿題をしていて、コラムファミリーを入れなければなりIn-Memoryません。2つのコラムファミリーNoとSubjectがあります。

それらをに設定した後In-Memory

new HColumnDescriptor("No").setInMemory(true);
new HColumnDescriptor("Subject").setInMemory(true);

私が自分をチェックするlocalhost:60010と、テーブルの詳細はまだ表示されますIN_MEMORY => 'false'なぜこれが起こっているのですか?設定以上のことをする必要がありますか.setInMemory(true)

4

1 に答える 1

1
HTableDescriptor descriptor = new HTableDescriptor("Student92");
    HColumnDescriptor col1=new HColumnDescriptor("No".getBytes());
    HColumnDescriptor col2=new HColumnDescriptor("Subject".getBytes());
    col1.setInMemory(true);
    col2.setInMemory(true);

これはうまくいきました!

于 2013-03-07T09:24:27.337 に答える