-
Notifications
You must be signed in to change notification settings - Fork 55
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
Performance: /api/content_node/checklist_nodes #7114
base: devel
Are you sure you want to change the base?
Conversation
@@ -51,6 +51,9 @@ | |||
#[ORM\InheritanceType('SINGLE_TABLE')] | |||
#[ORM\DiscriminatorColumn(name: 'strategy', type: 'string')] | |||
#[ORM\UniqueConstraint(name: 'contentnode_parentid_slot_position_unique', columns: ['parentid', 'slot', 'position'])] | |||
#[ORM\Index(columns: ['createTime'])] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are the createTime and updateTime inices also new? Why are they not in the migration?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, these indexes are already on BaseEntity
. If they are not repeated here, they are omitted.
I suspect it is a bug in Doctrine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what do you mean by omitted?
they are in the schema and in the migrations. why do you need to add them again on the subclass entity?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I add only the Index(category)
to ContentNode
, then the two indexes of BaseEntity are lost.
It looks as if the index attributes are not aggregated - but the mostly specific class with index attributes determines the list of indexes.
@@ -62,7 +65,7 @@ abstract class ContentNode extends BaseEntity implements BelongsToContentNodeTre | |||
#[Gedmo\SortableGroup] // this is needed to avoid that all root nodes are in the same sort group (parent:null, slot: '') | |||
#[Groups(['read'])] | |||
#[ORM\ManyToOne(targetEntity: ColumnLayout::class, inversedBy: 'rootDescendants')] | |||
#[ORM\JoinColumn(nullable: true, onDelete: 'CASCADE')] // TODO make not null in the DB using a migration, and get fixtures to run | |||
#[ORM\JoinColumn(nullable: false, onDelete: 'CASCADE')] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, so this finally works now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes - and it improves performance :)
@@ -35,7 +35,7 @@ public function testCreateColumnLayoutValidatesMissingParent() { | |||
$this->assertJsonContains([ | |||
'violations' => [ | |||
[ | |||
'propertyPath' => 'parent', | |||
'propertyPath' => 'root', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The test name still says the parent may not be missing, not the root. Should this be a new test instead? Or do we just need to adjust the test's name?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately no.
parent
is the mandatory field. But without parent
root
is not determined.
Unfortunately root
is checked first.
It is correct that a ValidationError occurs. However, the message is unfortunate.
Unfortunately, I have not found a better solution.
api/fixtures/activity1.yml
Outdated
parent: null | ||
root: '@self' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you don't need to change the order of the properties.
(i reverted this could still run the CreateColumnLayout tests).
I would have preferred it if we did not have this unnecessary change in the history.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True - thx
177a351
to
be75ad0
Compare
Add Index
ContentNode->strategy
improves joins with strategy-filter
ContentNode->root
not nullableleft join
becomesinner join
Auswirkung
auf /api/content_node/checklist_nodes?camp=/camps/camp_id
Old: (cost=348.72..348.73 rows=1 width=1453)
New: (cost=186.07..186.07 rows=1 width=1453)
Old:
Explain query
New:
Explain query