I have a Django Application (first application) running on Google App Engine.
There is another time consuming application (second application) running in Google App Engine Flex.
Both applications are connected to the same PostGreSQL Database.
When the second application finishes its execution it needs to write the results to the database and first application can access the data.
What is the correct path to achieve this ?
Should I use exact same models and expect everything to be straightforward ?