IsisPolei

Results 4 comments of IsisPolei

hoodie.filesystem.view.remote.port this configuration doesn't work, i use idea debug mode and force to set this parameter to the port that my app already expose: viewConf.setValue("hoodie.filesystem.view.remote.port","10001"); it doesn't work, i got...

I manage to bypass these two problems by set hoodie.embed.timeline.server.port: 10001 hoodie.filesystem.view.remote.port: 10002 And expose these two ports of my app container. When the code reach this line some thing...

I think the main reason of this problem is that my app(where SparkRDDWriteClient process hudi data) and the spark cluster which SparkRDDWriteClient connected are deployed in different local machine. When...

The origin problem is offline compaction. The HoodieJavaWriteClient doesn't support compact inline. @Override protected List compact(String compactionInstantTime, boolean shouldComplete) { throw new HoodieNotSupportedException("Compact is not supported in HoodieJavaClient"); } So...