Hi @Bennett Rand - hmm I don't believe there any known issues related to this
just thinking out loud: I suppose if your ECS cluster / S3 bucket are in different regions, or if your api calls are getting throttled somehow, that this could cause some latency.. but ~3 minutes seems like quite a lot
can you explain how
.submit() -> .result()
fits into the picture here? is the above within a task that's being mapped?
b
Bennett Rand
04/03/2023, 10:43 PM
Copy code
station_futures = get_stations.map(FACTORIES, bucket_name)
for f in station_futures:
f.wait()
and
Copy code
results = []
for f in FACTORIES:
fu = get_stations.submit(f, bucket_name)
results.append(fu.result())
Both have a delay
Bennett Rand
04/03/2023, 10:45 PM
But not
Copy code
results = []
for f in FACTORIES:
results.append(get_stations(f, bucket_name))
Bring your towel and join one of the fastest growing data communities. Welcome to our second-generation open source orchestration platform, a completely rethought approach to dataflow automation.