পরীক্ষামূলক অপারেশন
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একবার আপনি আপনার Experiment
এবং এর ExperimentArm
সেট আপ করার পরে এবং আপনার পরীক্ষার উপযোগী করার জন্য চিকিত্সার হাতটি সংশোধন করার পরে, আপনি পরীক্ষাটি চালানোর জন্য এবং এটি সম্পূর্ণ হওয়ার পরে এটি পরিচালনা করার জন্য আপনি বিভিন্ন অপারেশন করতে পারেন৷
দীর্ঘ চলমান অপারেশন
এর মধ্যে কিছু ক্রিয়াকলাপ অ্যাসিঙ্ক্রোনাস, যার অর্থ হল আপনার Google Ads API কল প্রক্রিয়া শুরু করবে, কিন্তু এটি এখনই সম্পূর্ণ হবে না। পরিবর্তে, আপনাকে সমাপ্তির জন্য পরীক্ষা করতে হবে। এই বিষয়ে আরও বিশদ বিবরণের জন্য, অ্যাসিঙ্ক ত্রুটিগুলি পরিচালনা করার নির্দেশিকা দেখুন।
অপারেশন
একটি পরীক্ষায় আপনি চার ধরনের অপারেশন করতে পারেন। তারা সব ExperimentService
সার্ভিসে রাখা হয়।
- পরীক্ষার সময়সূচী করুন । এটি অ্যাসিঙ্ক্রোনাস। বাস্তব প্রচারাভিযানের জন্য ডিজাইন প্রচারাভিযানকে বস্তুগত করে, পরীক্ষার শুরুর তারিখ আসার পর পরিবেশনের জন্য প্রস্তুত।
- পরীক্ষা শেষ করুন । এটি একটি স্বাভাবিক সিঙ্ক্রোনাস অপারেশন। পরীক্ষাটি ইতিমধ্যেই চলমান থাকলে, শেষ তারিখে না পৌঁছালেও আপনি তা অবিলম্বে শেষ করতে পারেন।
- পরীক্ষা প্রচার করুন . এটি অ্যাসিঙ্ক্রোনাস। এটি ট্রিটমেন্ট বাহুতে করা পরিবর্তনগুলি কন্ট্রোল আর্মে কপি করবে এবং ট্রিটমেন্ট আর্মটিকে পরিবেশন করা বন্ধ করবে। আপনি যদি পরিবর্তনগুলি পছন্দ করেন এবং আপনার মূল প্রচারাভিযানে সেগুলিকে অন্তর্ভুক্ত করতে চান তবে এটি ব্যবহার করুন৷
- পরীক্ষা স্নাতক . এটি একটি স্বাভাবিক সিঙ্ক্রোনাস অপারেশন। এটি পরীক্ষার প্রেক্ষাপটের বাইরে স্থায়ীভাবে চিকিত্সার প্রচারাভিযানকে স্থায়ীভাবে চালু করবে। নিয়ন্ত্রণ প্রচারে কোন পরিবর্তন করা হবে না। আপনি যদি পরিবর্তনগুলি পছন্দ করেন তবে এই বিকল্পটি ব্যবহার করুন, তবে সেগুলি মূল প্রচারাভিযান থেকে আলাদাভাবে বিদ্যমান থাকুক।
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-09-03 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-09-03 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eGoogle Ads experiments allow scheduling, ending, promoting, and graduating experiment variations to manage and implement changes.\u003c/p\u003e\n"],["\u003cp\u003eCertain experiment operations like scheduling and promoting are asynchronous, requiring completion checks, while ending and graduating are synchronous, taking effect immediately.\u003c/p\u003e\n"],["\u003cp\u003ePromoting an experiment applies treatment arm changes to the control arm and stops treatment serving, while graduating creates a separate, permanent treatment campaign alongside the original.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eExperimentService\u003c/code\u003e provides the functionalities to manage and control these experiment operations within Google Ads.\u003c/p\u003e\n"]]],[],null,["# Experiment operations\n\nOnce you've set up your `Experiment` and its `ExperimentArm`s, and modified the\ntreatment arm to suit your experiment, there are various operations you can\nperform to actually run the experiment and manage it once it is complete.\n\nLong running operations\n-----------------------\n\nSome of these operations are asynchronous, which means that your Google Ads API call\nwill begin the process, but it won't be complete right away. Instead, you will\nhave to check for completion. For more details on this, see the guide on\nhandling [async errors](/google-ads/api/docs/experiments/async-errors).\n\nOperations\n----------\n\nThere are four kinds of operations you can perform on an experiment. They are\nall housed in the [`ExperimentService`](/google-ads/api/reference/rpc/v21/ExperimentService).\n\n- **Schedule** the experiment. This is asynchronous. Materializes the in design campaigns to actual campaigns, ready to serve once the experiment's start date arrives.\n- **End** the experiment. This is a normal synchronous operation. If the experiment is already in progress, you can end it immediately, even if the end date hasn't been reached.\n- **Promote** the experiment. This is asynchronous. This will copy changes made in the treatment arm to the control arm, and stop the treatment arm from serving. Use this if you liked the changes and want to incorporate them into your original campaign.\n- **Graduate** the experiment. This is a normal synchronous operation. This will permanently set up the treatment campaign to continue to exist, outside of the context of the experiment. No changes will be made to the control campaign. Use this option if you liked the changes, but want them to exist separately from the original campaign."]]