Same here, 2.7 made the host CPU and memory spike and the site became unreachable.
After about an hour the resources started dropping and we were getting database errors including too many connections in wp-db.php
When we got back into WordPress Elementor was stuck trying to update the database in the background.
The Elementor log shows:
[info] elementor::elementor_updater Started
[info] Elementor/Upgrades – _v_2_7_0_rename_document_types_to_wp Start
PHP: showing 1 of 1
[notice X 7][/public_html/wp-content/plugins/elementor/includes/conditions.php::86] Undefined index: url [array (
‘trace’ => ‘
#0: Elementor\Core\Logger\Manager -> shutdown()
‘,
)]
Nothing showed up in our other WordPress logs.
Rolled back to 2.6.8 from the tools menu, things seem okay at the moment.
I think I got around this by changing the calls from one type of WordPress calls to another.
From:
$the_query = new WP_Query( array( ‘post_type’ => ‘tribe_events’, ‘post__in’ => array(post_id) ) );
To:
$the_query= get_posts( array( ‘post_type’ => ‘tribe_events’,’post__in’ => array(post_id) ) );