I am facing issue with this
i had my able which needs some transformations. where my data needs to be formatted into Sublists as required by API. Its good if i need small data as i can split sink into 5 or 10 files.
My Api handles 125 records at a time and there are 15000 records. So need to automate splitting
ADF Dataflow Splitting Sub lists data into multiple Json file into Blob
As I don't have the API information and transformation logic, you can use Data Flow to split the source data into small JSON files for your target. This approach will help you achieve the required result.
I have applied the transformation in the Derived Column.
For the Sink configuration, connect to Blob Storage, select JSON as the output format, and under the Optimize tab, configure the Partition option by choosing Round Robin, Hash, or specifying a fixed number of partitions (example 8); this ensures that a single JSON file is generated per partition, resulting in multiple output files in the target Blob location.
It will generate 8 JSON files within the specified container or folder, with each file containing a distinct partition of the dataset.