-
Notifications
You must be signed in to change notification settings - Fork 535
Description
We have a pilot project of transitioning from Nesstar to Dataverse. One of the features of Nesstar is the ability to convert files into different formats on the fly, such as SPSS, STATA etc. Dataverse does not have this feature, but our users really would like to have all these different formats. To get around this we plan to import all these formats from Nesstar. The problem is all these files will go through tabular ingest, but we would like that only one (SPSS) file would go through tabular ingest but other files in other formats such as STATA would be added to datasets without ingest.
Therefore it would be nice to have an optional parameter (tabularIngest=true/false) in add file to dataset API. Maybe this parameter would be passed down to saveAndAddFilesToDataset function in IngestServiceBean and maybe something like
if (FileUtil.canIngestAsTabular(dataFile))
replaced with
if (FileUtil.canIngestAsTabular(dataFile) && tabularIngest)
What would be the thoughts regarding it?