use of com.google.cloud.bigtable.grpc.BigtableTableName in project beam by apache.
the class BigtableServiceImpl method openForWriting.
@Override
public BigtableWriterImpl openForWriting(String tableId) throws IOException {
BigtableSession session = new BigtableSession(options);
BigtableTableName tableName = options.getInstanceName().toTableName(tableId);
return new BigtableWriterImpl(session, tableName);
}
Aggregations