feat(core): support resumable export tasks and improve Excel/CSV import & export - #2869
Closed
liushikuan63 wants to merge 5 commits into
Closed
liushikuan63 wants to merge 5 commits into
liushikuan63 wants to merge 5 commits into
Conversation
…rt & export -Add role field to ArtifactDraft to distinguish artifact roles -Add resumeDraft method to ArtifactService to support resuming interrupted tasks -Support batch cleanup of multiple interrupted temp files and published files -Optimize BaseExcelExporter to use ExcelSink for streaming export and append text-truncation warnings -Enhance BaseExcelImporter with EasyExcel-based column mapping and batch processing -Add CSVImporter using commons-csv instead of EasyExcel for CSV import -Decouple CsvDataExporter from EasyExcel, use CsvSink for efficient CSV export -Add tests to BaseExporter covering GZIP and ZIP compression for multi-table exports -Declare ClickHouseDBManager's export capability as streaming-only -Add unit tests covering artifact task resumption and multi-table export interruption
liushikuan63
requested review from
a team,
Aias00 and
openai0229
as code owners
September 2, 2026 12:48
| @Override | ||
| public ImportPreview previewImport(ImportTaskSpec spec) { | ||
| java.io.File source = new java.io.File(StringUtils.defaultString(spec.getSourceFile())); | ||
| if (!source.isFile() || !source.canRead()) { |
| @Override | ||
| public ImportPreview previewImport(ImportTaskSpec spec) { | ||
| java.io.File source = new java.io.File(StringUtils.defaultString(spec.getSourceFile())); | ||
| if (!source.isFile() || !source.canRead()) { |
| if (StringUtils.isNotBlank(requested)) { | ||
| return requested.trim().charAt(0); | ||
| } | ||
| try (Reader reader = new InputStreamReader(Files.newInputStream(file.toPath()), charset)) { |
liushikuan63
marked this pull request as draft
September 3, 2026 17:04
liushikuan63
marked this pull request as ready for review
September 3, 2026 17:04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat(core): support resumable export tasks and improve Excel/CSV import & export
-Add role field to ArtifactDraft to distinguish artifact roles
-Add resumeDraft method to ArtifactService to support resuming interrupted tasks
-Support batch cleanup of multiple interrupted temp files and published files
-Optimize BaseExcelExporter to use ExcelSink for streaming export and append text-truncation warnings
-Enhance BaseExcelImporter with EasyExcel-based column mapping and batch processing
-Add CSVImporter using commons-csv instead of EasyExcel for CSV import
-Decouple CsvDataExporter from EasyExcel, use CsvSink for efficient CSV export
-Add tests to BaseExporter covering GZIP and ZIP compression for multi-table exports
-Declare ClickHouseDBManager's export capability as streaming-only
-Add unit tests covering artifact task resumption and multi-table export interruption