I have a strange issue that happens in PA but not when I run a local server. The project is built with Django and Python 3.10. The user is able to upload a .fit file containing data from a fitness device like Garmin Fenix. The code then parses the .fit file into lists, and dicts. They can be large: the .fit file contains data every second, and fitness episodes can last hours. However, the ones I use for examples are relatively short, 40-60sec. After uploading the file and displaying the data, the user can run an algorithm, defined in a Python class that will generate more data lists. Here is the flow of the program, and where the error occurs. 1. User uploads data, inspects it, then chooses to run the model. All this works fine, graphs created using the Plotly python package. 2. A FITMODEL object is created. I define this object in the settings.py file, to allow its access across different views in the views.py. 3. Step 1 of the modeling is run, and results displayed. So far, all is good. A new page is displayed with the original data and the fit to the data. 4. User is given option to run another routine that must use the FITMODEL object, with its data lists and routines that operate on them. This is where it sometimes fails. When testing if the FITMODEL objec is still not None and contains previously modeled data, the routinme finds FITMODLE is no longer defined and a 404 error page is displayed. Sometimes, this step works! 5. If step 4 works, user is given the chance to post the reults (contained in the FITMODEL object) to a postgresql DB. This step usually fails, as FITMODEL is now None. Is there something about the PA setup that limits the size of data objects? Why does FITMODEL go away on PA but not in other testing evnironments (Windows 11 and Ubuntu)?