Sanjeet Malhotra created HBASE-29277: ----------------------------------------
Summary: CDC Index should inherit max lookback config at HBase table descriptor level Key: HBASE-29277 URL: https://issues.apache.org/jira/browse/HBASE-29277 Project: HBase Issue Type: Improvement Reporter: Sanjeet Malhotra PHOENIX-7587 reverted storing table level max lookback in SYSCAT (introduced in PHOENIX-7006) as we can store it in HBase table descriptor by simply overriding cluster level config at table level. {code:java} ALTER TABLE TEST.T1 SET "phoenix.max.lookback.age.seconds"=0; {code} PHOENIX-7006 made sure that table level max lookback stored in SYSCAT is inherited by indexes (including view indexes) also. But after reverting PHOENIX-7587 indexes no more inherit table level max lookback from base table. This creates an issue for CDC index as CDC indexes are hidden and are created internally w/o user defining explicit DDL. This Jira aims to make CDC index inherit table level max lookback from base table's HBase table descriptor. -- This message was sent by Atlassian Jira (v8.20.10#820010)