- π©πͺGermany Anybody Porta Westfalica
Thanks @webflo great work! Came across π Update existing references on save Needs work should we perhaps incorporate that here?
- π©πͺGermany Anybody Porta Westfalica
Closed π Update existing references on save Needs work as duplicate of this!
So what's needed here are tests and then it's ready for the go :)
- First commit to issue fork.
- Merge request !14Issue #2846318: Complete Synchronization functionality for existing reference values β (Open) created by dieterholvoet
- Open on Drupal.org βCore: 10.0.7 + Environment: PHP 8.1 & MySQL 8
9:21 9:21 Queueing - last update
over 1 year ago 2 pass - π§πͺBelgium dieterholvoet Brussels
I started a merge request based on 2846318-18.patch and I fixed a couple UI-related issues:
- A 'Synchronize' local task already existed, but wasn't appearing on the edit form.
- I added an entity operation to synchronize a CER.
- The sync form currently deletes the CER, I changed this to actually synchronize it.
- last update
over 1 year ago 2 pass - last update
over 1 year ago 2 pass - Status changed to Needs review
over 1 year ago 9:00am 29 November 2023 - π«π·France dqd London | N.Y.C | Paris | Hamburg | Berlin
And has #22 π Complete Synchronization functionality for existing reference values Needs work question for tests been addressed yet?
- π«π·France dqd London | N.Y.C | Paris | Hamburg | Berlin
TBH the whole "update on re-save" group of issues became a very confusing clutter of different issues with different patch attempts and is hard to follow for users. We need to clarify this. There was a patch already in the previously marked as duplicate issue linked to a patch from here which seemed to work in this time. Found a comment of me reviewing it 1,2 years ago. Strange enough. Then we closed the other one and moved over here and started to comment on this previous patch and that it is out of scope? Can somebody clarify where this previous issue has been moved to (comment #17 π Complete Synchronization functionality for existing reference values Needs work ) and why we refactored the way to solve this here. We need a clear update on the issue summary of somebody who really oversees this whole clutter.
- π«π·France dqd London | N.Y.C | Paris | Hamburg | Berlin
Review of latest MR (14)
Apart from that I initiated a new Drupal 10 test instance on lap (on the road atm) with latest CER dev and tried to resave related content before and after adding the merge #14 as patch and it seem to work after applying the MR as patch without errors like expected. All previous content has been cross linked correctly on batch re-save. But I have no time & resources to further investigate any underlying flaws or drawbacks yet. But at least: It does not break anything obviously and it adds the awaited functionality. So far my review.
- πΊπΈUnited States mortona2k Seattle
@diqidoq messaged me on slack, so I'll clarify my thoughts here. When I read "Complete synchronization", I imagine it would fix all unsynced fields. I admit, the description talks about syncing a single item, so moving the patches to another issue may have been premature. However, I feel like having a way to re-sync all items would be a better way of handling this problem. Apologies for causing any confusion.
- πΊπ¦Ukraine vlad.dancer Kyiv
I've tested MR (14) too. Works good!
But it took "ages" to sync 170K entities (and we have even more for other cer instances). I tested it on DigitalOcean premium amd ssd.
My workaround was to increase number of items per batch operation:public function submitForm(array &$form, FormStateInterface $form_state) { $batch = new BatchBuilder(); $batch->setTitle(t('Synchronizing the values for corresponding reference %label', [ '%label' => $this->entity->label() ])); $idsToSync = $this->getEntityIdsToSync($this->entity); $i=0; foreach ($idsToSync as $entityTypeId => $ids) { foreach ($ids as $id) { $to[] = [$entityTypeId, $id]; $i++; if ($i % 20 == 0) { $batch->addOperation([$this, 'doSyncEntity'], [$to]); $to = []; } } } batch_set($batch->toArray()); $this->messenger()->addStatus($this->t('Corresponding reference %label has been synchronized.', [ '%label' => $this->entity->label(), ])); } public function doSyncEntity(array $entities): void { foreach ($entities as [$entityTypeId, $entityId]) { $entity = $this->entityTypeManager ->getStorage($entityTypeId) ->load($entityId); cer_sync_corresponding_references($entity); } }
What do you think about making chunk size adjustible?
Also I think in our case we know more or less how many nodes we need to sync (between X and Y days) so I'm thinking to write VBO plugin β to use views then for filtering and avoiding full cer re-sync.
- last update
about 1 year ago 2 pass - πΊπΈUnited States mortona2k Seattle
I added a redirect to the CER edit form for the item being synchronized when accessed via the tab.
When accessed via the operation link in the CER listing, it adds a destination url parameter, so it redirects to the list.
The code looks good to me and is working well.
I tried to drop in @vlad.dancer's code to increase the batch size, but it changes the output in the queue to say "completed 4/4". I like the idea of a bigger default, but I think we should take it further and polish the queue so it displays the number of items in progress, with a message of the summary.
I think we should set the batch size in CER config, and a vbo plugin would be a nice addition to handle your case of filtering out items before processing.
I would set this to RTBC, but it looks like tests are needed before committing.
- π«π·France dqd London | N.Y.C | Paris | Hamburg | Berlin
Will test if this MR works with π Automated Drupal 11 compatibility fixes for cer RTBC or if this can be merged. Would be good if we can reach a certain RTBC and commit state since parts of CER are just unusable right now without this patch in a per-existing (not new) project environment.
- π¨π¦Canada chrisck BC, Canada
Just reporting back that the MR !14 is working great for me, but I have nowhere near the number of entities as @vlad.dancer.
- π©πͺGermany Anybody Porta Westfalica
Happy to merge this, once it has tests and is reviewed by experienced members of the community. Won't have the time to review this myself in the near future.