বড় রিপোর্ট চালান
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
অ্যাডসেন্স ম্যানেজমেন্ট এপিআই-এ ডিফল্টভাবে রিপোর্টের সর্বোচ্চ দৈর্ঘ্য 100,000 সারি থাকে। আপনি যদি এই সীমার কাছাকাছি চলে যান, বা ডেটা প্রক্রিয়া করার সময় পারফরম্যান্সের সমস্যায় পড়েন, এখানে কিছু টিপস রয়েছে যা সাহায্য করতে পারে।
আপনার প্রতিবেদনের স্কেল হ্রাস করা
একটি প্রতিবেদনকে ছোট করার চেষ্টা করার সময় প্রথম যে জিনিসটি সন্ধান করতে হবে তা হল আপনি যে মাত্রাগুলি ব্যবহার করছেন তার তালিকা; আপনার যোগ করা প্রতিটি মাত্রা প্রত্যাবর্তিত সারির সংখ্যার উপর একটি গুণগত প্রভাব ফেলে। নিশ্চিত করুন যে আপনি শুধুমাত্র আপনার প্রয়োজনীয় মাত্রা যোগ করুন!
আপনার রিপোর্ট বিভক্ত করা
কখনও কখনও, আপনার শুধুমাত্র রিপোর্টের একটি অংশের জন্য অত্যন্ত নির্ভুল ডেটা প্রয়োজন, বাকিগুলি কম বিশদ বিবরণের জন্য অনুমতি দেয়। উদাহরণস্বরূপ, আপনার পূর্ববর্তী মাসের উপার্জনের জন্য অত্যন্ত সঠিক বিবরণের প্রয়োজন হতে পারে, দেশ প্রতি পরিসংখ্যান এবং প্রতিদিন চ্যানেল জুড়ে, কিন্তু তার আগে দেখার সময় শুধুমাত্র দেশ-স্তরের ডেটা প্রয়োজন। তাই আপনি আগের মাসের জন্য একটি জটিল প্রতিবেদন চালাতে পারেন, তবে তার আগের সময়ের জন্য একটি সহজ।
CSV-এ স্যুইচ করে JSON পার্সিং এড়িয়ে চলুন
AdSense ম্যানেজমেন্ট API আপনাকে সাধারণ JSON এর পরিবর্তে CSV ফর্ম্যাটে আপনার প্রতিবেদনগুলি পেতে দেয়।
এটি করতে, কেবল বিকল্প জেনারেট সিএসভি পদ্ধতিতে কল করুন।
উদাহরণ
DATE,CLICKS
2014-01-01,2
2014-01-02,1
2014-01-03,4
2014-01-04,1
2014-01-05,1
পরবর্তী পদক্ষেপ
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eAdSense Management API reports have a default maximum length of 100,000 rows, and exceeding this limit may cause performance issues.\u003c/p\u003e\n"],["\u003cp\u003eMinimizing the number of dimensions used in a report can significantly reduce its size and improve performance.\u003c/p\u003e\n"],["\u003cp\u003eFor reports requiring varying levels of granularity, consider splitting them into multiple reports with different dimension sets to optimize data retrieval.\u003c/p\u003e\n"],["\u003cp\u003eSwitching from JSON to CSV format for report retrieval can avoid JSON parsing overhead and improve efficiency.\u003c/p\u003e\n"]]],["To manage large AdSense reports, reduce the scale by minimizing the number of dimensions used, as each dimension increases rows. Split reports into detailed and less detailed sections based on data accuracy needs. For improved performance, switch from JSON to CSV format by using the `generateCsv` method. Consider batching and optimizing dimension usage for further improvements.\n"],null,["# Run Large Reports\n\nReports have a maximum length of 100,000 rows in the AdSense Management API, by default. If you're\nrunning close to these limits, or running into performance issues while processing the data, here\nare some tips that may help.\n\nReducing the scale of your report\n---------------------------------\n\nThe first thing to look for when trying to make a report smaller is the list of dimensions you're\nusing; each dimension you add has a multiplicative effect on the number of returned rows. Make sure\nyou only add the dimensions you need!\n\nSplitting your reports\n----------------------\n\nSometimes, you only need extremely accurate data for a portion of the report, with the rest\nallowing for less detail. For example, you could need extremely accurate details for the previous\nmonth's earnings, with stats per country and channel across every day, but only really need the\ncountry-level data when looking before that. You could therefore run a complex report for the\nprevious month, but a simpler one for the time before that.\n\nAvoid JSON parsing by switching to CSV\n--------------------------------------\n\nThe AdSense Management API allows you to receive your reports in CSV format, rather than the usual JSON.\n\nTo do that, simply call the alternate [generateCsv](/adsense/management/reference/rest/v2/accounts.reports/generateCsv) method.\n\n#### Example\n\n```\nDATE,CLICKS\n2014-01-01,2\n2014-01-02,1\n2014-01-03,4\n2014-01-04,1\n2014-01-05,1\n```\n\nNext steps\n----------\n\n- [Batching](/adsense/management/reporting/batching)\n- [Using Multiple Dimensions Wisely](/adsense/management/reporting/dimensions_metrics#usingmultiple)"]]