We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, is there any plan to put the icebeg split source in bakground? or is anyone working on this?
@Override public CompletableFuture<ConnectorSplitBatch> getNextBatch(ConnectorPartitionHandle partitionHandle, int maxSize) { // TODO: move this to a background thread List<ConnectorSplit> splits = new ArrayList<>(); Iterator<FileScanTask> iterator = limit(fileScanIterator, maxSize); while (iterator.hasNext()) { FileScanTask task = iterator.next(); if (!task.deletes().isEmpty()) { throw new TrinoException(NOT_SUPPORTED, "Iceberg tables with delete files are not supported: " + schemaTableName); } splits.add(toIcebergSplit(task)); } return completedFuture(new ConnectorSplitBatch(splits, isFinished())); }
The text was updated successfully, but these errors were encountered:
i think @alexjo2144 did it in #9193. cc @losipiuk
Sorry, something went wrong.
Not merged yet, but yes
Closing as #9193 is already merged.
No branches or pull requests
Hello, is there any plan to put the icebeg split source in bakground? or is anyone working on this?
The text was updated successfully, but these errors were encountered: