Hello Team, how are you? Context: I have a Cloud...
# questions
l
Hello Team, how are you? Context: I have a CloudStorage/bucket with that struct below, and I would to read the content on the same time. | bucket_name | — folder | — | — 001recovered.txt | — | — 002recovered.txt Question: How it’s possible to do that? I’m getting a error.
Copy code
relvenda:
  type: text.TextDataSet
  filepath: "<gs://bucket_name/folder/*recovered.txt>"
e
You'll likely be looking for the functionality that
PartitionedDataset
offers: https://docs.kedro.org/en/stable/kedro.io.PartitionedDataset.html#kedro.io.PartitionedDataset
2