Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id AEED9200C4C for ; Tue, 4 Apr 2017 20:49:46 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id AD82D160B77; Tue, 4 Apr 2017 18:49:46 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 07C38160BA1 for ; Tue, 4 Apr 2017 20:49:45 +0200 (CEST) Received: (qmail 72617 invoked by uid 500); 4 Apr 2017 18:49:45 -0000 Mailing-List: contact issues-help@mesos.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@mesos.apache.org Delivered-To: mailing list issues@mesos.apache.org Received: (qmail 72529 invoked by uid 99); 4 Apr 2017 18:49:45 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Apr 2017 18:49:45 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id D1A9CC05DD for ; Tue, 4 Apr 2017 18:49:44 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id jGr5YfqHKC_a for ; Tue, 4 Apr 2017 18:49:44 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id AFAE05F1A0 for ; Tue, 4 Apr 2017 18:49:43 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 1C8DFE0D2E for ; Tue, 4 Apr 2017 18:49:43 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 2D77124017 for ; Tue, 4 Apr 2017 18:49:42 +0000 (UTC) Date: Tue, 4 Apr 2017 18:49:42 +0000 (UTC) From: "Michael Park (JIRA)" To: issues@mesos.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Comment Edited] (MESOS-4235) JSON generation performance improvement MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 04 Apr 2017 18:49:46 -0000 [ https://issues.apache.org/jira/browse/MESOS-4235?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15955612#comment-15955612 ] Michael Park edited comment on MESOS-4235 at 4/4/17 6:49 PM: ------------------------------------------------------------- There are still follow-up work to be done in regards to migrating rest of the endpoints, but the scope of this ticket has been met. Refer to MESOS-4732 was (Author: mcypark): There are still follow-up work to be done in regards to migrating rest of the endpoints, but the scope of this ticket has been met. > JSON generation performance improvement > --------------------------------------- > > Key: MESOS-4235 > URL: https://issues.apache.org/jira/browse/MESOS-4235 > Project: Mesos > Issue Type: Epic > Components: libprocess, master, stout > Reporter: Michael Park > Assignee: Michael Park > Labels: mesosphere, scalability, twitter > Fix For: 1.3.0 > > > This is an epic which evolved from MESOS-2353. As mentioned in the description of MESOS-2353, most of the work is spent performing memory allocation/deallocation. Some preliminary efforts have been made such as calling {{reserve}} for {{JSON::Array}}. There are still plenty of dynamic allocations being made especially from instances of {{JSON::Object}} which hold a {{std::map}} as a member. > The current approach being adopted is to introduce a {{jsonify}} function which by-passes these unnecessary dynamic allocations and copying, and to simply hold references to the underlying objects. > We plan to first introduce the {{jsonify}} function to {{stout}}, and update master's {{state}} endpoint, then proceed to update the rest of the system. -- This message was sent by Atlassian JIRA (v6.3.15#6346)