更新表配置

本文将通过参数说明和示例代码为您介绍如何使用 Java SDK 更新表配置。在更新数据表时,您可以修改表的配置信息(例如数据生命周期、最大版本数、有效版本偏差等)和 Stream 配置。此外,您还可以为 CU 模式(原按量模式)下高性能型实例中数据表调整预留读写吞吐量。

前提条件

参数说明

更多信息,请参见参数说明

示例

更新数据表配置

以下示例用于修改数据表的配置信息。

private static void updateTable(SyncClient client) {
    //数据的过期时间,-1表示永不过期。
    int timeToLive = -1;
    //最大版本数,属性列值最多保留5个版本。
    int maxVersions = 5;
    //有效版本偏差,即写入数据的时间戳与系统当前时间的偏差允许最大值为86400秒(1天)。
    long maxTimeDeviation = 86400L;
    TableOptions tableOptions = new TableOptions(timeToLive, maxVersions, maxTimeDeviation);
    //允许UpdateRow相关更新写入操作。
    tableOptions.setAllowUpdate(true);
    
    //开启Stream功能,设置stream过期时间为24小时。
    //StreamSpecification streamSpecification = new StreamSpecification(true, 24);
    
    //设置数据表名称。
    UpdateTableRequest request = new UpdateTableRequest("<TABLE_NAME>");
    request.setTableOptionsForUpdate(tableOptions);
    client.updateTable(request);
}

更新 CU 模式下高性能型实例中数据表的预留吞吐量

以下示例用于修改 CU 模式下高性能型实例中数据表的预留吞吐量 。

private static void updateTable(SyncClient client) {
    //设置新的预留读吞吐量为1,写吞吐量为1。容量型实例下的数据表只能设置为0。
    ReservedThroughput reservedThroughput = new ReservedThroughput(new CapacityUnit(1, 1));
    
    //设置数据表名称。
    UpdateTableRequest request = new UpdateTableRequest("<TABLE_NAME>");
    request.setReservedThroughputForUpdate(reservedThroughput);
    client.updateTable(request);
}

相关文档

  • 关于 API 说明的更多信息,请参见 UpdateTable

  • 更新表配置后,您可能需要以下操作: