Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[0.9][BC break][dbal] Store UUIDs as binary data. Improves performance #280

Merged
merged 6 commits into from
Jan 17, 2018

Conversation

makasim
Copy link
Member

@makasim makasim commented Nov 30, 2017

fixes #279
fixes #276

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@dkarlovi
Copy link
Contributor

ramsey/uuid-doctrine provides a time-ordered binary UUID storage.

@makasim
Copy link
Member Author

makasim commented Dec 1, 2017

@dkarlovi thank you for sharing this. Unfortunately it requires doctrine/orm which is not an option for us.
The transport should work with doctrine/dbal.

throw new \LogicException('The generated uuid is empty');
}
$hasNativeGuid = $this->context->getDbalConnection()->getDatabasePlatform()->hasNativeGuidType();
$uuid = Uuid::uuid4();
Copy link
Contributor

@msheakoski msheakoski Dec 1, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not Uuid::uuid1()? It is more efficient for the database to index a time-based UUID than a random v4 UUID.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Honestly, I dont know I've been using uuid4 everywhere. I'll look into it.

Thanks.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@makasim check the link from Percona linked in my comment.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dkarlovi yeah, I saw it. Unfortunately I am not sure we can adopt it since it is MySQL\InnoDB specific stuff. We have to support or DBAL transport hence the solution should be flexible enough to work on all of those platforms

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, I meant the influence of random on performance. v1 vs v4 should be considered here IMO.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah, I see

@makasim
Copy link
Member Author

makasim commented Dec 4, 2017

@dkarlovi updated PR with uuid1 and the use of time ordered codec.

@makasim
Copy link
Member Author

makasim commented Dec 4, 2017

Publish and consume 100 000 messages

enqueue/dbal 0.8

Publish took 80.730087995529 seconds, 40.152kb memory
Consume took 135.10051894188 seconds, 196.096kb memory

enqueue/dbal 0.9

Publish took 74.140038013458 seconds, 191.248kb memory
Consume took 149.82619380951 seconds, 137.888kb memory

It turned out that the difference is not that big.

@makasim makasim added this to the 0.9 milestone Jan 4, 2018
@makasim makasim changed the base branch from master to 0.9 January 17, 2018 07:58
@makasim makasim merged commit 6c3ec76 into 0.9 Jan 17, 2018
@makasim makasim deleted the dbal-uuid-as-binary-data branch January 17, 2018 07:58
ASKozienko pushed a commit that referenced this pull request Nov 2, 2018
[0.9][BC break][dbal] Store UUIDs as binary data. Improves performance
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants