@Override
    public <T> Future<Set<T>> importAsync(final String filename, final HMetaAtom metaAtom, final String... includes) {
        return this.ingestAsync(filename, metaAtom).compose(tables -> this.ingest.compressAsync(tables, includes)).compose(this.importer::importAsync);
    }