Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:116692 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 9613 invoked from network); 21 Dec 2021 01:16:27 -0000 Received: from unknown (HELO php-smtp4.php.net) (45.112.84.5) by pb1.pair.com with SMTP; 21 Dec 2021 01:16:27 -0000 Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 3FD8E1804BA for ; Mon, 20 Dec 2021 18:20:02 -0800 (PST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=-0.2 required=5.0 tests=BAYES_40,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.2 X-Spam-ASN: AS15169 209.85.128.0/17 X-Spam-Virus: No X-Envelope-From: Received: from mail-yb1-f171.google.com (mail-yb1-f171.google.com [209.85.219.171]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Mon, 20 Dec 2021 18:20:02 -0800 (PST) Received: by mail-yb1-f171.google.com with SMTP id e136so34328637ybc.4 for ; Mon, 20 Dec 2021 18:20:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=datadoghq.com; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=LMm72ZHLeJRiNGI7sW85EG6eMWVZg/qZo4M7WewQsSk=; b=aFA+qQYcoBw6neYxKWGfvZOBk+ZsKszmeek/nkIcZVd6++ReyT8DzT5w4nCWPStT7U +9zKMHls4uXBnfXGUAepQkaR33J2U8l8FZl7uI9gyb5HUyrfY1d1wrmiPdILEh6mAjlt TjET9kIHK0XXNFTmf5lMdo8m3eMeTAdAXTJdc= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=LMm72ZHLeJRiNGI7sW85EG6eMWVZg/qZo4M7WewQsSk=; b=ZFMkvBJOxPcmxAFgfnGX0GJ05eDe/mEfw54HGddJHXTefNmkc4C7gE1C0l6nNqZO1s EaMvU3Sy3wg5MDTx0UhHsdLJk9K57tQ75xU1ylsjr1mHznxb64kuXNki/Je1X8M/Kmym SSkEwHZ+9Ed8W1akYWCzF1+YoC7cCappui8Z6qTrj8y5q1wZ0GTgdj9jBLftgbUNtG/7 I+jBDEkDpN/W0CLrtHqUPWTT8NvnZsP5Q+UOs3yFc3V2x2XcrbldnumKbZldIaD9ZE2j yz2XPflx3i4IQa27hRs0y7LGCA11wsQjX5g6mNzCbeO2cBDQKJ142nLhex3mfE+Xn8lt 9AsA== X-Gm-Message-State: AOAM532xa8c9BpOzr7DFbDlI5QlVNgJyYm/s382HCd63fICgbnOMJH9v +Dak8k1uUfJXNKyxVpNsOTrznYAA0xnnogT8lcrxWdlUuT9KHQ== X-Google-Smtp-Source: ABdhPJyNxUqkwNcYv1q/BlmvYteDcg8YWwfjweFu+++a4+7v1+i3bbk6zJ7pd+Z5461K7HGVFlVW7vkyipnaDifOUPU= X-Received: by 2002:a25:42d7:: with SMTP id p206mr1550175yba.765.1640053201491; Mon, 20 Dec 2021 18:20:01 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: Reply-To: Levi Morrison Date: Mon, 20 Dec 2021 19:19:50 -0700 Message-ID: To: Jakub Zelenka Cc: Derick Rethans , PHP Developers Mailing List Content-Type: text/plain; charset="UTF-8" Subject: Re: [PHP-DEV] Re: PHP-FPM process management woes From: internals@lists.php.net ("Levi Morrison via internals") As Jakub mentioned, exactly one MINIT/MSHUTDOWN per process will only fix one of your problems, but I do like the step in that direction. I express my sympathy and condolences: I've had my own share of woes with the fact that env var and INI changes are not complete during MINIT due to fcgi protocol/php-fpm. It's very annoying for extensions! I always install all hooks that might be needed, and have runtime checks if they are actually enabled. Not ideal, and sadly one MINIT/MSHUTDOWN will not fix it.