How to implement multitenancy in GAE using namespaces?
We can implement using namespace_manager
in Python 2.7 but there is no documentation available on how to use it in Python 3.7.
Is there any other approach to achieve multitenancy in GAE?
How to implement multitenancy in GAE using namespaces?
We can implement using namespace_manager
in Python 2.7 but there is no documentation available on how to use it in Python 3.7.
Is there any other approach to achieve multitenancy in GAE?
The Namespaces API is only supported in the Python 2.7 runtime. If you need a multi-tenant app in the Python 3.7 runtime, you'll need to implement it via your web framework of choice.
For example, see "optimal architecture for multitenant application on django ".
Datastore supports multitenancy directly, other Google Cloud services do not support on GAE in python 3.