সময় শেষ

সমস্ত Google বিজ্ঞাপন API পরিষেবাগুলির ডিফল্ট সেটিংস রয়েছে যা পরিবহন দ্বারা ব্যবহৃত টাইমআউট সহ। প্রদত্ত Google বিজ্ঞাপন API সংস্করণের যেকোনও পরিষেবাতে একটি ডেডিকেটেড JSON ফাইল থাকে যার এই ডিফল্ট সেটিংস পরিষেবা এবং পদ্ধতির স্তরে সংজ্ঞায়িত করা হয়। উদাহরণস্বরূপ, আপনি এখানে লেটেস্ট Google Ads API সংস্করণের সাথে সম্পর্কিত ফাইলগুলি খুঁজে পেতে পারেন।

ডিফল্ট সেটিংস বেশিরভাগ ব্যবহারের ক্ষেত্রে পর্যাপ্ত, কিন্তু এমন সময় থাকতে পারে যখন আপনাকে সেগুলি ওভাররাইড করতে হবে। PHP-এর জন্য ক্লায়েন্ট লাইব্রেরি সার্ভার স্ট্রিমিং এবং ইউনারি কল উভয়ের জন্য ওভাররাইডিং টাইমআউট সেটিংস সমর্থন করে।

আপনি টাইমআউট 2 ঘন্টা বা তার বেশি সেট করতে পারেন, কিন্তু API এখনও অত্যন্ত দীর্ঘমেয়াদী অনুরোধের সময় শেষ করতে পারে এবং একটি DEADLINE_EXCEEDED ত্রুটি ফেরত দিতে পারে৷

সার্ভার স্ট্রিমিং কলের জন্য ওভাররাইডিং টাইমআউট

একমাত্র Google Ads API পরিষেবা পদ্ধতি যা এই ধরনের কল ব্যবহার করে তা হল GoogleAdsService.SearchStream । ডিফল্ট টাইমআউট ওভাররাইড করতে, পদ্ধতিতে কল করার সময় আপনাকে একটি অতিরিক্ত প্যারামিটার যোগ করতে হবে:

private static function makeServerStreamingCall(
    GoogleAdsClient $googleAdsClient,
    int $customerId
) {
    $googleAdsServiceClient = $googleAdsClient->getGoogleAdsServiceClient();
    // Creates a query that retrieves all campaign IDs.
    $query = 'SELECT campaign.id FROM campaign';

    $output = '';
    try {
        // Issues a search stream request by setting a custom client timeout.
        /** @var GoogleAdsServerStreamDecorator $stream */
        $stream = $googleAdsServiceClient->searchStream(
            SearchGoogleAdsStreamRequest::build($customerId, $query),
            [
                // Any server streaming call has a default timeout setting. For this
                // particular call, the default setting can be found in the following file:
                // https://github.com/googleads/google-ads-php/blob/master/src/Google/Ads/GoogleAds/V16/Services/resources/google_ads_service_client_config.json.
                //
                // When making a server streaming call, an optional argument is provided and can
                // be used to override the default timeout setting with a given value.
                'timeoutMillis' => self::CLIENT_TIMEOUT_MILLIS
            ]
        );
        // Iterates over all rows in all messages and collects the campaign IDs.
        foreach ($stream->iterateAllElements() as $googleAdsRow) {
            /** @var GoogleAdsRow $googleAdsRow */
            $output .= ' ' . $googleAdsRow->getCampaign()->getId();
        }
        print 'The server streaming call completed before the timeout.' . PHP_EOL;
    } catch (ApiException $exception) {
        if ($exception->getStatus() === ApiStatus::DEADLINE_EXCEEDED) {
            print 'The server streaming call did not complete before the timeout.' . PHP_EOL;
        } else {
            // Bubbles up if the exception is not about timeout.
            throw $exception;
        }
    } finally {
        print 'All campaign IDs retrieved:' . ($output ?: ' None') . PHP_EOL;
    }
}
      

একটি ইউনারি কলের জন্য ওভাররাইডিং টাইমআউট৷

Google Ads API পরিষেবার বেশিরভাগ পদ্ধতিই ইউনারী কল ব্যবহার করে; সাধারণ উদাহরণ হল GoogleAdsService.Search এবং GoogleAdsService.Mutate । ডিফল্ট টাইমআউট ওভাররাইড করতে, পদ্ধতিতে কল করার সময় আপনাকে একটি অতিরিক্ত প্যারামিটার যোগ করতে হবে:

private static function makeUnaryCall(GoogleAdsClient $googleAdsClient, int $customerId)
{
    $googleAdsServiceClient = $googleAdsClient->getGoogleAdsServiceClient();
    // Creates a query that retrieves all campaign IDs.
    $query = 'SELECT campaign.id FROM campaign';

    $output = '';
    try {
        // Issues a search request by setting a custom client timeout.
        $response = $googleAdsServiceClient->search(
            SearchGoogleAdsRequest::build($customerId, $query),
            [
                // Any unary call is retryable and has default retry settings.
                // Complete information about these settings can be found here:
                // https://googleapis.github.io/gax-php/master/Google/ApiCore/RetrySettings.html.
                // For this particular call, the default retry settings can be found in the
                // following file:
                // https://github.com/googleads/google-ads-php/blob/master/src/Google/Ads/GoogleAds/V16/Services/resources/google_ads_service_client_config.json.
                //
                // When making an unary call, an optional argument is provided and can be
                // used to override the default retry settings with given values.
                'retrySettings' => [
                    // Sets the maximum accumulative timeout of the call, it includes all tries.
                    'totalTimeoutMillis' => self::CLIENT_TIMEOUT_MILLIS,
                    // Sets the timeout that is used for the first try to one tenth of the
                    // maximum accumulative timeout of the call.
                    // Note: This overrides the default value and can lead to
                    // RequestError.RPC_DEADLINE_TOO_SHORT errors when too small. We recommend
                    // to do it only if necessary.
                    'initialRpcTimeoutMillis' => self::CLIENT_TIMEOUT_MILLIS / 10,
                    // Sets the maximum timeout that can be used for any given try to one fifth
                    // of the maximum accumulative timeout of the call (two times greater than
                    // the timeout that is used for the first try).
                    'maxRpcTimeoutMillis' => self::CLIENT_TIMEOUT_MILLIS / 5
                ]
            ]
        );
        // Iterates over all rows in all messages and collects the campaign IDs.
        foreach ($response->iterateAllElements() as $googleAdsRow) {
            /** @var GoogleAdsRow $googleAdsRow */
            $output .= ' ' . $googleAdsRow->getCampaign()->getId();
        }
        print 'The unary call completed before the timeout.' . PHP_EOL;
    } catch (ApiException $exception) {
        if ($exception->getStatus() === ApiStatus::DEADLINE_EXCEEDED) {
            print 'The unary call did not complete before the timeout.' . PHP_EOL;
        } else {
            // Bubbles up if the exception is not about timeout.
            throw $exception;
        }
    } finally {
        print 'All campaign IDs retrieved:' . ($output ?: ' None') . PHP_EOL;
    }
}