From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.4 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 54A3CC4363A for ; Tue, 27 Oct 2020 07:38:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0402122263 for ; Tue, 27 Oct 2020 07:38:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2507834AbgJ0HiG (ORCPT ); Tue, 27 Oct 2020 03:38:06 -0400 Received: from mga11.intel.com ([192.55.52.93]:3793 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2507783AbgJ0HiF (ORCPT ); Tue, 27 Oct 2020 03:38:05 -0400 IronPort-SDR: OrrsN2+FjGfDBJzTb24wlfT1WcIozrNM6Skpx+Zzk1CjiitTrl8YWAprSU5tFcErYWS8kosblA ysI2s9YQOSLw== X-IronPort-AV: E=McAfee;i="6000,8403,9786"; a="164540536" X-IronPort-AV: E=Sophos;i="5.77,423,1596524400"; d="scan'208";a="164540536" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Oct 2020 00:38:04 -0700 IronPort-SDR: wV24L3W+rwewY2jIkmPU97Fy0d+ZJZqeu0sxvDT3zILEZrEpAUPRvnYbxUFgZtl+I0FH8zsBo6 bIoFdR+apNhg== X-IronPort-AV: E=Sophos;i="5.77,423,1596524400"; d="scan'208";a="535686674" Received: from abudanko-mobl.ccr.corp.intel.com (HELO [10.249.227.7]) ([10.249.227.7]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Oct 2020 00:38:01 -0700 From: Alexey Budankov Subject: Re: [PATCH v2 06/15] perf session: load data directory into tool process memory To: Jiri Olsa Cc: Arnaldo Carvalho de Melo , Namhyung Kim , Alexander Shishkin , Adrian Hunter , Andi Kleen , Peter Zijlstra , Ingo Molnar , linux-kernel References: <1ec29ed6-0047-d22f-630b-a7f5ccee96b4@linux.intel.com> <20201024154349.GC2589351@krava> Organization: Intel Corp. Message-ID: <43d5e54f-b56e-729f-d08e-2c6b6799c797@linux.intel.com> Date: Tue, 27 Oct 2020 10:37:58 +0300 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.4.0 MIME-Version: 1.0 In-Reply-To: <20201024154349.GC2589351@krava> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 24.10.2020 18:43, Jiri Olsa wrote: > On Wed, Oct 21, 2020 at 07:01:19PM +0300, Alexey Budankov wrote: >> >> Read trace files located in data directory into tool process memory. >> Basic analysis support of data directories is provided for report >> mode. Raw dump (-D) and aggregated reports are available for data >> directories, still with no memory consumption optimizations. However >> data directories collected with --compression-level option enabled >> can be analyzed with little less memory because trace files are >> unmaped from tool process memory after loading collected data. >> The implementation is based on the prototype [1], [2]. >> >> [1] git clone https://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git -b perf/record_threads >> [2] https://lore.kernel.org/lkml/20180913125450.21342-1-jolsa@kernel.org/ >> >> Suggested-by: Jiri Olsa > > very loosely ;-) so there was a reason for all that reader refactoring, > so we could have __perf_session__process_dir_events function: > > https://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git/commit/?h=perf/record_threads&id=308aa7cff1fed335401cfc02c7bac1a4644af68e Nonetheless. All that are necessary parts to make threaded data streaming and analysis eventually merged into the mainline as joint Perf developers community effort. > > when reporting the threaded record data on really big servers, > you will run out of memory, so you need to read and flush all > the files together by smaller pieces Yes, handling all that _big_ data after collection to make it helpful for analysis of performance issues is the other part of this story so that possible OOM should be somehow avoided. > > IMO we need to have this change before we allow threaded record There are use cases of perf tool as a data provider, btw VTune is not the only one of them, and for those use cases threaded trace streaming lets its users get to their data that the users just were loosing before. This is huge difference and whole new level of support for such users. Post-process scripting around perf (e.g. Python based) will benefit from threaded trace streaming. Pipe mode can be extended to stream into open and passed fds using threads (e.g. perf record -o -fd:13,14,15,16). VTune-like tools can get performance data, load it into a (relational) DB files and provide analysis. And all that uses perf tool at its core. I agree perf report OOM issue can exist on really-big servers but data directories support for report mode for not-so-big servers and desktops is already enabled with this smaller change. Also really-big-servers come with really-big amount of memory and collection could possibly be limited to only interesting phases of execution so the issue could likely be avoided. At the same time threaded trace streaming could clarify on real use cases that are blocked by perf report OOM issue and that would clarify on exact required solution. So perf report OOM issue shouldn't be the showstopper for upstream of threaded trace streaming. Alexei