You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by GitBox <gi...@apache.org> on 2022/03/23 06:11:44 UTC

[GitHub] [hudi] alexeykudinkin commented on pull request #5097: [WIP] Fixing master

alexeykudinkin commented on pull request #5097:
URL: https://github.com/apache/hudi/pull/5097#issuecomment-1075956587


   After making sure `TestHoodieDeltaStreamer` shutdown all executors properly, tests are starting to hang with following exception trailing test runs:
   
   ```
   2022-03-23T05:36:34.5915659Z 1622490 [LeaseRenewer:vsts@localhost:38427] WARN  org.apache.hadoop.hdfs.LeaseRenewer  - Failed to renew lease for [DFSClient_NONMAPREDUCE_93990013_1] for 31 seconds.  Will retry shortly ...
   2022-03-23T05:36:34.5917288Z java.net.ConnectException: Call From fv-az208-692/10.1.0.11 to localhost:38427 failed on connection exception: java.net.ConnectException: Connection refused; For more details see:  http://wiki.apache.org/hadoop/ConnectionRefused
   2022-03-23T05:36:34.5918493Z 	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
   2022-03-23T05:36:34.5919500Z 	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
   2022-03-23T05:36:34.5920133Z 	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
   2022-03-23T05:36:34.5920667Z 	at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
   2022-03-23T05:36:34.5921187Z 	at org.apache.hadoop.net.NetUtils.wrapWithMessage(NetUtils.java:792)
   2022-03-23T05:36:34.5921641Z 	at org.apache.hadoop.net.NetUtils.wrapException(NetUtils.java:732)
   2022-03-23T05:36:34.5922058Z 	at org.apache.hadoop.ipc.Client.call(Client.java:1479)
   2022-03-23T05:36:34.5922459Z 	at org.apache.hadoop.ipc.Client.call(Client.java:1412)
   2022-03-23T05:36:34.5922939Z 	at org.apache.hadoop.ipc.ProtobufRpcEngine$Invoker.invoke(ProtobufRpcEngine.java:229)
   2022-03-23T05:36:34.5923377Z 	at com.sun.proxy.$Proxy43.renewLease(Unknown Source)
   2022-03-23T05:36:34.5923898Z 	at org.apache.hadoop.hdfs.protocolPB.ClientNamenodeProtocolTranslatorPB.renewLease(ClientNamenodeProtocolTranslatorPB.java:590)
   2022-03-23T05:36:34.5924434Z 	at sun.reflect.GeneratedMethodAccessor471.invoke(Unknown Source)
   2022-03-23T05:36:34.5924879Z 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   2022-03-23T05:36:34.5925339Z 	at java.lang.reflect.Method.invoke(Method.java:498)
   2022-03-23T05:36:34.5925810Z 	at org.apache.hadoop.io.retry.RetryInvocationHandler.invokeMethod(RetryInvocationHandler.java:191)
   2022-03-23T05:36:34.5926357Z 	at org.apache.hadoop.io.retry.RetryInvocationHandler.invoke(RetryInvocationHandler.java:102)
   2022-03-23T05:36:34.5926807Z 	at com.sun.proxy.$Proxy44.renewLease(Unknown Source)
   2022-03-23T05:36:34.5927201Z 	at org.apache.hadoop.hdfs.DFSClient.renewLease(DFSClient.java:892)
   2022-03-23T05:36:34.5927644Z 	at org.apache.hadoop.hdfs.LeaseRenewer.renew(LeaseRenewer.java:423)
   2022-03-23T05:36:34.5928087Z 	at org.apache.hadoop.hdfs.LeaseRenewer.run(LeaseRenewer.java:448)
   2022-03-23T05:36:34.5928540Z 	at org.apache.hadoop.hdfs.LeaseRenewer.access$700(LeaseRenewer.java:71)
   2022-03-23T05:36:34.5929000Z 	at org.apache.hadoop.hdfs.LeaseRenewer$1.run(LeaseRenewer.java:304)
   2022-03-23T05:36:34.5929395Z 	at java.lang.Thread.run(Thread.java:750)
   2022-03-23T05:36:34.5929749Z Caused by: java.net.ConnectException: Connection refused
   2022-03-23T05:36:34.5930105Z 	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
   2022-03-23T05:36:34.5930528Z 	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:716)
   2022-03-23T05:36:34.5931023Z 	at org.apache.hadoop.net.SocketIOWithTimeout.connect(SocketIOWithTimeout.java:206)
   2022-03-23T05:36:34.5931487Z 	at org.apache.hadoop.net.NetUtils.connect(NetUtils.java:531)
   2022-03-23T05:36:34.5931917Z 	at org.apache.hadoop.net.NetUtils.connect(NetUtils.java:495)
   2022-03-23T05:36:34.5932361Z 	at org.apache.hadoop.ipc.Client$Connection.setupConnection(Client.java:614)
   2022-03-23T05:36:34.5932836Z 	at org.apache.hadoop.ipc.Client$Connection.setupIOstreams(Client.java:712)
   2022-03-23T05:36:34.5933506Z 	at org.apache.hadoop.ipc.Client$Connection.access$2900(Client.java:375)
   2022-03-23T05:36:34.5933956Z 	at org.apache.hadoop.ipc.Client.getConnection(Client.java:1528)
   2022-03-23T05:36:34.5934364Z 	at org.apache.hadoop.ipc.Client.call(Client.java:1451)
   2022-03-23T05:36:34.5934674Z 	... 16 more
   ```
   
   Seems like thread renewing the lease from HDFS is just getting stuck in a constant loop of trying to renew the lease, while all of the other components of the test (including HDFS itself) have been shutdown.
   
   Test failure seem to occur due to following exception found in the logs right above the first occurrence of the previous exception: 
   
   ```
   2022-03-23T05:36:02.6376389Z 1590537 [pool-235-thread-7] WARN  org.apache.hadoop.hive.metastore.ObjectStore  - Falling back to ORM path due to direct SQL failure (this is not an error): See previous errors; Error executing SQL query "SELECT "DBS"."NAME", "TBLS"."TBL_NAME", "COLUMNS_V2"."COLUMN_NAME","KEY_CONSTRAINTS"."POSITION", "KEY_CONSTRAINTS"."CONSTRAINT_NAME", "KEY_CONSTRAINTS"."ENABLE_VALIDATE_RELY"  FROM  "TBLS"  INNER  JOIN "KEY_CONSTRAINTS" ON "TBLS"."TBL_ID" = "KEY_CONSTRAINTS"."PARENT_TBL_ID"  INNER JOIN "DBS" ON "TBLS"."DB_ID" = "DBS"."DB_ID"  INNER JOIN "COLUMNS_V2" ON "COLUMNS_V2"."CD_ID" = "KEY_CONSTRAINTS"."PARENT_CD_ID" AND  "COLUMNS_V2"."INTEGER_IDX" = "KEY_CONSTRAINTS"."PARENT_INTEGER_IDX"  WHERE "KEY_CONSTRAINTS"."CONSTRAINT_TYPE" = 0 AND "DBS"."NAME" = ? AND "TBLS"."TBL_NAME" = ?". at org.apache.hadoop.hive.metastore.MetaStoreDirectSql.executeWithArray(MetaStoreDirectSql.java:1762) at org.apache.hadoop.hive.metastore.MetaStoreDirectSql.getPrimaryKeys(MetaStore
 DirectSql.java:1939) at org.apache.hadoop.hive.metastore.ObjectStore$11.getSqlResult(ObjectStore.java:8551)
   2022-03-23T05:36:03.4650339Z 1591360 [main] ERROR org.apache.hudi.utilities.deltastreamer.HoodieDeltaStreamer  - Got error running delta sync once. Shutting down
   2022-03-23T05:36:03.4651433Z org.apache.hudi.exception.HoodieException: Could not sync using the meta sync class org.apache.hudi.hive.HiveSyncTool
   2022-03-23T05:36:03.4652199Z 	at org.apache.hudi.sync.common.util.SyncUtilHelpers.runHoodieMetaSync(SyncUtilHelpers.java:42)
   2022-03-23T05:36:03.4652952Z 	at org.apache.hudi.utilities.deltastreamer.DeltaSync.syncMeta(DeltaSync.java:704)
   2022-03-23T05:36:03.4653977Z 	at org.apache.hudi.utilities.deltastreamer.DeltaSync.writeToSink(DeltaSync.java:623)
   2022-03-23T05:36:03.4654597Z 	at org.apache.hudi.utilities.deltastreamer.DeltaSync.syncOnce(DeltaSync.java:327)
   2022-03-23T05:36:03.4655192Z 	at org.apache.hudi.utilities.deltastreamer.HoodieDeltaStreamer.lambda$sync$2(HoodieDeltaStreamer.java:193)
   2022-03-23T05:36:03.4655832Z 	at org.apache.hudi.common.util.Option.ifPresent(Option.java:97)
   2022-03-23T05:36:03.4656359Z 	at org.apache.hudi.utilities.deltastreamer.HoodieDeltaStreamer.sync(HoodieDeltaStreamer.java:191)
   2022-03-23T05:36:03.4657020Z 	at org.apache.hudi.utilities.functional.TestHoodieDeltaStreamer.testPayloadClassUpdateWithCOWTable(TestHoodieDeltaStreamer.java:1289)
   2022-03-23T05:36:03.4657584Z 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   2022-03-23T05:36:03.4658030Z 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
   2022-03-23T05:36:03.4658573Z 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   2022-03-23T05:36:03.4659033Z 	at java.lang.reflect.Method.invoke(Method.java:498)
   2022-03-23T05:36:03.4659481Z 	at org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:688)
   2022-03-23T05:36:03.4660255Z 	at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
   2022-03-23T05:36:03.4660960Z 	at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
   2022-03-23T05:36:03.4661557Z 	at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:149)
   2022-03-23T05:36:03.4662114Z 	at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:140)
   2022-03-23T05:36:03.4662695Z 	at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:84)
   2022-03-23T05:36:03.4663396Z 	at org.junit.jupiter.engine.execution.ExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(ExecutableInvoker.java:115)
   2022-03-23T05:36:03.4664018Z 	at org.junit.jupiter.engine.execution.ExecutableInvoker.lambda$invoke$0(ExecutableInvoker.java:105)
   2022-03-23T05:36:03.4664656Z 	at org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106)
   2022-03-23T05:36:03.4665300Z 	at org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64)
   2022-03-23T05:36:03.4665917Z 	at org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45)
   2022-03-23T05:36:03.4666533Z 	at org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37)
   2022-03-23T05:36:03.4667089Z 	at org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:104)
   2022-03-23T05:36:03.4667615Z 	at org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:98)
   2022-03-23T05:36:03.4668213Z 	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$6(TestMethodTestDescriptor.java:212)
   2022-03-23T05:36:03.4668824Z 	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   2022-03-23T05:36:03.4669426Z 	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:208)
   2022-03-23T05:36:03.4670035Z 	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:137)
   2022-03-23T05:36:03.4670617Z 	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:71)
   2022-03-23T05:36:03.4671204Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:139)
   2022-03-23T05:36:03.4671943Z 	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   2022-03-23T05:36:03.4672546Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:129)
   2022-03-23T05:36:03.4673078Z 	at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
   2022-03-23T05:36:03.4673634Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:127)
   2022-03-23T05:36:03.4674232Z 	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   2022-03-23T05:36:03.4674797Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:126)
   2022-03-23T05:36:03.4675352Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:84)
   2022-03-23T05:36:03.4675812Z 	at java.util.ArrayList.forEach(ArrayList.java:1259)
   2022-03-23T05:36:03.4676378Z 	at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:38)
   2022-03-23T05:36:03.4677074Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:143)
   2022-03-23T05:36:03.4677677Z 	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   2022-03-23T05:36:03.4678371Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:129)
   2022-03-23T05:36:03.4678913Z 	at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
   2022-03-23T05:36:03.4679456Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:127)
   2022-03-23T05:36:03.4680043Z 	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   2022-03-23T05:36:03.4680612Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:126)
   2022-03-23T05:36:03.4681230Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:84)
   2022-03-23T05:36:03.4681697Z 	at java.util.ArrayList.forEach(ArrayList.java:1259)
   2022-03-23T05:36:03.4682269Z 	at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:38)
   2022-03-23T05:36:03.4682959Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:143)
   2022-03-23T05:36:03.4683562Z 	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   2022-03-23T05:36:03.4684159Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:129)
   2022-03-23T05:36:03.4684700Z 	at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
   2022-03-23T05:36:03.4685251Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:127)
   2022-03-23T05:36:03.4685851Z 	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   2022-03-23T05:36:03.4686419Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:126)
   2022-03-23T05:36:03.4686983Z 	at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:84)
   2022-03-23T05:36:03.4687625Z 	at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:32)
   2022-03-23T05:36:03.4688303Z 	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57)
   2022-03-23T05:36:03.4688916Z 	at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:51)
   2022-03-23T05:36:03.4689508Z 	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107)
   2022-03-23T05:36:03.4690103Z 	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:87)
   2022-03-23T05:36:03.4690714Z 	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:53)
   2022-03-23T05:36:03.4691355Z 	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:66)
   2022-03-23T05:36:03.4691970Z 	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:51)
   2022-03-23T05:36:03.4692502Z 	at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:87)
   2022-03-23T05:36:03.4693008Z 	at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:75)
   2022-03-23T05:36:03.4693494Z 	at org.junit.platform.runner.JUnitPlatform.run(JUnitPlatform.java:139)
   2022-03-23T05:36:03.4693905Z 	at org.junit.runners.Suite.runChild(Suite.java:128)
   2022-03-23T05:36:03.4694290Z 	at org.junit.runners.Suite.runChild(Suite.java:27)
   2022-03-23T05:36:03.4694688Z 	at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
   2022-03-23T05:36:03.4695113Z 	at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
   2022-03-23T05:36:03.4695606Z 	at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
   2022-03-23T05:36:03.4696047Z 	at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
   2022-03-23T05:36:03.4696491Z 	at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
   2022-03-23T05:36:03.4696935Z 	at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
   2022-03-23T05:36:03.4697354Z 	at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
   2022-03-23T05:36:03.4697792Z 	at org.apache.maven.surefire.junitcore.JUnitCore.run(JUnitCore.java:55)
   2022-03-23T05:36:03.4698308Z 	at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:137)
   2022-03-23T05:36:03.4698917Z 	at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:107)
   2022-03-23T05:36:03.4699458Z 	at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:83)
   2022-03-23T05:36:03.4699986Z 	at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:75)
   2022-03-23T05:36:03.4700522Z 	at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:158)
   2022-03-23T05:36:03.4701053Z 	at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377)
   2022-03-23T05:36:03.4701566Z 	at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138)
   2022-03-23T05:36:03.4702047Z 	at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465)
   2022-03-23T05:36:03.4702521Z 	at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451)
   2022-03-23T05:36:03.4703010Z Caused by: org.apache.hudi.exception.HoodieException: Got runtime exception when hive syncing hive_trips
   2022-03-23T05:36:03.4703494Z 	at org.apache.hudi.hive.HiveSyncTool.syncHoodieTable(HiveSyncTool.java:140)
   2022-03-23T05:36:03.4704004Z 	at org.apache.hudi.sync.common.util.SyncUtilHelpers.runHoodieMetaSync(SyncUtilHelpers.java:40)
   2022-03-23T05:36:03.4704391Z 	... 88 more
   2022-03-23T05:36:03.4704755Z Caused by: org.apache.hudi.hive.HoodieHiveSyncException: Failed to sync partitions for table hive_trips
   2022-03-23T05:36:03.4705226Z 	at org.apache.hudi.hive.HiveSyncTool.syncPartitions(HiveSyncTool.java:402)
   2022-03-23T05:36:03.4705700Z 	at org.apache.hudi.hive.HiveSyncTool.syncHoodieTable(HiveSyncTool.java:220)
   2022-03-23T05:36:03.4706160Z 	at org.apache.hudi.hive.HiveSyncTool.doSync(HiveSyncTool.java:151)
   2022-03-23T05:36:03.4706609Z 	at org.apache.hudi.hive.HiveSyncTool.syncHoodieTable(HiveSyncTool.java:137)
   2022-03-23T05:36:03.4706955Z 	... 89 more
   2022-03-23T05:36:03.4707376Z Caused by: java.lang.IllegalArgumentException: Partition key parts [datestr] does not match with partition values [2015, 03, 16]. Check partition strategy. 
   2022-03-23T05:36:03.4707953Z 	at org.apache.hudi.common.util.ValidationUtils.checkArgument(ValidationUtils.java:40)
   2022-03-23T05:36:03.4708497Z 	at org.apache.hudi.hive.ddl.QueryBasedDDLExecutor.getPartitionClause(QueryBasedDDLExecutor.java:184)
   2022-03-23T05:36:03.4709078Z 	at org.apache.hudi.hive.ddl.QueryBasedDDLExecutor.constructAddPartitions(QueryBasedDDLExecutor.java:158)
   2022-03-23T05:36:03.4709649Z 	at org.apache.hudi.hive.ddl.QueryBasedDDLExecutor.addPartitionsToTable(QueryBasedDDLExecutor.java:115)
   2022-03-23T05:36:03.4710194Z 	at org.apache.hudi.hive.HoodieHiveClient.addPartitionsToTable(HoodieHiveClient.java:123)
   2022-03-23T05:36:03.4710693Z 	at org.apache.hudi.hive.HiveSyncTool.syncPartitions(HiveSyncTool.java:385)
   2022-03-23T05:36:03.4711031Z 	... 92 more
   ```
   https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_apis/build/builds/7211/logs/69


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org