curved-whale-1505
05/31/2025, 3:37 PM[0]: Remote output size exceeds max, err: [output file @[s3://TK/metadata/propeller/eval-development-an8t5mxsghcbl5xl7vt4/n4/data/0/0/1/outputs.pb] is too large [227056479] bytes, max allowed [2097152] bytes: remote file exceeds max size]
curved-whale-1505
05/31/2025, 3:42 PMcurved-whale-1505
05/31/2025, 3:51 PMcurved-whale-1505
05/31/2025, 3:53 PMmaxDownloadMBs
set so low (2 MBs)? what are the implications of increasing this to be several hundred gigabytes?curved-whale-1505
05/31/2025, 4:10 PMYes check out propeller config. But preferably offload large lists etchttps://discuss.flyte.org/t/9888328/hi-there-do-we-have-any-options-to-increase-limits-failed-at?t=v2 not sure I understand what offload means in this context. is it suggesting not to return large amounts of data from tasks that are stored in the intermediate storage?
curved-whale-1505
05/31/2025, 4:43 PMmap_task
like so:
# 3. For each day's DailyDataPayload, process them concurrently.
list_of_list_of_results_promise = map_task(process_day_level_files_wf, concurrency=10)(
daily_payload=daily_payloads_promise, # Pass the list of DailyDataPayload objects
action_to_find=repeated_actions_promise
)
and the type definition of the task being mapped (process_day_level_files_wf
) is:
@task(container_image=custom_image)
def process_day_level_files_wf(
daily_payload: DailyDataPayload,
action_to_find: str
) -> List[SingleFileResult]:
where SingleFileResult
is a dataclass defined as:
@dataclass
class SingleFileResult:
daily_prefix_for_grouping: str
matched_json_objects: List[Any]
curved-whale-1505
05/31/2025, 4:45 PMcurved-whale-1505
05/31/2025, 4:54 PMList[str]
and List[int]
-- perhaps that is getting saved as metadata instead of a pointer to raw data?curved-whale-1505
05/31/2025, 4:58 PMint
, str
, etc.) are stored directly in the metadata store, while complex data objects (pandas.DataFrame
, FlyteFile
, etc.) are stored by reference, with the reference pointer in the metadata store and the actual data in the raw data store.freezing-airport-6809
curved-whale-1505
06/05/2025, 1:30 PMfreezing-airport-6809