DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Add the new method
updateClusterMetadata(ClusterMetadata)to the old interfaceClientQuotaCallback, while doing this have a downside is that once we remove that deprecated function, it will break compilation for anyone who already implementing it.Code Block language java public interface ClientQuotaCallback extends Configurable { // ...skip ...// @Deprecated(since = "4.1", forRemoval = true) boolean updateClusterMetadata(Cluster cluster); default boolean updateClusterMetadata(ClusterMetadata clusterMetadata) { return updateClusterMetadata(toCluster(clusterMetadata)); } }
...