単一の列ファミリーを持つテーブルを作成しようとしています (Java クライアント ライブラリ 0.9.1 を使用して Google Cloud Bigtable エミュレーターをターゲットにしています)。
private void setupTable() throws IOException {
TableName name = TableName.valueOf("EndOfDayPriceUnadjusted");
try(Connection connection = BigtableConfiguration.connect(hbaseConf)){
HTableDescriptor descriptor = new HTableDescriptor(name);
descriptor.addFamily(new HColumnDescriptor("EOD"));
connection.getAdmin().createTable(descriptor);
// calling HTableDescriptor desc = connection.getAdmin().getTableDescriptor(name); yields the same result
Table t = connection.getTable(name);
if(t.getTableDescriptor().getColumnFamilies().length == 0)
log.error("no column families.");
else
log.info("table with column family created.");
}
}
私の問題は、テーブルを作成した後、取得された記述子にEOD
ファミリが含まれないことです。したがって、その列ファミリーにデータを格納する呼び出しはすべて失敗します。
何か不足していますか、それともエミュレータの制限ですか?