[
https://issues.apache.org/jira/browse/FLINK-28575?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Flink Jira Bot updated FLINK-28575:
-----------------------------------
Labels: pull-request-available stale-assigned (was: pull-request-available)
I am the [Flink Jira Bot|https://github.com/apache/flink-jira-bot/] and I help
the community manage its development. I see this issue is assigned but has not
received an update in 30 days, so it has been labeled "stale-assigned".
If you are still working on the issue, please remove the label and add a
comment updating the community on your progress. If this issue is waiting on
feedback, please consider this a reminder to the committer/reviewer. Flink is a
very active project, and so we appreciate your patience.
If you are no longer working on the issue, please unassign yourself so someone
else may work on it.
> support hbase connector 2.2 to write to hbase 2.4.9
> ---------------------------------------------------
>
> Key: FLINK-28575
> URL: https://issues.apache.org/jira/browse/FLINK-28575
> Project: Flink
> Issue Type: Improvement
> Components: Connectors / HBase
> Reporter: Zhen Wang
> Assignee: Zhen Wang
> Priority: Major
> Labels: pull-request-available, stale-assigned
>
> hbase does version checks when creating configurations by default
> ```
> private static void checkDefaultsVersion(Configuration conf) {
> if (conf.getBoolean("hbase.defaults.for.version.skip", Boolean.FALSE))
> return;
> String defaultsVersion = conf.get("hbase.defaults.for.version");
> String thisVersion = VersionInfo.getVersion();
> if (!thisVersion.equals(defaultsVersion)) {
> throw new RuntimeException(
> "hbase-default.xml file seems to be for an older version of HBase (" +
> defaultsVersion + "), this version is " + thisVersion);
> }
> }
> ```
> so this prevents using connector2.2 to write to like hbase 2.4.9. however
> this restriction is not necessary.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)