Zouxxyy commented on PR #7621:
URL: https://github.com/apache/hudi/pull/7621#issuecomment-1375374459

   HI, we have also made relevant changes, the call procedure will not read 
hudi global conf,
   
   The modification we made was to add 
`DFSPropertiesConfiguration.getGlobalProps` in `BaseProcedure.scala`,  Can you 
see if you can add it together?
   
   ```scala
    protected def getWriteConfig(basePath: String): HoodieWriteConfig = {
      HoodieWriteConfig. newBuilder
        .withPath(basePath)
        
.withIndexConfig(HoodieIndexConfig.newBuilder.withIndexType(IndexType.BLOOM).build)
        .withProps(DFSPropertiesConfiguration.getGlobalProps)
        .build
    }
   ```


-- 
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