prashantwason commented on code in PR #8724:
URL: https://github.com/apache/hudi/pull/8724#discussion_r1203468378


##########
hudi-client/hudi-java-client/src/main/java/org/apache/hudi/client/common/HoodieJavaEngineContext.java:
##########
@@ -161,4 +162,11 @@ public List<Integer> getCachedDataIds(HoodieDataCacheKey 
cacheKey) {
   public List<Integer> removeCachedDataIds(HoodieDataCacheKey cacheKey) {
     return Collections.emptyList();
   }
+
+  @Override
+  public Map<String, String> getInfo() {
+    final Map<String, String> info = new HashMap<>();
+    System.getProperties().stringPropertyNames().forEach(property -> 
info.put(property, System.getProperty(property)));

Review Comment:
   These files are within the dataset itself. The dataset would contain 
sensitive information too. So I dont see the issue. 
   
   Anyways, I will filter them.



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