- Issue created by @fago
- Merge request !5674Transaction autocommit during shutdown relies on unreliable object destruction order → (Open) created by fago
- Status changed to Needs review
about 1 year ago 2:06pm 4 December 2023 - 🇦🇹Austria fago Vienna
Not sure what went wrong with this MR - here a patch file.
- last update
about 1 year ago Custom Commands Failed - Status changed to Needs work
about 1 year ago 2:09pm 4 December 2023 - 🇺🇸United States mglaman WI, USA
We're hitting this same order and stack trace! I can only reproduce this on our CI environment. And only when executing Drush commands.
Fatal error: Uncaught Error: Call to a member function commit() on null in /app/docroot/core/lib/Drupal/Core/Database/Connection.php on line 1508 Error: Call to a member function commit() on null in /app/docroot/core/lib/Drupal/Core/Database/Connection.php on line 1508 Call Stack: 0.5549 49134872 1. Drupal\Core\Database\Transaction->__destruct() /app/docroot/core/lib/Drupal/Core/Database/Transaction.php:0 0.5549 49134872 2. Drupal\Core\Database\Connection->popTransaction($name = 'drupal_transaction') /app/docroot/core/lib/Drupal/Core/Database/Transaction.php:71 0.5549 49134872 3. Drupal\Core\Database\Connection->popCommittableTransactions() /app/docroot/core/lib/Drupal/Core/Database/Connection.php:1447 0.5549 49135248 4. Drupal\Core\Database\Connection->doCommit() /app/docroot/core/lib/Drupal/Core/Database/Connection.php:1494
- 🇺🇸United States mglaman WI, USA
Note: we're hitting this on MySQL and SQLite drivers.
- Merge request !5677Issue #3405976 by fago: Transaction autocommit during shutdown relies on unreliable object destruction order → (Open) created by fago
- Status changed to Needs review
about 1 year ago 9:03pm 4 December 2023 - 🇦🇹Austria fago Vienna
The previous patch was not correctly committing the transactions. Fixed it, now changes actually persist as the should.
> We're hitting this same order and stack trace! I can only reproduce this on our CI environment. And only when executing Drush commands.
ha, same for us. But it was reproduable with php-cli without drush also + on multiple CI servers.
I was already thinking the problem is probably in the other drivers as well. Let's make sure the mysql works fine, then we can port the fix to all drivers + to 10.2.x. we'll do some more testing with it
- Status changed to Needs work
about 1 year ago 9:03pm 4 December 2023 - 🇺🇸United States mglaman WI, USA
For 11.x we'll need to refactor for this change record: https://www.drupal.org/node/3381002 →
And then roll a 10.1.x specific fix, it seems
Edit: I also wish I could know _what_ changed to surface this. I rolled back from an 8.1.26 container to 8.1.25 and it still occurred. I'm really confused.
- 🇮🇹Italy mondrake 🇮🇹
IMHO, another reason we should do ✨ Allow explicit COMMIT in Transaction objects Needs review and eventually get rid of commits on objects destruction.
- 🇦🇹Austria fago Vienna
> Edit: I also wish I could know _what_ changed to surface this. I rolled back from an 8.1.26 container to 8.1.25 and it still occurred. I'm really confused.
I can totally second that. We rolled back all changes, made sure images did not change, tried multiple servers, everything. No idea what suddenly caused this still, I'm quite puzzled about that. We've seen the issue to pop up on 01.12 morning, since it's reliably failing on CI.
- 🇺🇸United States mglaman WI, USA
I tried on 10.2, same error just different flavor of text:
php vendor/bin/drush ucrt foobarbaz '--mail=foobarbaz@example.com' '--password=foobarbaz' '--format=json' -vvv Fatal error: Uncaught AssertionError: Transaction $stack was not empty. Active stack: 656e425e435885.60641187\drupal_transaction in /app/docroot/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php on line 99 AssertionError: Transaction $stack was not empty. Active stack: 656e425e435885.60641187\drupal_transaction in /app/docroot/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php on line 99 Call Stack: 0.6608 50491696 1. Drupal\Core\Database\Transaction\TransactionManagerBase->__destruct() /app/docroot/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php:0 0.6608 50491824 2. assert($assertion = FALSE, $description = 'Transaction $stack was not empty. Active stack: 656e425e435885.60641187\\drupal_transaction') /app/docroot/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php:99
- 🇮🇹Italy mondrake 🇮🇹
What #15 says for D10.2 is that the TransactionManager object is being destructed while the root Transaction object in the stack is still active.
I guess you know that.
In the hope that this is not because of serialization/deserialization effects, the only reason I can imagine is unexpected destruction order.
While I strongly believe that ✨ Allow explicit COMMIT in Transaction objects Needs review and later issues to remove commits during object destruction should be the master way forward, I think that a temporary fix (for D10.2) could be to commit the client transaction (is this the wanted behavior?) during TransactionManager destruction if the stack is not empty, instead of the current assert.
In fact when I wrote the TransactionManager code I left the assert there to see if there were side effects. This is one.
- 🇺🇸United States mglaman WI, USA
@fago said they could reproduce without Drush
The error only happened during CLI invocations, but was reproducable also without drush.
In my case, the Drush command only has this code interacting with Drupal core https://github.com/drush-ops/drush/blob/12.x/src/Commands/core/UserComma...
if (!$this->getConfig()->simulate()) { if ($account = User::create($new_user)) { $account->save();
- 🇺🇸United States mglaman WI, USA
For now, in our CI, I'm manually applying this patch. It's MR #5677 but on the parent Connection class. And we're getting builds to proceed.
diff --git a/core/lib/Drupal/Core/Database/Connection.php b/core/lib/Drupal/Core/Database/Connection.php index 7e405e1b1b..868bc8aaf5 100644 --- a/core/lib/Drupal/Core/Database/Connection.php +++ b/core/lib/Drupal/Core/Database/Connection.php @@ -270,6 +270,17 @@ abstract public static function open(array &$connection_options = []); * Ensures that the client connection can be garbage collected. */ public function __destruct() { + + // Ensure all still-open transactions get auto-committed. Usually, this + // happens when the Transaction::__destruct() method is invoked, but during + // shutdown the object transaction order is unreliable. If the connection + // is destroyed first, we need to make sure to auto-commit all still-open + // transactions. + // Also see https://www.drupal.org/project/drupal/issues/1608374. + foreach (array_reverse($this->transactionLayers) as $name => $active) { + $this->popTransaction($name); + } + // Ensure that the circular reference caused by Connection::__construct() // using $this in the call to set the statement class can be garbage // collected.
- 🇮🇹Italy mondrake 🇮🇹
Can you just try this (in D10.2)?
diff --git a/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php b/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php index 0205f7dd65..e7a0721361 100644 --- a/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php +++ b/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php @@ -96,7 +96,9 @@ public function __construct( * When destructing, $stack must have been already emptied. */ public function __destruct() { - assert($this->stack === [], "Transaction \$stack was not empty. Active stack: " . $this->dumpStackItemsAsString()); + if ($this->stack !== []) { + $this->processRootCommit(); + } } /**
even though, now that I look more closely, there's a risk that this occurs with post-transaction callbacks still to be called. But if we are in this predicament, then it's very possible that those callbacks have been destructed already. Fun.
- 🇺🇸United States mglaman WI, USA
I'm signing off for the workday, tomorrow AM CDT I'll bump to 10.2 and try the patch.
- 🇦🇹Austria fago Vienna
> Is it reproducible at all on webserver PHP?
Not for me. Only via CLI, with and without drush. - 🇬🇧United Kingdom alexpott 🇪🇺🌍
alexpott → changed the visibility of the branch 3405976-transaction-autocommit-during to hidden.
- 🇬🇧United Kingdom Driskell
Can you try disabled XDEBUG?
I have this error but only on a test environment. Disabling XDEBUG resolves it so it seems XDEBUG is doing something in my case.In general within PHP, __destruct should call immediately as a variable leaves scope (it has always worked like this for a long time AFAIK - and is related to the "when no more references"). AFAIK only a circular reference is deferred beyond the scope until a collection happens that can work it out.
It looks like perhaps something is causing an interference here and causing a transaction object to not get immediately collected.
- 🇮🇹Italy mondrake 🇮🇹
Looking at #17 again, can anyone try this either? This implicitly COMMITS the transaction that saves the user entity just created.
diff --git a/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php b/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php index c65c623fef..9675a12370 100644 --- a/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php +++ b/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php @@ -751,6 +751,7 @@ public function delete(array $entities) { try { $transaction = $this->database->startTransaction(); parent::delete($entities); + unset($transaction); // Ignore replica server temporarily. \Drupal::service('database.replica_kill_switch')->trigger(); @@ -804,6 +805,7 @@ public function save(EntityInterface $entity) { try { $transaction = $this->database->startTransaction(); $return = parent::save($entity); + unset($transaction); // Ignore replica server temporarily. \Drupal::service('database.replica_kill_switch')->trigger(); @@ -855,6 +857,8 @@ public function restore(EntityInterface $entity) { // Insert the entity data in the dedicated tables. $this->saveToDedicatedTables($entity, FALSE, []); + unset($transaction); + // Ignore replica server temporarily. \Drupal::service('database.replica_kill_switch')->trigger(); }
- 🇺🇸United States mglaman WI, USA
Can you try disabled XDEBUG?
Oh! We have it turned on in CI for code coverage. And Xdebug had a new release on 2023-11-30 https://xdebug.org/download/historical
I'm in trainings but I'll see if I can have someone test and verify this.
- 🇬🇧United Kingdom Driskell
@mglaman
I managed to dive into my specific example and did indeed find that a specific exception that was handled somewhere - if I changed how it handled it it seems to work again.
I did produce a reproduction for Xdebug on this: https://bugs.xdebug.org/view.php?id=2222
So I think this is likely an issue in 3.3.0 of Xdebug. - 🇬🇧United Kingdom catch
If this is an xdebug regression, we could still potentially commit one of the workarounds here with a @todo to remove, or just add this to the 'known issues' for 10.2.0. I'm not sure which is best and it probably depends how quickly it's fixed upstream too.
- 🇬🇧United Kingdom catch
Tagging for release notes, we can add the snippet directly into the draft.
- 🇬🇧United Kingdom derickr
Although this is perhaps caused by a change in Xdebug, the real culprit is lined out in the initial report:
According to https://www.php.net/manual/en/language.oop5.decon.php the object destruction order during shutdown is random:
PHP possesses a destructor concept similar to that of other object-oriented languages, such as C++. The destructor method will be called as soon as there are no other references to a particular object, or in any order during the shutdown sequence.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
@derickr thanks for commenting here. I agree that we should probably fix things here. But I also think that xdebug should not be changing the order objects are destructed. This is a behaviour change that can make debugging things really hard.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
What's interesting is that I cannot reproduce the bug. I'm on
PHP 8.2.12 (cli) (built: Oct 24 2023 19:22:16) (NTS) Copyright (c) The PHP Group Zend Engine v4.2.12, Copyright (c) Zend Technologies with Xdebug v3.3.0, Copyright (c) 2002-2023, by Derick Rethans with Zend OPcache v8.2.12, Copyright (c), by Zend Technologies
I've got 10.1.x checked out, installed drush and have installed the standard install profile.
I do
vendor/bin/drush ucrt test
and everything works just fine. Same when I repeat the steps on 10.2.x. I wonder why that is. - 🇬🇧United Kingdom Driskell
@derickr Reading the statement I believe the way Drupal is currently using transaction objects is fine. It assigns one and then allows it to go out of scope to commit automatically.
The statement "The destructor method will be called as soon as there are no other references to a particular object" covers this. The key phrase here is "as soon as" which leaves nothing to assumption. This occurs the moment the method ends, or when the stack unwinds during an exception.
Having said that, perhaps readability is improved by not having this paradigm in Drupal as this maybe relies on more advanced knowledge of object destruction. Though I think one could argue the approach in PHP currently is implied and the most reasonable assumption, and only circular references are the advanced concept.
@alexpott All my tests were with PHP 8.1 so perhaps the behaviour changes in 8.2? In my specific case it was also during menu link building in cache clear so could be related to the menu and content in my case too.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
@Driskell tried PHP 8.1 too...
$ vendor/bin/drush cr [success] Cache rebuild complete. $ vendor/bin/drush ucrt test [success] Created a new user with uid 2 --------- ----------- ----------- --------------- ------------- User ID User name User mail User roles User status --------- ----------- ----------- --------------- ------------- 2 test authenticated 1 --------- ----------- ----------- --------------- ------------- $ php -v PHP 8.1.25 (cli) (built: Oct 24 2023 21:51:16) (NTS) Copyright (c) The PHP Group Zend Engine v4.1.25, Copyright (c) Zend Technologies with Xdebug v3.3.0, Copyright (c) 2002-2023, by Derick Rethans with Zend OPcache v8.1.25, Copyright (c), by Zend Technologies
- 🇺🇸United States mglaman WI, USA
I could not reproduce locally – host, VM, Docker, only on our CI instance. I don't know how or why. But rolling back to 3.2.2 did fix it. However, I am on macOS and don't have a Linux device available. But I don't think @fago could reproduce on a Linux machine, either.
@Driskell, do you have information about the environment you could reproduce it with? Since our CI is hosted via a cloud provider, I'm pretty disconnected from knowing more of those details beyond the fact that it's a Linux machine running and executing Docker.
- 🇬🇧United Kingdom derickr
It probably depends on which values `xdebug.mode` has. It should include `develop` for Xdebug to cache exceptions, their stack traces, and a reference to local variables (which is why they're kept in scope longer).
- 🇺🇸United States mglaman WI, USA
Ah, that makes sense. I didn't check what mode
docker-php-ext-enable xdebug
set. And would explain why PHPUnit didn't crash inXDEBUG_MODE=coverage
. - Merge request !5715Issue #3405976 by fago: Transaction autocommit during shutdown relies on... → (Open) created by alexpott
- Status changed to Needs review
about 1 year ago 9:29am 7 December 2023 - 🇬🇧United Kingdom alexpott 🇪🇺🌍
I've created an MR for 11.x/10.2.x that fixes the issue for those branches. We have a bit more to do because of the new TransactionManager.
I've tested this locally on xdebug 3.3.0 with develop in the xdebug.mode setting and without it
drush ucrt
is broken and with the fix it works as expected.I've removed the 10.2.0 release notes tag because this affects all versions of Drupal including Drupal 7.
- Status changed to Needs work
about 1 year ago 11:03am 7 December 2023 - 🇮🇹Italy mondrake 🇮🇹
Well at least for TransactionManager I do not think this is right. We’re in a very unpredictable situation here, it could be the TransactionManager object is already gone when destroying the Connection one.
Also, differently from
popTransaction
,removeStackItem
is actually doing nothing on the db.To me, here we should just commit the client transaction on the db (note: if there is still a client connection open, which may not be the case if we anticipate that the destruction order is unpredictable), and forget about the stack itself, which is gone anyway after destruction.
So for me #19 is still the best fix if destroying TransactionManager before the Transaction objects. If we are destroying the Connection before anything else, then a straight commit on the client connection.
This seems rather untestable, too?
- 🇨🇭Switzerland olegiv
I have temporarily disabled xdebug for CLI mode – it fixed the issue in my case.
It looks like the issue started after the recent xdebug update on 2023-11-30. - 🇬🇧United Kingdom alexpott 🇪🇺🌍
@mondrake if the transaction manager object is gone then we're fine. The stack will have been emptied all ready and the transactions committed. In my opinion, that doesn't matter at all. The problem here is that we have to ensure that the stack is empty before closing the connection. If the manager doesn't exist or the stack is already empty then there is not problem.
I think regardless of xdebug's behaviour we need to fix this in some way because we should not be relying on the order of object desctruction.
- Status changed to Needs review
about 1 year ago 12:35pm 7 December 2023 - 🇬🇧United Kingdom alexpott 🇪🇺🌍
Changed the code to call unpile each member of the stack.
- Assigned to mondrake
- Status changed to Needs work
about 1 year ago 1:47pm 7 December 2023 - 🇮🇹Italy mondrake 🇮🇹
if the transaction manager object is gone then we're fine. The stack will have been emptied all ready and the transactions committed.
Only if all the individual Transaction objects would have been destructed BEFORE destruction of TransactionManager. Otherwise, the stack would be still active. #15 tells us that.
The problem here is that we have to ensure that the stack is empty before closing the connection.
Why? The state of the stack is irrelevant here IMHO. The TransactionManager is already destroyed or will be destroyed as part of the shutdown anyway. What matters is that if a client transaction is still open on the db at this stage, we should commit it (hence enforcing auto-commit mode) rather than letting it rollback as the standard behaviour would:
When the script ends or when a connection is about to be closed, if you have an outstanding transaction, PDO will automatically roll it back. https://www.php.net/manual/en/pdo.transactions.php
and we need to commit it from the Connection object, if we cannot rely on the TransactionManager to exist.
Working on an alternative proposal, will post a patch.
More in general, I'm more and more convinced we should abandon implicit commits, do ✨ Allow explicit COMMIT in Transaction objects Needs review / 📌 Transactions should be allowed to be committed explicitly Needs work , make core code explicitly commit transactions, and deprecate committing as part of object destruction. We would not be here if we will.
- 🇬🇧United Kingdom eastdrive
I'm seeing this when trying to delete nodes in the admin UI, singly or batched.
Drupal 10.1.6
PHP 8.1.6
MySQL 8.0.32Running locally with docker compose.
PHP Fatal error: Uncaught Error: Call to a member function inTransaction() on null in /var/www/web/core/modules/mysql/src/Driver/Database/mysql/Connection.php:483 #0 /var/www/web/core/modules/mysql/src/Driver/Database/mysql/Connection.php(415): Drupal\\mysql\\Driver\\Database\\mysql\\Connection->doCommit() #1 /var/www/web/core/lib/Drupal/Core/Database/Connection.php(1447): Drupal\\mysql\\Driver\\Database\\mysql\\Connection->popCommittableTransactions() #2 /var/www/web/core/lib/Drupal/Core/Database/Transaction.php(71): Drupal\\Core\\Database\\Connection->popTransaction() #3 [internal function]: Drupal\\Core\\Database\\Transaction->__destruct() #4 {main} thrown in /var/www/web/core/modules/mysql/src/Driver/Database/mysql/Connection.php on line 483, referer: https://test-domain.something:888/batch?id=50&op=start
- 🇬🇧United Kingdom Driskell
> and we need to commit it from the Connection object, if we cannot rely on the TransactionManager to exist.
I don't think you can assume the transaction is complete. Maybe you're in this destruction because of an error and it is incomplete. This could potentially commit a partial transaction and remove all usefulness of transactions.
> I think regardless of xdebug's behaviour we need to fix this in some way because we should not be relying on the order of object desctruction.
During normal execution there is no issue with destruction order from what I can see. When it goes out of scope and last reference is gone, it is destructed and freed, as per the PHP documentation. Ordering is only involved when you get to shutdown and things are left behind and that in itself, before we even worry about ordering, is a problem - such as in this case where Xdebug is preventing destruction of objects - or if somebody stored a transaction object somewhere.
Perhaps here it just needs a better exception - throw from connection if an open transaction and roll it back - in transaction just ignore missing connection as you'll know it will only be missing if you're in shutdown, and a transaction should never be destructing there. It'll make the error message clearer - you won't get an inTransaction on null - you'll get a "leaked transaction" message which is what Xdebug is doing here. Of course, doesn't workaround the Xdebug issue.
Issue with any change to destruction code is that I don't think you could ever workaround the Xdebug issue safely. If you think about it - if transaction objects are getting held open, every transaction is going to become one. Then you get to shutdown and collection, and you have absolutely no idea if the transaction was successful. And you still have the issue of one massive transaction when it should have been individual.
> More in general, I'm more and more convinced we should abandon implicit commits
I think this makes most sense.
- Issue was unassigned.
- 🇬🇧United Kingdom derickr
FWIW, I reject that this is an Xdebug **issue**. It might well cause this problem, but Xdebug isn't doing anything wrong here. What happens here is that Xdebug now keeps a reference to the last 5 exceptions, including their stack trace (With local variables). Any of these will therefore have their destructor called when Xdebug releases these exceptions. (A workaround therefore could be to just throw and catch exceptions (I joke)).
> During normal execution there is no issue with destruction order from what I can see.
From an earlier comment is a bit strange, as "destruction order" isn't defined as being reliable (from https://www.php.net/destruct#language.oop5.decon.destructor):
> The destructor method will be called as soon as there are no other references to a particular object, or in any order during the shutdown sequence.
That also means, that your workaround (ie fix) could be to keep a reference yourself? Or as you say, it's better to not rely on ```__destruct``` at all.
From the Xdebug side, I don't know how to fix this; except for disabling the improvements to handling transactions while debugging and through the `xdebug_get_function_stack()` improvements, and I am not really willing to do that. Alternatively, I could add a function to clear out these cached exceptions, but that would also mean that you'd have to conditionally call this in places.
FWIW, I don't actually understand *why* you have these exceptions with references to these connection/transaction objects though. Unless you're using exceptions for code flow, which you surely did not expect?
cheers,
Derick - 🇫🇷France izus
In our case we :
1) Disabled xdebug
2) Restarted php-fmpand it Worked :)
- 🇬🇧United Kingdom Driskell
@derickr
> FWIW, I don't actually understand *why* you have these exceptions with references to these connection/transaction objects though. Unless you're using exceptions for code flow, which you surely did not expect?
Please see reproduction case in: https://bugs.xdebug.org/view.php?id=2222
There is nothing in code adding the variable "$destructing" to an exception. Just merely the presence of the exception is causing this. I think you'd be absolutely perfectly fine to store a reference to the exception and anything inside it. Just here it seems to be somehow grabbing everything in scope in each method in the call chain, which I am sure must be unintentional and I hope, fixable.
- 🇬🇧United Kingdom derickr
Although there is no code that adds that variable to an exception, that doesn't mean that it doesn't get added.
Each exception has an exception trace (so that you can call `getTrace()` on the exception), and for each stack element it keeps a reference to each of the arguments, and each of the local variables.
The only alternative would be to 1. not keep a "reference" to local variables (which means I can't show them), or 2. convert them to a string representation (which is also not great).
A script to demonstrate what's going on (copied from https://bugs.xdebug.org/view.php?id=2222):
<?php class destructingclass { public function __destruct() { echo 'DESTRUCTION', PHP_EOL; } } function methodcall() { $destructing = new destructingclass(); try { throw new Exception("TEST"); } catch (Exception $e) { } } methodcall(); echo "Throwing 10 exceptions: \n"; for ($i = 0; $i < 10; $i++) { try { echo "Throwning exception $i\n"; throw new Exception("Dummy"); } catch (Exception $e) { } } echo "Done throwing 10 exceptions\n"; echo 'METHOD RETURNED', PHP_EOL;
Outputs:
Throwing 10 exceptions: Throwning exception 0 Throwning exception 1 Throwning exception 2 Throwning exception 3 Throwning exception 4 Throwning exception 5 Throwning exception 6 Throwning exception 7 DESTRUCTION Throwning exception 8 Throwning exception 9 Done throwing 5 exceptions METHOD RETURNED
- 🇬🇧United Kingdom Driskell
@derickr It would be useful to drop that on the Xdebug bug tracker as it might be useful if others get there.
I'm also very curious why the last 8 exceptions are kept but that's perhaps not a discussion for here, and appreciate it is a bit of an education for me here as I'm keen to understand especially if things are meant to remain like this. - Assigned to mondrake
- 🇮🇹Italy mondrake 🇮🇹
#49 I am working on a patch and will post soon, so I'll keep this assigned to me.
#48
I don't think you can assume the transaction is complete. Maybe you're in this destruction because of an error and it is incomplete. This could potentially commit a partial transaction and remove all usefulness of transactions.
I agree 200%, but here we need to keep supporting current behavior. Reviewing ✨ Allow explicit COMMIT in Transaction objects Needs review and getting it in would be a first step to remove the implicit behavior on destruction, which is causing this trouble, will be the first step towards a different future.
And you still have the issue of one massive transaction when it should have been individual.
Yes and no. Yes multiple 'drupal' transaction objects. No in fact there's only one REAL db transaction active, the nesting is a code logic thing, not a corresponding db thing. If you COMMIT that REAL db transaction, you're done vs current behavior. BUT - there's no way to safely execute 'drupal' post-transaction callbacks at this stage, the might have been already destructed.
- Issue was unassigned.
- Status changed to Needs review
about 1 year ago 8:11pm 7 December 2023 - 🇮🇹Italy mondrake 🇮🇹
This patch is what I would suggest doing. Covers independently destruction of both Connection and TransactionManager. As noted, not much can be done to try and perform post-transaction callbacks.
In general, my suggestion would be to won't fix this, and start working toward changing from implicit to explicit commits. I think this could happen by D11 if we do not lose time.
- 🇬🇧United Kingdom Driskell
I agree with @mandrake that I think best approach is to move to explicit commit.
The patch I do not feel is feasible - making transactions silently auto commit would be dangerous to data integrity. We would then generate new problem scenarios that are difficult to diagnose. Also as noted everything then collapses into a single transaction that is auto committed at the end and I’m sure this has implications - albeit maybe rare - things like outbound API if they ever needed to call back for data they won’t see it yet if your request isn’t finished. Of course only in xdebug environments and unlikely in production but I am sure has been enabled even temporarily in production to diagnose.
- 🇬🇧United Kingdom Driskell
Probably worth an IS update regarding the Xdebug impact and that in normal scenario transaction destruction is safe as it happens way before shutdown?
- 🇧🇪Belgium wim leers Ghent 🇧🇪🇪🇺
Note that this also affects Drupal 9. See 🐛 GitLab CI pipeline broke due to wodby/php:8.1-dev 4.41.0 installing XDebug 3.3 Needs review for example.
- 🇮🇹Italy mondrake 🇮🇹
I filed 📌 [PP-1] Convert all transactions to explicit COMMIT Postponed .
- 🇷🇴Romania andreic
The patch in #55 fixed the same error I had on a 10.1.7 installation.
- last update
about 1 year ago Patch Failed to Apply - 🇺🇸United States alfattal Minnesota
The patch in #55 🐛 Transaction autocommit during shutdown relies on unreliable object destruction order (xdebug 3.3+ enabled) Needs review failed to apply with the following error:
Unhandled promise rejection with ArgumentCountError: Too few arguments to function React\Promise\Promise::React\Promise\{closure}(), 0 passed in phar:///usr/local/bin/composer/src/Composer/Installer/InstallationManager.php on line 660 and exactly 1 expected in phar:///usr/local/bin/composer/vendor/react/promise/src/Promise.php:277 Stack trace: #0 phar:///usr/local/bin/composer/src/Composer/Installer/InstallationManager.php(660): React\Promise\Promise::React\Promise\{closure}() #1 phar:///usr/local/bin/composer/vendor/react/promise/src/Internal/FulfilledPromise.php(47): Composer\Installer\InstallationManager::Composer\Installer\{closure}() #2 phar:///usr/local/bin/composer/src/Composer/Installer/InstallationManager.php(661): React\Promise\Internal\FulfilledPromise->then() #3 phar:///usr/local/bin/composer/vendor/react/promise/src/Promise.php(288): Composer\Installer\InstallationManager::Composer\Installer\{closure}() #4 phar:///usr/local/bin/composer/vendor/react/promise/src/Promise.php(37): React\Promise\Promise->call() #5 phar:///usr/local/bin/composer/src/Composer/Installer/InstallationManager.php(663): React\Promise\Promise->__construct() #6 phar:///usr/local/bin/composer/src/Composer/Installer/InstallationManager.php(221): Composer\Installer\InstallationManager->runCleanup() #7 phar:///usr/local/bin/composer/src/Composer/Installer.php(791): Composer\Installer\InstallationManager->execute() #8 phar:///usr/local/bin/composer/src/Composer/Installer.php(292): Composer\Installer->doInstall() #9 phar:///usr/local/bin/composer/src/Composer/Command/InstallCommand.php(147): Composer\Installer->run() #10 phar:///usr/local/bin/composer/vendor/symfony/console/Command/Command.php(298): Composer\Command\InstallCommand->execute() #11 phar:///usr/local/bin/composer/vendor/symfony/console/Application.php(1040): Symfony\Component\Console\Command\Command->run() #12 phar:///usr/local/bin/composer/vendor/symfony/console/Application.php(301): Symfony\Component\Console\Application->doRunCommand() #13 phar:///usr/local/bin/composer/src/Composer/Console/Application.php(382): Symfony\Component\Console\Application->doRun() #14 phar:///usr/local/bin/composer/vendor/symfony/console/Application.php(171): Composer\Console\Application->doRun() #15 phar:///usr/local/bin/composer/src/Composer/Console/Application.php(145): Symfony\Component\Console\Application->run() #16 phar:///usr/local/bin/composer/bin/composer(88): Composer\Console\Application->run() #17 /usr/local/bin/composer(29): require('...') #18 {main}
It also failed in the test for (10.1.x: PHP 8.1 & MySQL 8).
- Status changed to Needs work
about 1 year ago 7:03pm 11 December 2023 - 🇬🇧United Kingdom alexpott 🇪🇺🌍
alexpott → changed the visibility of the branch 3405976-transactions to hidden.
- Merge request !5774Transaction destruction with xdebug 3.3.0 Initial commit of #55 by @mondrake → (Open) created by alexpott
- 🇮🇳India ashetkar
With #3 Patch CI pipeline working fine for Drupal core 10.1.5 but patch #55 failing for drupal core 10.1.5
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
I turned @mondrake's patch into an MR against 11.x.
Has anyone got instructions on how to reproduce because I can't reproduce this against the standard install. There is no exception triggered for communication purposes when doing a user create or cache clear.
- Status changed to Needs review
about 1 year ago 10:55am 12 December 2023 - 🇬🇧United Kingdom alexpott 🇪🇺🌍
Hiding the files so the MR is the thing to review.
- 🇮🇹Italy mondrake 🇮🇹
Added some comments inline.
The more I see this, the sicker I feel... dumping state across objects for use during destruction...
- 🇬🇧United Kingdom astoker88
For anyone struggling short term here, whilst the patch in 55 isn't working (Drupal 10.1.7, PHP 8.2
MySQL 8.0) for a lot of folks and work is ongoing - i can confirm the issue is solved for me by deleting the xdebug.ini. - 🇬🇧United Kingdom alexpott 🇪🇺🌍
@astoker88 the simplest way to fix this is to ensure that develop is not set in xdebug.mode. You can still debug :)
- 🇩🇪Germany akoe
We ran into the same issue with our CI containers that were failing only when run in pipeline. And we weren't able to reproduce this locally with the same containers in any way.
Our stack: MySQL 5.7; PHP 8.1 and Drupal 9 and 10In the pipeline we could narrow it down to a Drush cache clear for the router cache:
drush cache:clear router
and also running the router rebuild method directly triggered the error:drush ev "\Drupal::service('router.builder')->rebuild();"
Thankfully the workaround disabling xdebug via xdebug.mode=off is working for our usecase. And we will be testing patches for D10 also.
- 🇺🇸United States alfattal Minnesota
@akoe May I ask what patches you're testing for Drupal 10? Are they local patches or from other issues? Thank you!
- 🇺🇸United States xjm
The MR should be made against 11.x FWIW (which means filing the issue against 11.x too nowadays). We'll need to decide based on the eventual solution how far it's safe to backport it. This issue sounds bad enough that could even be backported as far as 10.1 (at release manager discretion) if we are able to come up with a safe fix.
- 🇺🇸United States alfattal Minnesota
@alexpott Not sure why you changed the status to Needs Review, you opened a MR based on a patch that does NOT apply and thus, it needs works!
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
@alfattal the MR does apply to 11.x which is where this has to be fixed first. The fix for 10.1.x is a little different because there is no transaction manager. If you want a fix for 10.1.x - maybe the patch in #3 will work for you but the final fix for 10.1.x is likely to look a little different. In my opinion the best fix you can do right now is ensure that
develop
is not in your xdebug.mode value as then you don't need a patch at all. - 🇺🇸United States yesct
Like @mglaman in comment #30 https://www.drupal.org/project/drupal/issues/3405976#comment-15357388 🐛 Transaction autocommit during shutdown relies on unreliable object destruction order (xdebug 3.3+ enabled) Needs review
we were able to fix the sudden failing of our build step in behat, unit, and functional phpunit tests by updating the image CI was using in our webhead-ci/Dockerfile with this change:
- && pecl install xdebug \ + && pecl install xdebug-3.2.2 \
Thank you folks for sharing what symptoms you were seeing and your workarounds!!
---
We are running D10. We did try a patch and it helped get our unit tests to pass, but we were still getting different errors with behat and functtional phpunit tests with the patch. Pinning xdebug got all our tests passing.
- 🇺🇸United States yesct
I added workarounds and the upstream issue to this summary.
- 🇲🇩Moldova OIOIOOOI
Been using Drupal 10.1.6 and stumbled upon an issue that eventually led me to this thread.
Clean installation under PHP8.2 and xdebug 3.3.0, the entities created (nodes/terms) stubbornly were not deleted when doing so in UI.
After enabling the database logging it turned out that after the whole set of DELETE queries, a ROLLBACK was issued.
Step debugging this brought me to the __destruct() method being talked here.Disabling xdebug extension fixes the issue, however believe the patch in #75 should also do the trick for those who use xdebug.
- 🇺🇸United States mferanda
Disabling xdebug resolved the issue on 9.5.11 and 10.1.7
- 🇪🇸Spain pgrandeg
I faced te same problem while deleting content with Drupal 10.1.7 and latest wodby/drupal-php. Disabling xdebug configuration from docker-compose.yml fixed the issue
- Status changed to Needs work
12 months ago 12:06pm 6 January 2024 - 🇳🇱Netherlands daffie
I see a lot of changes in the MR from @mondrake, which adds code that relies on deprecated code. When we do that we cannot remove the deprecated code. So, can we please not do that. :)
If I understand the problem correctly is that it only a problem when the database connection desctucted, before the Transaction object is destructed. The logical solution for me would be to have
Connection->__destruct()
check through the transaction manager if there is still an active transaction(s) and if so then to commit that transaction(s). If it is more complicated or if my solution does not work, can you explain why I am wrong. - 🇬🇧United Kingdom Driskell
In a way ideally Xdebug would make the exception tracking it’s doing opt-in or at least have an opt-out (the tracking keeps the transaction objects in scope if exception is thrown and caught so there’s a history of exceptions stored during debugging)
That would help for all use cases and if it’s runtime configurable allow Drupal as a framework to opt out until it removes reliance on the transaction object destructor to commit transactions.
- 🇮🇹Italy mondrake 🇮🇹
@daffie the issue reported here is present in all Drupal versions, both in new and in deprecated code path, so a fix here would need to cover both paths - yes, that means also fixing deprecated code. At least, if we want to port it back to 10.2 and potentially below. Given this is critical, I assume it's reasonable to expect a backport.
To me, as I said earlier, the future though is to get rid of commit on destruction, and go for explicit commit. At least to me, the path to get there is set: ✨ Allow explicit COMMIT in Transaction objects Needs review , then 📌 [PP-1] Convert all transactions to explicit COMMIT Postponed , then a to-be issue to deprecate commit on destruct.
We are currently blocked by ✨ [PP-1] Introduce a Connection::executeDdlStatement method Active .
- 🇬🇧United Kingdom derickr
@ #83 : I don't know how to make this opt-in without also not adding a setting. FWIW, relying on a specific destruction order has always a problem with Drupal. It was never something that was guaranteed to happen.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
I've just hit this problem while upgrading Thunder to use core 10.2.1 (https://github.com/thunder/thunder-distribution/pull/762)
I'm quite concerned because:
- The fails only happen with 10.2.x. Thunder is passing on 10.1.x with exactly the same environment. This means the fail is due to the 10.2.x transaction management changes.
- Xdebug is not installed. This means it could be happening on live sites.
- The error only occurs during the destructor and does not get into Drupal's logs so it is quite hard to track down.
The good news is that 10.2.x MR fixes the problem.
- 🇪🇸Spain Carlos Romero
Hello everyone,
It is happening to me on a drupal 9.5.11 with php 8.0.30 and xdebug 3.3.1, when I deactivate xdebug the error disappears, I have activated it again and with patch #3 🐛 Transaction autocommit during shutdown relies on unreliable object destruction order (xdebug 3.3+ enabled) Needs review it no longer gives an error.Thanks.
- 🇩🇪Germany Cyberschorsch
Cyberschorsch → changed the visibility of the branch 3405976-transaction-autocommit-during to active.
- 🇩🇪Germany Cyberschorsch
Cyberschorsch → changed the visibility of the branch 3405976-transaction-autocommit-during to hidden.
I have the same issue on Drupal 10.2.2, with Docker, PHP 8.2.14 and XDebug 3.3.1 enabled with default configuration.
If I force to disable XDebug, the problem was solved :[xdebug] xdebug.mode=off
It works with the good xdebug config for my env :
[xdebug] xdebug.mode=debug xdebug.start_with_request=yes xdebug.discover_client_host=true xdebug.remote_handler=dbgp xdebug.max_nesting_level=1500 xdebug.client_host=host.docker.internal
And without any of the two solutions above applied, the MR on 10.2.x branch solved also the problem : https://git.drupalcode.org/project/drupal/-/merge_requests/5774
- composer require cweagans/composer-patches
- add patch on extra :"extra": { "patches": { "drupal/core": { "Transaction autocommit during shutdown relies on unreliable object destruction order": "https://git.drupalcode.org/project/drupal/-/merge_requests/5774.patch" } },
@fvorillion Just make sure you don't actually use the MR's patch URL in the composer file. MR patch files will change anytime a person commits a change, and the change might break or compromise your site. You should download the patch to a folder in your project and use
./patches/5774.patch
or something similar.After downloading and applying the current MR patch, I still get errors for any transaction while xdebug is enabled.
The errors also contain the serialized DB connection with a bunch of sensitive info like DB, username, password, so I have redacted that information (even though this is from a local DDEV instance).
$ ddev drush updb [success] No pending updates. PHP Fatal error: Uncaught TypeError: Drupal\Core\Database\StatementWrapperIterator::__construct(): Argument #2 ($clientConnection) must be of type object, null given, called in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php on line 577 and defined in /var/www/html/web/core/lib/Drupal/Core/Database/StatementWrapperIterator.php:54 Stack trace: #0 /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php(577): Drupal\Core\Database\StatementWrapperIterator->__construct() #1 /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php(843): Drupal\Core\Database\Connection->prepareStatement() #2 /var/www/html/web/core/lib/Drupal/Core/Config/DatabaseStorage.php(111): Drupal\Core\Database\Connection->query() #3 /var/www/html/web/core/lib/Drupal/Core/Config/CachedStorage.php(95): Drupal\Core\Config\DatabaseStorage->readMultiple() #4 /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php(165): Drupal\Core\Config\CachedStorage->readMultiple() #5 /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php(104): Drupal\Core\Config\ConfigFactory->doLoadMultiple() #6 /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php(89): Drupal\Core\Config\ConfigFactory->doGet() #7 /var/www/html/web/core/lib/Drupal.php(411): Drupal\Core\Config\ConfigFactory->get() #8 /var/www/html/web/core/includes/errors.inc(323): Drupal::config() #9 /var/www/html/web/core/includes/errors.inc(123): _drupal_get_error_level() #10 /var/www/html/web/core/includes/bootstrap.inc(202): error_displayable() #11 /var/www/html/web/core/includes/bootstrap.inc(186): _drupal_exception_handler_additional() #12 [internal function]: _drupal_exception_handler() #13 {main} thrown in /var/www/html/web/core/lib/Drupal/Core/Database/StatementWrapperIterator.php on line 54 Fatal error: Uncaught TypeError: Drupal\Core\Database\StatementWrapperIterator::__construct(): Argument #2 ($clientConnection) must be of type object, null given, called in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php on line 577 and defined in /var/www/html/web/core/lib/Drupal/Core/Database/StatementWrapperIterator.php on line 54 TypeError: Drupal\Core\Database\StatementWrapperIterator::__construct(): Argument #2 ($clientConnection) must be of type object, null given, called in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php on line 577 in /var/www/html/web/core/lib/Drupal/Core/Database/StatementWrapperIterator.php on line 54 Call Stack: 6.0352 75949336 1. _drupal_exception_handler($exception = class TypeError { protected $message = 'Drupal\\Core\\Database\\Connection::getClientConnection(): Return value must be of type object, null returned'; private string ${Error}string = ''; protected $code = 0; protected string $file = '/var/www/html/web/core/lib/Drupal/Core/Database/Connection.php'; protected int $line = 326; private array ${Error}trace = [0 => [...], 1 => [...], 2 => [...]]; private ?Throwable ${Error}previous = NULL }) /var/www/html/web/core/includes/bootstrap.inc:0 6.0361 75910456 2. _drupal_exception_handler_additional($exception = class TypeError { protected $message = 'Drupal\\Core\\Database\\Connection::getClientConnection(): Return value must be of type object, null returned'; private string ${Error}string = ''; protected $code = 0; protected string $file = '/var/www/html/web/core/lib/Drupal/Core/Database/Connection.php'; protected int $line = 326; private array ${Error}trace = [0 => [...], 1 => [...], 2 => [...]]; private ?Throwable ${Error}previous = NULL }, $exception2 = class TypeError { protected $message = 'Drupal\\Core\\Database\\StatementWrapperIterator::__construct(): Argument #2 ($clientConnection) must be of type object, null given, called in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php on line 577'; private string ${Error}string = ''; protected $code = 0; protected string $file = '/var/www/html/web/core/lib/Drupal/Core/Database/StatementWrapperIterator.php'; protected int $line = 54; private array ${Error}trace = [0 => [...], 1 => [...], 2 => [...], 3 => [...], 4 => [...], 5 => [...], 6 => [...], 7 => [...], 8 => [...]]; private ?Throwable ${Error}previous = NULL }) /var/www/html/web/core/includes/bootstrap.inc:186 6.0361 75910456 3. error_displayable($error = ???) /var/www/html/web/core/includes/bootstrap.inc:202 6.0361 75910456 4. _drupal_get_error_level() /var/www/html/web/core/includes/errors.inc:123 6.0361 75910456 5. Drupal::config($name = 'system.logging') /var/www/html/web/core/includes/errors.inc:323 6.0361 75910456 6. Drupal\Core\Config\ConfigFactory->get($name = 'system.logging') /var/www/html/web/core/lib/Drupal.php:411 6.0361 75910456 7. Drupal\Core\Config\ConfigFactory->doGet($name = 'system.logging', $immutable = ???) /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php:89 6.0361 75910672 8. Drupal\Core\Config\ConfigFactory->doLoadMultiple($names = [0 => 'system.logging'], $immutable = TRUE) /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php:104 6.0361 75910784 9. Drupal\Core\Config\CachedStorage->readMultiple($names = [0 => 'system.logging']) /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php:165 6.0361 75911624 10. Drupal\Core\Config\DatabaseStorage->readMultiple($names = [0 => 'system.logging']) /var/www/html/web/core/lib/Drupal/Core/Config/CachedStorage.php:95 6.0361 75912128 11. Drupal\Core\Database\Connection->query($query = 'SELECT [name], [data] FROM {config} WHERE [collection] = :collection AND [name] IN ( :names[] )', $args = [':collection' => '', ':names[]' => [0 => 'system.logging']], $options = []) /var/www/html/web/core/lib/Drupal/Core/Config/DatabaseStorage.php:111 6.0361 75913112 12. Drupal\Core\Database\Connection->prepareStatement($query = 'SELECT [name], [data] FROM {config} WHERE [collection] = :collection AND [name] IN ( :names__0 )', $options = ['fetch' => 5, 'allow_delimiter_in_query' => FALSE, 'allow_square_brackets' => FALSE, 'pdo' => []], $allow_row_count = ???) /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php:843 6.0361 75913432 13. Drupal\Core\Database\StatementWrapperIterator->__construct($connection = class Drupal\mysql\Driver\Database\mysql\Connection { REDACTED }, $clientConnection = NULL, $query = 'SELECT "name", "data" FROM "config" WHERE "collection" = :collection AND "name" IN ( :names__0 )', $options = [], $rowCountEnabled = FALSE) /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php:577
- 🇦🇺Australia larowlan 🇦🇺🏝.au GMT+10
Possibly related 🐛 Doesn't create user profile on fresh installation Postponed: needs info
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
@longwave yes I'm aware that this is in not 10.2 only when xdebug is involved but I've got the first instance of this issue being a problem where xdebug is not involved and the situation where this occurs is 10.2 only. I think this is a much much bigger problem as running xdebug in production is not recommended. Thunder doesn't do anything special on the DB layer and yes, investigating and reproducing this issue in the situation is not easy. I wish we had an MR for 10.2.x (and earlier Drupal versions) that had no API change so we can easy fix the problem. And then implement the better solutions being proposed. I think we need a pragmatic solution.
- 🇺🇸United States mile23 Seattle, WA
From my MR comment:
It looks like the Connection object can have a reference to the transaction manager, which means it's not being destroyed, right? So if ($this->$transactionManager) { ... then use it, otherwise call connection->commit(). We'd look at the property rather than calling the service method ($this->transactionManager()) because otherwise we run into to the problem mentioned... The service method could end up generating a new transaction manager. Ideal solution: Actually inject the service instead of lazily generating one, so we always have a reference to it and it's not being destroyed before the Connection object.
I'm not sure about the internals of the DB layer, so maybe it's naive to say. :-) But just keeping a reference to things you expect to exist in your class seems like a non-breaking change that could be applied to past versions.
- First commit to issue fork.
- Merge request !6562#3405976 - Transaction autocommit during shutdown relies on unreliable object... → (Open) created by jrglasgow
- 🇺🇸United States jrglasgow Idaho
I was unable to get wither merge request (10.1.x and 11.x) to apply to my 10.2.x sites, I hand applied the patch and created a new branch to be merged into 10.2.x. It is working for me on my local.
- 🇺🇸United States mile23 Seattle, WA
Destruct doesn’t happen in order during script shutdown so even if you had a reference to something it might have been destroyed already and become NULL.
Like this:
abstract class Connection { public function __construct(object $connection, array $connection_options) { // etc. etc..... $this->transactionManager = $this->driverTransactionManager(); } }
Now you always have a reference to the transaction manager for the life of the object, and the transaction manager will not be garbage-collected before the Connection is destroyed.
If PHP has decided that a referenced object can be destroyed through GC before there are 0 references to it, then we have a problem we can not solve here.
- 🇬🇧United Kingdom Driskell
> If PHP has decided that a referenced object can be destroyed through GC before there are 0 references to it, then we have a problem we can not solve here.
With XDebug develop mode since 3.2+ if a function throws then XDebug will capture the stack trace along with all in scope variables in all frames. This means the transaction object never reaches 0 at end of function as XDebug holds a reference. Then end of script occurs and AFAIK XDebug doesn’t free - so end of script cleanup kicks in and picks at random to free (as far as PHP is concerned the only way the objects are still alive at this point is circular reference). So it’s less that they free before hitting 0 and more than they will never reach 0 so PHP just picks them off at random.
I kind of agree that this is somewhat unfixable and even if it was fixed it would be just too complex. The only way forward is probably to remove implicit transaction objects entirely or throw warning of no compatibility for develop mode in XDebug.
- Status changed to Needs review
10 months ago 10:30am 15 February 2024 - 🇬🇧United Kingdom alexpott 🇪🇺🌍
I've opened an MR that uses service destruction and the kernel to work around this bug. It's a more minimal approach to resolving the issue in 10.2 and 10.1 that results in me being to run the
\Drupal\Tests\mysql\Kernel\mysql\TransactionTest
successfully locally with xdebug 3.3.0 in develop mode. If I run against HEAD it is broken horribly.Yes it would be great to fix in a more explicit way but Drupal's transaction committing has been implicit for a very long time so I think moving away from the properly is going to take time and a lot of work.
@mondrake what do think about doing something like https://git.drupalcode.org/project/drupal/-/merge_requests/6614 as stop gap and then trying to fix this probably in another issue.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
TIL the kernel is not terminated in the interactive installer during installation. Wowzers.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
Okay so Thunder's tests pass with the minimal mr with all the installer kernel termination fixes... https://github.com/thunder/thunder-distribution/pull/773
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
Thanks for the review @mondrake. I left replies to your comments on the MR.
- 🇮🇹Italy mondrake 🇮🇹
mondrake → changed the visibility of the branch 3405976-mondrake-approach-10.2.x to hidden.
- 🇮🇹Italy mondrake 🇮🇹
mondrake → changed the visibility of the branch 3405976-mondrake-approach to hidden.
- 🇮🇹Italy mondrake 🇮🇹
mondrake → changed the visibility of the branch 10.1.x to hidden.
- Status changed to RTBC
10 months ago 3:53pm 15 February 2024 - Status changed to Needs review
10 months ago 3:58pm 15 February 2024 I still have the error in #93 when applying the latest MR diff to 10.2.3.
Can someone review if this is related or if the error should be a different issue or something?
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
Thanks for the review @catch - I've made those changes.
@solideogloria can you re-test with the latest MR. If it doesn't work can you give as much information as possible so we can work out why. Thanks!
- 🇬🇧United Kingdom longwave UK
I hate to ask but is there any way we could add some form of test coverage to this, to avoid us refactoring it again in the future and breaking it again?
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
We have fails in
Drupal\Tests\standard\FunctionalJavascript\StandardPerformanceTest
to work why this code is causing extra queries there... but not on SQLite or MySQL... - Status changed to Needs work
10 months ago 6:10pm 15 February 2024 The latest commit broke something.
PHP Fatal error: Uncaught Error: Call to a member function get() on null in /var/www/html/web/core/lib/Drupal/Core/DrupalKernel.php:1360 Stack trace: #0 /var/www/html/web/core/lib/Drupal/Core/DrupalKernel.php(1244): Drupal\Core\DrupalKernel->initializeServiceProviders() #1 /var/www/html/web/core/lib/Drupal/Core/DrupalKernel.php(937): Drupal\Core\DrupalKernel->compileContainer() #2 /var/www/html/web/core/lib/Drupal/Core/DrupalKernel.php(494): Drupal\Core\DrupalKernel->initializeContainer() #3 /var/www/html/web/core/includes/utility.inc(34): Drupal\Core\DrupalKernel->boot() #4 /var/www/html/vendor/drush/drush/src/Commands/core/CacheRebuildCommands.php(66): drupal_rebuild() #5 [internal function]: Drush\Commands\core\CacheRebuildCommands->rebuild()
// Special-case the database service so that transactions started by other // destructable services are closed. $this->container->get('database')->destruct();
- 🇬🇧United Kingdom catch
Also this fix only applies to the default connection via the database service, I assume anyone doing anything with other connections is on their own.
We could probably loop over all database connections and commit their transactions, but it'd need a diversion from the service approach then.
I don't know if it's relevant, but I do have additional external DB connections defined. Let me know if you need any additional info for debugging in addition to what I've given.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
@solideogloria can you supply a full stack trace \Drupal\Core\DrupalKernel::initializeServiceProviders() does not call terminate. Plus can you provide more information about what you're doing when things do not work. As far as I can see you are doing a drush cache rebuild... this works fine for me. Are you sure the patch as applied correctly? We're not changing any line near 1360... I'm attaching a patch for 10.2.x that allows me to install Drupal and rebuild the cache using Drush as the MR does not apply to 10.2.x. Please try this instead.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
alexpott → changed the visibility of the branch 3405976-with-3421164 to hidden.
- Status changed to Needs review
10 months ago 11:37pm 15 February 2024 - 🇬🇧United Kingdom alexpott 🇪🇺🌍
The postgres fails are nothing to do with this issue - they're happening in HEAD - see #3420401-10: StandardPerformanceTest::testLoginBlock Failed asserting that 50 is identical to 49. → ...
@solideogloria / re #118 I'm pretty sure that was a patch applying issue - got exactly the same fail on Thunder (see https://github.com/thunder/thunder-distribution/actions/runs/7920011867/...). The patch in #122 fixes that.
The MR diff applies to 10.2.3 for me. Note that the .diff can sometimes apply differently than the .patch; maybe that's why.
Full stack trace from using 6614.diff
$ ddev drush cr PHP Fatal error: Uncaught Error: Call to a member function get() on null in /var/www/html/web/core/lib/Drupal/Core/DrupalKernel.php:1360 Stack trace: #0 /var/www/html/web/core/lib/Drupal/Core/DrupalKernel.php(1244): Drupal\Core\DrupalKernel->initializeServiceProviders() #1 /var/www/html/web/core/lib/Drupal/Core/DrupalKernel.php(937): Drupal\Core\DrupalKernel->compileContainer() #2 /var/www/html/web/core/lib/Drupal/Core/DrupalKernel.php(494): Drupal\Core\DrupalKernel->initializeContainer() #3 /var/www/html/web/core/includes/utility.inc(34): Drupal\Core\DrupalKernel->boot() #4 /var/www/html/vendor/drush/drush/src/Commands/core/CacheRebuildCommands.php(66): drupal_rebuild() #5 [internal function]: Drush\Commands\core\CacheRebuildCommands->rebuild() #6 /var/www/html/vendor/consolidation/annotated-command/src/CommandProcessor.php(276): call_user_func_array() #7 /var/www/html/vendor/consolidation/annotated-command/src/CommandProcessor.php(212): Consolidation\AnnotatedCommand\CommandProcessor->runCommandCallback() #8 /var/www/html/vendor/consolidation/annotated-command/src/CommandProcessor.php(175): Consolidation\AnnotatedCommand\CommandProcessor->validateRunAndAlter() #9 /var/www/html/vendor/consolidation/annotated-command/src/AnnotatedCommand.php(387): Consolidation\AnnotatedCommand\CommandProcessor->process() #10 /var/www/html/vendor/symfony/console/Command/Command.php(326): Consolidation\AnnotatedCommand\AnnotatedCommand->execute() #11 /var/www/html/vendor/symfony/console/Application.php(1096): Symfony\Component\Console\Command\Command->run() #12 /var/www/html/vendor/symfony/console/Application.php(324): Symfony\Component\Console\Application->doRunCommand() #13 /var/www/html/vendor/symfony/console/Application.php(175): Symfony\Component\Console\Application->doRun() #14 /var/www/html/vendor/drush/drush/src/Runtime/Runtime.php(110): Symfony\Component\Console\Application->run() #15 /var/www/html/vendor/drush/drush/src/Runtime/Runtime.php(40): Drush\Runtime\Runtime->doRun() #16 /var/www/html/vendor/drush/drush/drush.php(139): Drush\Runtime\Runtime->run() #17 /var/www/html/vendor/drush/drush/drush(4): require('...') #18 /var/www/html/vendor/bin/drush(119): include('...') #19 {main} thrown in /var/www/html/web/core/lib/Drupal/Core/DrupalKernel.php on line 1360 [warning] Drush command terminated abnormally.
When using the #122 patch and
drush cr
, I get the same error in #93 🐛 Transaction autocommit during shutdown relies on unreliable object destruction order (xdebug 3.3+ enabled) Needs reviewHere is some additional debugging. The error in #93 occurs for an
INSERT INTO "watchdog"
query.$this->connection
is NULL, and the query is being used to log an error.Since the actual exception logging fails, here's the call stack prior to the error:
Drupal\Core\Database\Connection->prepareStatement (...\web\core\lib\Drupal\Core\Database\Connection.php: 577) Drupal\mysql\Driver\Database\mysql\Insert->execute (...\web\core\modules\mysql\src\Driver\Database\mysql\Insert.php: 42) Drupal\dblog\Logger\DbLog->log (...\web\core\modules\dblog\src\Logger\DbLog.php: 78) Drupal\Core\Logger\LoggerChannel->log (...\web\core\lib\Drupal\Core\Logger\LoggerChannel.php: 127) _drupal_log_error (...\web\core\includes\errors.inc: 175) _drupal_exception_handler (...\web\core\includes\bootstrap.inc: 182)
And the exception it was trying to log:
%type: "AssertionError" @message: "Transaction $stack was not empty. Active stack: 65cf8c6fcd9c88.03805306\drupal_transaction" %function: "assert()" %file: "/var/www/html/web/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php" %line: 99 @backtrace_string: "#0 /var/www/html/web/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php(99): assert() #1 [internal function]: Drupal\Core\Database\Transaction\TransactionManagerBase->__destruct() #2 {main}" exception: AssertionError severity_level: 3 channel: "php"
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
@solideogloria I've got a couple of questions about #93. Can you confirm that the bug goes away if the php.ini setting xdebug.mode does not contain develop. I.e. it is something like
xdebug.mode=debug
Also can you try with the patch attached as this might reveal the error that's causing the error... it makes a small change to _drupal_get_error_level() so errors in error handling don't get in the way.
Trying with the updated patch and with
xdebug.mode=debug
, I still get the error. The cache rebuild says is completed, but the error happens after that:$ ddev drush cr [success] Cache rebuild complete. <h1>Additional uncaught exception thrown while handling exception.</h1><h2>Original</h2><p><em class="placeholder">AssertionError</em>: Transaction $stack was not empty. Active stack: 65cf912f0554b3.60082165\drupal_transaction in <em class="placeholder">assert()</em> (line <em class="placeholder">99</em> of <em class="placeholder">/var/www/html/web/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php</em>). <pre class="backtrace">assert() (Line: 99) Drupal\Core\Database\Transaction\TransactionManagerBase->__destruct() </pre></p><h2>Additional</h2><p><em class="placeholder">TypeError</em>: Drupal\Core\Database\StatementWrapperIterator::__construct(): Argument #2 ($clientConnection) must be of type object, null given, called in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php on line 577 in <em class="placeholder">Drupal\Core\Database\StatementWrapperIterator->__construct()</em> (line <em class="placeholder">54</em> of <em class="placeholder">/var/www/html/web/core/lib/Drupal/Core/Database/StatementWrapperIterator.php</em>). <pre class="backtrace">Drupal\Core\Database\StatementWrapperIterator->__construct() (Line: 577) Drupal\Core\Database\Connection->prepareStatement() (Line: 42) Drupal\mysql\Driver\Database\mysql\Insert->execute() (Line: 78) Drupal\dblog\Logger\DbLog->log() (Line: 101) Drupal\Core\Logger\LoggerChannel->log() (Line: 175) _drupal_log_error() (Line: 182) _drupal_exception_handler() </pre></p><hr />PHP Fatal error: Uncaught TypeError: Drupal\Core\Database\Connection::getClientConnection(): Return value must be of type object, null returned in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php:326 Stack trace: #0 /var/www/html/web/core/modules/mysql/src/Driver/Database/mysql/TransactionManager.php(31): Drupal\Core\Database\Connection->getClientConnection() #1 /var/www/html/web/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php(290): Drupal\mysql\Driver\Database\mysql\TransactionManager->processRootCommit() #2 /var/www/html/web/core/lib/Drupal/Core/Database/Transaction.php(88): Drupal\Core\Database\Transaction\TransactionManagerBase->unpile() #3 [internal function]: Drupal\Core\Database\Transaction->__destruct() #4 {main} thrown in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php on line 326 Fatal error: Uncaught TypeError: Drupal\Core\Database\Connection::getClientConnection(): Return value must be of type object, null returned in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php on line 326 TypeError: Drupal\Core\Database\Connection::getClientConnection(): Return value must be of type object, null returned in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php on line 326 Call Stack: 10.2068 71972432 1. _drupal_exception_handler() /var/www/html/web/core/includes/bootstrap.inc:0 10.9371 71954480 2. _drupal_exception_handler_additional() /var/www/html/web/core/includes/bootstrap.inc:186 10.9371 71954480 3. error_displayable() /var/www/html/web/core/includes/bootstrap.inc:202 10.9371 71954480 4. _drupal_get_error_level() /var/www/html/web/core/includes/errors.inc:123 10.9371 71954480 5. Drupal::config() /var/www/html/web/core/includes/errors.inc:323 10.9371 71954480 6. Drupal\Core\Config\ConfigFactory->get() /var/www/html/web/core/lib/Drupal.php:411 10.9371 71954480 7. Drupal\Core\Config\ConfigFactory->doGet() /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php:89 10.9371 71954696 8. Drupal\Core\Config\ConfigFactory->doLoadMultiple() /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php:104 10.9371 71954808 9. Drupal\Core\Config\CachedStorage->readMultiple() /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php:165 10.9371 71955432 10. Drupal\Core\Cache\ChainedFastBackend->getMultiple() /var/www/html/web/core/lib/Drupal/Core/Config/CachedStorage.php:87 10.9371 71955432 11. Drupal\Core\Cache\DatabaseBackend->getMultiple() /var/www/html/web/core/lib/Drupal/Core/Cache/ChainedFastBackend.php:167 10.9371 71956592 12. Drupal\mysql\Driver\Database\mysql\Connection->query() /var/www/html/web/core/lib/Drupal/Core/Cache/DatabaseBackend.php:118 10.9372 71957640 13. Drupal\mysql\Driver\Database\mysql\Connection->prepareStatement() /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php:843 11.4784 71958024 14. Drupal\Core\Database\StatementWrapperIterator->__construct() /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php:577
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
Here's another patch for 10.2.x that has the latest changes that changes thing to do a commit on all open db connections. @solideogloria it's really interesting that disabling xdebug seems to fix your problem but not changing the mode. That's the first reported instance of this. Can you confirm that you only get the errors with xdebug enbled? Also can you try the latest patch attached here as you did mention that you have multiple connections.
I was trying to change the mode with
ini_set('xdebug.mode', 'debug');
in settings.php, but apparently that doesn't work, asddev drush eval "echo ini_get('xdebug.mode');"
still showsdebug,develop
.I looked up how to change the mode with DDEV and now I don't get the error after properly setting the mode to
debug
.Using #130, I do still get an error, only when xdebug is enabled with develop. The error is very similar to #93, but I will include it:
$ ddev drush cr [success] Cache rebuild complete. PHP Fatal error: Uncaught TypeError: Drupal\Core\Database\StatementWrapperIterator::__construct(): Argument #2 ($clientConnection) must be of type object, null given, called in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php on line 580 and defined in /var/www/html/web/core/lib/Drupal/Core/Database/StatementWrapperIterator.php:54 Stack trace: #0 /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php(580): Drupal\Core\Database\StatementWrapperIterator->__construct() #1 /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php(846): Drupal\Core\Database\Connection->prepareStatement() #2 /var/www/html/web/core/lib/Drupal/Core/Cache/DatabaseBackend.php(118): Drupal\Core\Database\Connection->query() #3 /var/www/html/web/core/lib/Drupal/Core/Cache/ChainedFastBackend.php(167): Drupal\Core\Cache\DatabaseBackend->getMultiple() #4 /var/www/html/web/core/lib/Drupal/Core/Config/CachedStorage.php(87): Drupal\Core\Cache\ChainedFastBackend->getMultiple() #5 /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php(165): Drupal\Core\Config\CachedStorage->readMultiple() #6 /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php(104): Drupal\Core\Config\ConfigFactory->doLoadMultiple() #7 /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php(89): Drupal\Core\Config\ConfigFactory->doGet() #8 /var/www/html/web/core/lib/Drupal.php(411): Drupal\Core\Config\ConfigFactory->get() #9 /var/www/html/web/core/includes/errors.inc(323): Drupal::config() #10 /var/www/html/web/core/includes/errors.inc(123): _drupal_get_error_level() #11 /var/www/html/web/core/includes/bootstrap.inc(202): error_displayable() #12 /var/www/html/web/core/includes/bootstrap.inc(186): _drupal_exception_handler_additional() #13 [internal function]: _drupal_exception_handler() #14 {main} thrown in /var/www/html/web/core/lib/Drupal/Core/Database/StatementWrapperIterator.php on line 54 Fatal error: Uncaught TypeError: Drupal\Core\Database\StatementWrapperIterator::__construct(): Argument #2 ($clientConnection) must be of type object, null given, called in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php on line 580 and defined in /var/www/html/web/core/lib/Drupal/Core/Database/StatementWrapperIterator.php on line 54 TypeError: Drupal\Core\Database\StatementWrapperIterator::__construct(): Argument #2 ($clientConnection) must be of type object, null given, called in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php on line 580 in /var/www/html/web/core/lib/Drupal/Core/Database/StatementWrapperIterator.php on line 54 Call Stack: 7.0476 71920152 1. _drupal_exception_handler($exception = class AssertionError { protected $message = 'Transaction $stack was not empty. Active stack: 65cf9bfc172788.99424958\\drupal_transaction'; private string ${Error}string = ''; protected $code = 1; protected string $file = '/var/www/html/web/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php'; protected int $line = 99; private array ${Error}trace = [0 => [...], 1 => [...]]; private ?Throwable ${Error}previous = NULL }) /var/www/html/web/core/includes/bootstrap.inc:0 8.3110 71904080 2. _drupal_exception_handler_additional($exception = class AssertionError { protected $message = 'Transaction $stack was not empty. Active stack: 65cf9bfc172788.99424958\\drupal_transaction'; private string ${Error}string = ''; protected $code = 1; protected string $file = '/var/www/html/web/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php'; protected int $line = 99; private array ${Error}trace = [0 => [...], 1 => [...]]; private ?Throwable ${Error}previous = NULL }, $exception2 = class TypeError { protected $message = 'Drupal\\Core\\Database\\StatementWrapperIterator::__construct(): Argument #2 ($clientConnection) must be of type object, null given, called in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php on line 580'; private string ${Error}string = ''; protected $code = 0; protected string $file = '/var/www/html/web/core/lib/Drupal/Core/Database/StatementWrapperIterator.php'; protected int $line = 54; private array ${Error}trace = [0 => [...], 1 => [...], 2 => [...], 3 => [...], 4 => [...], 5 => [...], 6 => [...], 7 => [...], 8 => [...]]; private ?Throwable ${Error}previous = NULL }) /var/www/html/web/core/includes/bootstrap.inc:186 8.3110 71904080 3. error_displayable($error = ???) /var/www/html/web/core/includes/bootstrap.inc:202 8.3110 71904080 4. _drupal_get_error_level() /var/www/html/web/core/includes/errors.inc:123 8.3110 71904080 5. Drupal::config($name = 'system.logging') /var/www/html/web/core/includes/errors.inc:323 8.3110 71904080 6. Drupal\Core\Config\ConfigFactory->get($name = 'system.logging') /var/www/html/web/core/lib/Drupal.php:411 8.3110 71904080 7. Drupal\Core\Config\ConfigFactory->doGet($name = 'system.logging', $immutable = ???) /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php:89 8.3110 71904296 8. Drupal\Core\Config\ConfigFactory->doLoadMultiple($names = [0 => 'system.logging'], $immutable = TRUE) /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php:104 8.3110 71904408 9. Drupal\Core\Config\CachedStorage->readMultiple($names = [0 => 'system.logging']) /var/www/html/web/core/lib/Drupal/Core/Config/ConfigFactory.php:165 8.3110 71905032 10. Drupal\Core\Cache\ChainedFastBackend->getMultiple($cids = [0 => 'system.logging'], $allow_invalid = ???) /var/www/html/web/core/lib/Drupal/Core/Config/CachedStorage.php:87 8.3110 71905032 11. Drupal\Core\Cache\DatabaseBackend->getMultiple($cids = [0 => 'system.logging'], $allow_invalid = FALSE) /var/www/html/web/core/lib/Drupal/Core/Cache/ChainedFastBackend.php:167 8.3110 71906192 12. Drupal\Core\Database\Connection->query($query = 'SELECT [cid], [data], [created], [expire], [serialized], [tags], [checksum] FROM {cache_config} WHERE [cid] IN ( :cids[] ) ORDER BY [cid]', $args = [':cids[]' => [0 => 'system.logging']], $options = ???) /var/www/html/web/core/lib/Drupal/Core/Cache/DatabaseBackend.php:118 8.3111 71907240 13. Drupal\Core\Database\Connection->prepareStatement($query = 'SELECT [cid], [data], [created], [expire], [serialized], [tags], [checksum] FROM {cache_config} WHERE [cid] IN ( :cids__0 ) ORDER BY [cid]', $options = ['fetch' => 5, 'allow_delimiter_in_query' => FALSE, 'allow_square_brackets' => FALSE, 'pdo' => []], $allow_row_count = ???) /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php:846 8.9296 71907624 14. Drupal\Core\Database\StatementWrapperIterator->__construct($connection = class Drupal\mysql\Driver\Database\mysql\Connection { protected $target = 'default'; protected $key = 'default'; protected $logger = NULL; protected $transactionLayers = []; protected $driverClasses = []; protected $statementWrapperClass = 'Drupal\\Core\\Database\\StatementWrapperIterator'; protected $transactionalDDLSupport = FALSE; protected $connection = NULL; protected $connectionOptions = REDACTED; REDACTED...}, $clientConnection = NULL, $query = 'SELECT "cid", "data", "created", "expire", "serialized", "tags", "checksum" FROM "cache_config" WHERE "cid" IN ( :cids__0 ) ORDER BY "cid"', $options = [], $rowCountEnabled = FALSE) /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php:580
Also, even after commenting out my other DB connections, I still have the error... but now the error only happens roughly every other time I clear the cache..., alternating a success and a failure.
Even so, the cache clear does succeed sometimes, with all my connections enabled. So it seems to be something unreliable that causes the error.
Does it perhaps matter which order things are destructed?
I tried on another site using #130, and it works fine. I'm going to try to narrow down if there's a certain patch or something I'm using that is causing an issue.
I have no idea. I removed all other patches I'm using from both contrib and core, and I still get the issue.
Also, is it possible for the logging of DB credentials during serialization of the connection object to be prevented?
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
@solideogloria yeah if you can find out what's causing this that'd be awesome. If you could share your composer.json and core.extension configuration with me that might help. Might some contrib that's causing the problem. Or maybe (even better) there's some way you could share your build with me. Are you on slack → ?
I am not on slack. I am going to try one more thing. I uninstalled all custom code. That didn't fix it, so it's in core or contrib. I will continue uninstalling modules and clearing the cache afterwards until I see it fixed or run out of modules to uninstall. That will hopefully narrow it down.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
@solideogloria does the bug only happen when you clear the caches with Drush? Do you all get the error when you clear via the UI. Just wondering if it is something special about using Drush?
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
I've moved the commits even later during execution - moved them to shutdown functions. This has some interesting effects on kernel tests which mean we need to commit transactions when we close connections - which makes sense to me. That in turn makes \Drupal\KernelTests\Core\Database\DriverSpecificTransactionTestBase::testTransactionManagerFailureOnPendingStackItems() pretty meaningless in its current form.
@solideogloria does this change in approach fix things for you? New 10.2.x patch attached.
The issue only happens when using Drush. I don't see it when clearing the cache via the UI. I am using Drush 12.
When using #141, I still get the error with the same frequency. Same trace as #132
Okay, after uninstalling a lot of modules a few at a time and deleting content in bulk, I discovered the source of the issue.
The error stops occurring if I delete all custom menu links by navigating to
/admin/modules/uninstall/entity/menu_link_content
(routesystem.prepare_modules_entity_uninstall
).I am going to update this comment with further debugging steps taken.
- Commenting out the line
$this->menuLinksRebuild();
inMenuRouterRebuildSubscriber::onRouterRebuild
fixes the issue.
- Commenting out the line
@alexpott The issue is caused by having a menu link that, in the "Link" field, has a path that is a node's redirect.
To reproduce my issue:
- Enable xdebug with
develop
in the mode.ddev xdebug on
- Create a node and give it a path alias
/test1
. Save. - Edit the node, and change the alias to
/test2
. Save. - Create a new menu link, with the link going to the string "/test1", not to the node ID, and save it.
drush cache:rebuild
- Enable xdebug with
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
Thanks @solideogloria - excellent information - I can now reproduce the bug you're seeing and can fix it. Patch incoming!
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
Here's a patch that should hopefully filx @solideogloria's problem and call terminate consistently on kernel's in core. It's also going to solve locks not being released by drush cache-rebuild - so that will be improved too... going to look for an existing issue about drupal_rebuild not releasing locks because my guess it that there must be one!
Going to drop the shutdown approach because it adds complexity and if you are doing database transaction in shutdown functions then I think that is quite a special case.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
alexpott → changed the visibility of the branch 3405976-minimal-approach-shutdown-functions to hidden.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
alexpott → changed the visibility of the branch 3405976-minimal-approach-shutdown-functions to hidden.
I confirmed that the patch #148 fixes the issue.
Would it be possible to write a test following the steps in #146? Or is that not necessary?
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
@solideogloria we can't test the xdebug mode issue because we don't have xdebug running on gitlabci - but what we can do is test that locks are released after calling drupal_rebuild().
we can't test the xdebug mode issue because we don't have xdebug running on gitlabci
Ah, that's right. I didn't think of that.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
Unfortunately we can't test the locks being release either as that is caused by the transactions not being committed- so everything is caused by PHP's object destruction not occurring as we expect - and we have no way to cause this other than with xdebug in develop mode.
So I don't think we can add a truly meaningful test here. What we can test is that calling terminate or shutdown causes database transactions to be committed.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
alexpott → changed the visibility of the branch 3405976-minimal-approach-shutdown-functions to active.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
After sleeping on this I realised that we can fix this in a more reliable way - we can trigger a shutdown function if a transaction is created. This way we don't need to worry about kernel termination. Re-opened that MR and here's a 10.2.x patch for that approach.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
Discussed the two approaches with @catch and @longwave and we all preferred the shutdown function approach because:
- It is more self-contained
- fixes all the situations where this can occur without having to mandate that kernel terminate is called
- Does not require changes to custom or contrib code.
Updated issue summary accordingly.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
alexpott → changed the visibility of the branch 3405976-minimal-approach to hidden.
- Merge request !6717Use a shutdown function to ensure transaction is committed prior to object destruction → (Open) created by alexpott
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
We have MRs for 11.x, 10.2.x and 10.1.x
I think this is as good as we can make it.
- 🇬🇧United Kingdom longwave UK
+1 to the approach and the patch looks good but I haven't had time yet to try and reproduce again with XDebug enabled.
@solideogloria @Driskell if you can confirm that this latest set of patches fix your issues here that would be helpful to getting this committed.
- 🇮🇹Italy mondrake 🇮🇹
+1, I like this... besides being more self-contained, it will also be simpler to adjust if in the future we will change default commit from implicit to explicit. Left a couple of questions on the MR, not sure how feasible/relevant.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
Thanks @mondrake for the review - I've responded on the MR to your questions / points.
- 🇮🇹Italy mondrake 🇮🇹
Great work... I'd RTBC this but think the honours better be done by someone who can test in the specific context of using xdebug.
- Status changed to RTBC
10 months ago 4:37pm 21 February 2024 - 🇺🇸United States mferanda
Tested the patch against Drupal 10.2.x: Successfully fixed the issue.
For my test, I re-enabled xDebug and verified that the old issue was happening. After applying the patch, the issue seemed to be resolved.
- Status changed to Fixed
10 months ago 9:14pm 21 February 2024 - 🇬🇧United Kingdom catch
I wrote some code for one of the MRs here but none of it got used in the final version so I think I'm fine to commit. I think this is the best we can do, it makes things more robust and it makes the weirdness of the current implementation more explicit with the workaround, which isn't bad thing even if it's not pretty.
Committed/pushed to 11.x, cherry-picked to 10.3.x, and the separate MR to 10.2.x
I haven't committed the 10.1.x MR to 10.1.x, it's in security-only mode so we'd need to do a 'bonus' patch release or bundle the commit with a security release for it to actually be useful to people. Tempted to leave things there and people can apply it manually if they need it, so marking fixed, but if someone feels really strongly about a backport to 10.1.x, please re-open.
- Status changed to Active
10 months ago 9:51pm 21 February 2024 - 🇬🇧United Kingdom catch
This broke pgsql tests, should've thought to kick off an MR run on the other databases. https://git.drupalcode.org/project/drupal/-/jobs/874457
Not rolling back yet since it's explicitly the pgsql transaction coverage that's failing so maybe we just need to fix an assumption? But if it's tricky we should roll back and re-commit with that fixed.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
alexpott → changed the visibility of the branch 3405976-10.1.x-shutdown-functions to hidden.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
alexpott → changed the visibility of the branch 3405976-10.2.x-shutdown-functions to hidden.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
alexpott → changed the visibility of the branch 3405976-minimal-approach-shutdown-functions to hidden.
- Status changed to Needs review
10 months ago 12:45am 22 February 2024 - 🇬🇧United Kingdom alexpott 🇪🇺🌍
Created two MRs one for 11.x and 10.3.x and one for 10.2.x that fix the postgres test. That particular test is pretty icky - I did nearly remove it at one point :(
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
alexpott → changed the visibility of the branch 3405976-minimal-approach-shutdown-functions to active.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
alexpott → changed the visibility of the branch 3405976-10.1.x-shutdown-functions to active.
- 🇬🇧United Kingdom alexpott 🇪🇺🌍
Tests on the postgres mrs re green on all db drivers. Yay
- Status changed to Fixed
10 months ago 9:03am 22 February 2024 - 🇬🇧United Kingdom catch
Committing the test change from needs review given HEAD is failing and the adjustments are minimal, agreed the test is not fun.
Automatically closed - issue fixed for 2 weeks with no activity.
- 🇬🇧United Kingdom derickr
#131 : You can't set `xdebug.mode` with ini_set, only in php.ini (or related files).
- 🇧🇪Belgium herved
Hello, and sorry to comment on a closed issue, but is this whole xdebug issue considered work in progress? I see some follow-ups.
I stumbled on a really nasty issue where after submitting a form, status messages would randomly not be displayed.
Session data would not get committed in time (after\Drupal\Core\Session\SessionHandler::write
) before the next GET request retrieves the session data.
Or even users would not be created in time/fast enough for the next event to succeed.
All kind of inexplicable events, absolute horror to debug.Even after updating to core 10.2.4 which includes this issue, the same happens.
Only the workarounds from the IS work (ensure that develop is not in your xdebug.mode value OR pin xdebug in CI image to xdebug 3.2.2). - 🇮🇹Italy mondrake 🇮🇹
Yes, this fix was not sufficient for Drush, see https://github.com/drush-ops/drush/issues/5892.
Only disabling xdebug worked.
I am repeating myself, but I think this will only be solved by getting rid of the implicit commit on destruct.
NikolaAt → changed the visibility of the branch 3405976-transactions to active.
NikolaAt → changed the visibility of the branch 3405976-mondrake-approach to active.
- 🇺🇸United States bradjones1 Digital Nomad Life
Re: 193, see #3451460-11: Sessions are invalidated on subsequent page request when written while transaction is open → for some next steps on that exact problem.
- 🇮🇹Italy mondrake 🇮🇹
Shall we consider reverting this? It does not (fully) fix the issue, and the reco currently is to disable xdebug’s develop mode. It exposes a public api that, albeit marked internal, may be misused and badly break the transaction state tracked by TransactionManager.
- 🇺🇸United States bradjones1 Digital Nomad Life
My thought would be to deprecate it as part of implementing 📌 [PP-1] Convert all transactions to explicit COMMIT Postponed with aggressive removal soon thereafter (might be able to do so in a minor, even, if we stick to our guns regarding it truly being internal.)
- 🇮🇹Italy mondrake 🇮🇹
Yeah, #199 sound the most sensible way ahead, at this point. Tx
- 🇺🇸United States sarahjean
Just an "us too". Found this issue after updating Pantheon's build-tools-ci image to the latest version https://github.com/pantheon-systems/docker-build-tools-ci/pull/118/ started causing our Pipelines builds to fail on a project. Our errors were exactly the same as these https://github.com/drush-ops/drush/issues/5892#issuecomment-1994656413
We were on 10.2.3 at the time. Updating Drupal to 10.2.6 alone did not resolve, had to explicitly disable XDEBUG in our CI setup.
- 🇫🇷France pacproduct
We're facing this issue too, on Drupal
11.1
. We're usingddev
.Our installation process is entirely run on command-line via Drush commands, and one of them (applying a recipe:
ddev recipe-apply recipes/our_recipe
) fails right at the end with the following error:Failed to log error: TypeError: Drupal\Core\Database\StatementWrapperIterator::__construct(): Argument #2 ($clientConnection) must be of type object, null given, called in /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php on line 436 in Drupal\Core\Database\StatementWrapperIterator->__construct() (line 55 of /var/www/html/web/core/lib/Drupal/Core/Database/StatementWrapperIterator.php). #0 /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php(436): Drupal\Core\Database\StatementWrapperIterator->__construct() #1 /var/www/html/web/core/lib/Drupal/Core/Database/Connection.php(656): Drupal\Core\Database\Connection->prepareStatement() #2 /var/www/html/web/core/lib/Drupal/Core/Database/Query/Select.php(520): Drupal\Core\Database\Connection->query() #3 /var/www/html/web/core/lib/Drupal/Core/Database/Query/Merge.php(366): Drupal\Core\Database\Query\Select->execute() #4 /var/www/html/web/core/lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php(42): Drupal\Core\Database\Query\Merge->execute() #5 /var/www/html/web/core/lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php(45): Drupal\Core\Cache\DatabaseCacheTagsChecksum->doInvalidateTags() #6 [internal function]: Drupal\Core\Cache\DatabaseCacheTagsChecksum->rootTransactionEndCallback() #7 /var/www/html/web/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php(473): call_user_func() #8 /var/www/html/web/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php(296): Drupal\Core\Database\Transaction\TransactionManagerBase->processPostTransactionCallbacks() #9 /var/www/html/web/core/lib/Drupal/Core/Database/Transaction.php(38): Drupal\Core\Database\Transaction\TransactionManagerBase->unpile() #10 [internal function]: Drupal\Core\Database\Transaction->__destruct() #11 {main}
We need to disable xdebug for the install script to work.
As we're on ddev, that's how we do it:ddev xdebug off
- 🇧🇪Belgium herved
#202, FWIW on ddev I create a file .ddev/php/xdebug.ini and put this:
# Do not use xdebug develop mode causing transaction timing issues. # @see https://www.drupal.org/project/drupal/issues/3405976 xdebug.mode=debug