wiretrack
07/07/2021, 8:40 PMflow
), I was wondering if the large amount of rows on other tables will start to get in the way of the frontend performance (and hasura’s, and apollo’s) . Putting state
in mongodb or something should completely solve the challenge (not really sure if it’s really a challenge), but it seems that this would be a huge change, since the code is really well tied together. I was wondering how do you guys see scalability on the server, and curious on what approaches the cloud version uses to overcome potencial scalability issues in the long term.Kevin Kho
TRUNCATE
the logs table regularly. I don’t think the API performance is affected if you’re not querying the larger tables. A lot of memory issues also come up because of persistence of results. You can disable checkpointing with @task(checkpointing=False)
, or you can name the result files explicitly such that they are overwritten with every Flow run.wiretrack
07/07/2021, 8:50 PMKevin Kho
wiretrack
07/07/2021, 9:07 PM