Zubin Roy
05/21/2024, 3:23 PMdev
and test
where currently I've hardcoded all my file paths. But is there a way that these catalog entries read from a set of parameters which then determine the file paths? Thanks!
Present
# dev
example_file:
type: pandas.CSVDataSet
filepath: <s3://dev_folder_path/example_file.csv>
# test
example_file:
type: pandas.CSVDataSet
filepath: <s3://test_folder_path/example_file.csv>
Ideal
# dev_param: "<s3://dev_folder_path>"
# dev
example_file:
type: pandas.CSVDataSet
filepath: {dev_param}/example_file.csv
# test_param: "<s3://test_folder_path>"
# test
example_file:
type: pandas.CSVDataSet
filepath: {test_param}/example_file.csv
Merel
05/21/2024, 3:25 PMMerel
05/21/2024, 3:32 PMZubin Roy
05/21/2024, 4:19 PM