vinishjail97 commented on code in PR #591: URL: https://github.com/apache/incubator-xtable/pull/591#discussion_r1889338911
########## xtable-core/src/main/java/org/apache/xtable/conversion/ConversionController.java: ########## @@ -89,71 +103,126 @@ public <COMMIT> Map<String, SyncResult> sync( try (ConversionSource<COMMIT> conversionSource = conversionSourceProvider.getConversionSourceInstance(config.getSourceTable())) { ExtractFromSource<COMMIT> source = ExtractFromSource.of(conversionSource); + return syncTableFormats(config, source, config.getSyncMode()); + } catch (IOException ioException) { + throw new ReadException("Failed to close source converter", ioException); + } + } - Map<String, ConversionTarget> conversionTargetByFormat = - config.getTargetTables().stream() - .collect( - Collectors.toMap( - TargetTable::getFormatName, - targetTable -> conversionTargetFactory.createForFormat(targetTable, conf))); - // State for each TableFormat - Map<String, Optional<TableSyncMetadata>> lastSyncMetadataByFormat = - conversionTargetByFormat.entrySet().stream() - .collect( - Collectors.toMap( - Map.Entry::getKey, entry -> entry.getValue().getTableMetadata())); - Map<String, ConversionTarget> formatsToSyncIncrementally = - getFormatsToSyncIncrementally( - config, - conversionTargetByFormat, - lastSyncMetadataByFormat, - source.getConversionSource()); - Map<String, ConversionTarget> formatsToSyncBySnapshot = - conversionTargetByFormat.entrySet().stream() - .filter(entry -> !formatsToSyncIncrementally.containsKey(entry.getKey())) - .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue)); - SyncResultForTableFormats syncResultForSnapshotSync = - formatsToSyncBySnapshot.isEmpty() - ? SyncResultForTableFormats.builder().build() - : syncSnapshot(formatsToSyncBySnapshot, source); - SyncResultForTableFormats syncResultForIncrementalSync = - formatsToSyncIncrementally.isEmpty() - ? SyncResultForTableFormats.builder().build() - : syncIncrementalChanges( - formatsToSyncIncrementally, lastSyncMetadataByFormat, source); - Map<String, SyncResult> syncResultsMerged = - new HashMap<>(syncResultForIncrementalSync.getLastSyncResult()); - syncResultsMerged.putAll(syncResultForSnapshotSync.getLastSyncResult()); - String successfulSyncs = - getFormatsWithStatusCode(syncResultsMerged, SyncResult.SyncStatusCode.SUCCESS); - if (!successfulSyncs.isEmpty()) { - log.info("Sync is successful for the following formats {}", successfulSyncs); - } - String failedSyncs = - getFormatsWithStatusCode(syncResultsMerged, SyncResult.SyncStatusCode.ERROR); - if (!failedSyncs.isEmpty()) { - log.error("Sync failed for the following formats {}", failedSyncs); + public Map<String, SyncResult> syncCatalogs( Review Comment: Using `syncTableAcrossCatalogs` with java doc. -- 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-unsubscr...@xtable.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org