-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Moves column from metadata to body Max metadata size is 8kb and became a problem when the dataset has lots of columns. * Removes redundant parameter encoding='utf-8' is the default value * New metadata storage solution MinIO/S3 object metadata has lots of problems: max 8kb size, allows only Dict[str, str], ... We had a problem saving a file with lots of columns (~1000) and we couldn't store feature types as metadata since it exceeded the 8kb limit. As a solution, now the columns are the 1st row in the csv file and the metadata is in a separate file encoded in JSON format. The unit test was modified to a large dataset 1000 cols, 1mi rows * Removes compression, since it does not work yet on pandas See: pandas-dev/pandas#22555 * Fix list_datasets issue Two files are created for each dataset. * Decreases mock_dataset size Causing 502 bad gateway on play.min.io * Improves code when reading saved metrics
- Loading branch information
Showing
6 changed files
with
111 additions
and
98 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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