chrevanthreddy commented on code in PR #17951:
URL: https://github.com/apache/hudi/pull/17951#discussion_r2854673635


##########
hudi-azure/src/main/java/org/apache/hudi/config/AzureStorageLockConfig.java:
##########
@@ -0,0 +1,52 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.hudi.config;
+
+import org.apache.hudi.common.config.ConfigClassProperty;
+import org.apache.hudi.common.config.ConfigGroups;
+import org.apache.hudi.common.config.ConfigProperty;
+import org.apache.hudi.common.config.HoodieConfig;
+import org.apache.hudi.common.config.LockConfiguration;
+
+/**
+ * Hoodie Configs for Azure based storage locks.
+ */
+@ConfigClassProperty(name = "Azure based Locks Configurations",
+    groupName = ConfigGroups.Names.WRITE_CLIENT,
+    subGroupName = ConfigGroups.SubGroupNames.LOCK,
+    description = "Configs that control Azure Blob/ADLS based locking 
mechanisms "
+        + "required for concurrency control between writers to a Hudi table.")
+public class AzureStorageLockConfig extends HoodieConfig {
+
+  private static final String AZURE_BASED_LOCK_PROPERTY_PREFIX = 
LockConfiguration.LOCK_PREFIX + "azure.";
+
+  public static final ConfigProperty<String> AZURE_CONNECTION_STRING = 
ConfigProperty

Review Comment:
   Updated config docs



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to