Project

Profile

Help

Task #4290

closed

Investigate performance of Pulp with UUID PKs

Added by dalley over 5 years ago. Updated almost 5 years ago.

Status:
CLOSED - COMPLETE
Priority:
Normal
Assignee:
Category:
-
Sprint/Milestone:
Start date:
Due date:
% Done:

0%

Estimated time:
Platform Release:
Groomed:
Yes
Sprint Candidate:
Yes
Tags:
Sprint:
Sprint 49
Quarter:

Description

On the pulp-dev mailing list, we discussed how the way we are using bulk_create only works on certain databases, such as Postgres, and not on others, such as MySQL.

https://www.redhat.com/archives/pulp-dev/2018-November/msg00019.html

The summary of this issue is that - when we use bulk_create(), we need to get back the PKs of the created objects. With database-generated autoincrement integer IDs, Postgres can do this but MySQL cannot.

A proposed solution to this problem is to use UUID PKs, which can be generated in the application and therefore do not need to be returned from the database, because we already have them.

However, using UUIDs as PKs in a database often carries performance implications. It inflates the size of the database (due to being 128 bits, vs a 32 or 64 bit integer), and the randomness and lack of natural ordering makes them difficult to properly index.

We should verify that this will not cause performance issues.

We should test the following:

  • Size of the database/database indexes
  • Memory usage while running?
  • Insert performance, and the degree to which it gets progressively worse with database size
  • Query performance, and the degree to which it gets progressively worse with database size

For the following suggested procedure, use additive sync, NOT mirror sync, and lazy sync, NOT immediate sync.

Suggested procedure:

  • Create 5 file fixture repositories, each with 100,000 random file content units, using the script below (modifications needed)
  • Create 5 file fixture repositories, each with 1,000 random file content units, using the same script
  • Create 2 Pulp repositories
  • With the first repository, repeat the following process 4 times using different fixture repositories and record the results
  • Sync a 100,000 unit repository
  • Sync a 1,000 unit repository
  • Inside a Python shell, time how long it takes execute FileContent.objects.get(pk=.....) using the PK of a unit present in the DB
  • Inside a Python shell, time how long it takes to execute the following script for the latest repository version {c['_type']: c['count'] for c in repo_version.content.values('_type').annotate(count=Count('_type'))}
  • Inside a Python shell, time how long it takes to execute Content.objects.filter(pk__in=repo_version.content)
  • Then repeat that process once, but using the second repository, and only the last (one) set of fixtures and record the results
  • Sync EPEL using the RPM plugin and record the results
  • Measure the total size of the database and record the results

If neither insert/query/storage performance is impacted significantly enough to be a blocking issue, there are additional tests we can run as well.

Bonus Task: Perform these same tests on MySQL / MariaDB, to see how performance compares against PostgreSQL.

Bonus Task: UUID PKs may make it possible to implement a smarter version of "bulk_create()" which can speed up saving Content models with multi-table inheritance. We could attempt to implement this.

Basic testing script

sudo dnf install nginx
sudo systemctl start nginx
cd /usr/share/nginx/html
mkdir large_repository
chmod -R 777 large_repository
cd large_repository

for i in {1..70000}; do echo `uuidgen` > $i; done
for file in `ls`; do echo $file,`sha256sum $file | awk '{ print $1 }'`,`stat -L -c '%s' $file`; done > PULP_MANIFEST

# open up PULP_MANIFEST and remove the line for PULP_MANIFEST
vim PULP_MANIFEST

# now try to fetch PULP_MANIFEST just to make sure everything's working
curl http://localhost/large_repository/PULP_MANIFEST

http POST :8000/pulp/api/v3/repositories/ name=foo
http POST :8000/pulp/api/v3/remotes/file/ name=bar url=http://localhost/large_repository/PULP_MANIFEST policy='on_demand'
http POST :8000/pulp/api/v3/remotes/file/1/sync/ repository=/pulp/api/v3/repositories/1/

Files


Related issues

Blocks Pulp - Task #4270: Add support for MariaDB and MySQLCLOSED - CURRENTRELEASEdaviddavis

Actions
Actions #1

Updated by dalley over 5 years ago

  • Tracker changed from Issue to Task
  • % Done set to 0
Actions #2

Updated by daviddavis over 5 years ago

  • Blocked by Issue #4288: _mysql_exceptions.OperationalError: (1170, "BLOB/TEXT column 'name' used in key specification without a key length") added
Actions #3

Updated by dkliban@redhat.com over 5 years ago

  • Groomed changed from No to Yes
  • Sprint Candidate changed from No to Yes
Actions #4

Updated by bmbouter over 5 years ago

  • Sprint set to Sprint 47
Actions #5

Updated by dalley over 5 years ago

  • Subject changed from Investigate performance of Pulp with UUID PKs on MariaDB/MySQL to Investigate performance of Pulp with UUID PKs
  • Description updated (diff)
Actions #6

Updated by dalley over 5 years ago

  • Description updated (diff)
Actions #7

Updated by dalley over 5 years ago

  • Description updated (diff)
Actions #8

Updated by dalley over 5 years ago

  • Description updated (diff)
Actions #9

Updated by bmbouter over 5 years ago

I think the rewrite of this is great. Also can we remove the blocking relationship?

Actions #10

Updated by dalley over 5 years ago

  • Blocked by deleted (Issue #4288: _mysql_exceptions.OperationalError: (1170, "BLOB/TEXT column 'name' used in key specification without a key length"))
Actions #11

Updated by dalley over 5 years ago

  • Description updated (diff)
Actions #12

Updated by dalley over 5 years ago

  • Description updated (diff)
Actions #13

Updated by daviddavis about 5 years ago

  • Tags Pulp 3 RC Blocker added
Actions #14

Updated by dalley about 5 years ago

  • Status changed from NEW to ASSIGNED
  • Assignee set to dalley
Actions #15

Updated by rchan about 5 years ago

  • Sprint changed from Sprint 47 to Sprint 48
Actions #16

Updated by rchan about 5 years ago

  • Sprint changed from Sprint 48 to Sprint 49
Actions #17

Updated by daviddavis about 5 years ago

  • Blocks Task #4270: Add support for MariaDB and MySQL added
Actions #18

Updated by dalley about 5 years ago

Procedures and results attached.

Summary:

UUIDs on Postgres are about 30% slower than autoincrement integer IDs at scale. For some reason, for the first 2 rounds of large syncs, there didn't seem to be a huge difference, but then the balance of things changed such that one became apparent.

MariaDB behaves kind of weirdly. The first sync was 80% slower than the first sync with PostgreSQL, but every subsequent sync was faster. This is despite some of the important underlying operations being several times slower than on PostgreSQL, when testing code snippets.

There was one showstopper performance problem with MariaDB. Whereas

        %timeit {c['_type']: c['count'] for c in repo_version.content.values('_type').annotate(count=Count('_type'))}

completed on Postgres w/ UUID pks in only 129 milliseconds, the same snippet took >20 minutes on MariaDB. I don't know how long it would have taken to complete because I cut it off prematurely.

I'm not sure what caused this. Possibly the database got corrupted somehow? When I tried it with RepoVersion(number=1), it did actually complete, and it took about 1.3 seconds, which is several times slower than PostgreSQL but not anywhere close to the 20+ minute hanging I was seeing with the others.

Actions #19

Updated by daviddavis almost 5 years ago

  • Sprint/Milestone set to 3.0.0
Actions #20

Updated by bmbouter almost 5 years ago

  • Tags deleted (Pulp 3, Pulp 3 RC Blocker)

Also available in: Atom PDF