@jbpasquier recently completed a performance test and found that the call to the JWKS URI (/jwks/) took 103 seconds to complete. Looking at the view code, it loops over all RSAKey objects in the database, renders and returns the public key for each. The code itself is largely the same as the code forked from django-oidc-provider
Looking at community.startinblox and paris.happy-dev, both have around 55-60 keys in the database. Reading the docs I believe that these have been created using the python manage.py creatersakey command. I imagine that we don't need all of these and they're being created during the auto-deployment process? @plup
Edited
Designs
Child items
...
Show closed items
Linked items
0
Link issues together to show that they're related.
Learn more.
Activity
Sort or filter
Newest first
Oldest first
Show all activity
Show comments only
Show history only
Calum Mackervoychanged title from Performance investigation to Performance of JWKS view
changed title from Performance investigation to Performance of JWKS view
@calummackervoy I'm off until the 1st of July. So I won't be able to do any progress on this subject until then. I don't think I can wait that mcuh time. Go for it if you have the opportunity.
Which seems to mean that it depends of external conditions. But all know how complicated it can be if e can't reliably reproduce the bug...
Distribution graph also indicates 3s in the most common case. I guess I still can try to optimize that but we are not talking about the same gain we started this issue with.
I quickly tried reducing 24 keys to 1 key in test2.startinblox.com and the performance improvement during login was noticeable (apologies for the lack of metrics!)
I did this via the admin panel, @jbpasquier is this the quickest way to roll it out to production?
is this the quickest way to roll it out to production?
Definitely not, it would require to create an admin account on every productions (55, as of platform's master). I know that @plup made some script to auto-run some commands everywhere. Do you have a table cleanup on your toolkit, @plup ? @calummackervoy Does it work if we remove all of them, then re-create only one?
@jbpasquier@calummackervoy@balessan It's ready and tested on lab. Do you want me to deploy on all staging ? When should I do the prods ? It takes the time to deploy the server on all instances.
$ ansible -i inventory/lab/ all -m ansible.builtin.file -a "dest=~/startinblox/sibserver/.rsakeyid state=absent"$ ansible-playbook -i inventory/lab/ maintain.yml -t drop_table -e table=oidc_provider_rsakey$ ansible-playbook -i inventory/lab/ deploy.yml -t server