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 78789200C28 for ; Mon, 13 Mar 2017 20:17:40 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 7721F160B6C; Mon, 13 Mar 2017 19:17:40 +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 BD378160B5D for ; Mon, 13 Mar 2017 20:17:39 +0100 (CET) Received: (qmail 82224 invoked by uid 500); 13 Mar 2017 19:17:38 -0000 Mailing-List: contact commits-help@bigtop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: bigtop-dev@bigtop.apache.org Delivered-To: mailing list commits@bigtop.apache.org Received: (qmail 82215 invoked by uid 99); 13 Mar 2017 19:17:37 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Mar 2017 19:17:37 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 95904DFE20; Mon, 13 Mar 2017 19:17:37 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: rvs@apache.org To: commits@bigtop.apache.org Message-Id: <11ce8010705d47a99f3db54a40dcf9d9@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: bigtop git commit: BIGTOP-2695: arch.dot for bigpetstore-spark is outdated Date: Mon, 13 Mar 2017 19:17:37 +0000 (UTC) archived-at: Mon, 13 Mar 2017 19:17:40 -0000 Repository: bigtop Updated Branches: refs/heads/master 8e9b02303 -> 22ca807de BIGTOP-2695: arch.dot for bigpetstore-spark is outdated Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/22ca807d Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/22ca807d Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/22ca807d Branch: refs/heads/master Commit: 22ca807de16b8da9bb0506f3dd3091ef3d986650 Parents: 8e9b023 Author: Kengo Seki Authored: Mon Mar 6 07:03:27 2017 -0500 Committer: Roman Shaposhnik Committed: Mon Mar 13 12:15:51 2017 -0700 ---------------------------------------------------------------------- bigtop-bigpetstore/bigpetstore-spark/arch.dot | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/22ca807d/bigtop-bigpetstore/bigpetstore-spark/arch.dot ---------------------------------------------------------------------- diff --git a/bigtop-bigpetstore/bigpetstore-spark/arch.dot b/bigtop-bigpetstore/bigpetstore-spark/arch.dot index 5761036..6cd3d1a 100644 --- a/bigtop-bigpetstore/bigpetstore-spark/arch.dot +++ b/bigtop-bigpetstore/bigpetstore-spark/arch.dot @@ -22,15 +22,12 @@ digraph bigpetstore { STRUCTURED_DATA [label="Data model serialized as sequence files"]; generator [label="Data Generator (generator.SparkDriver)"]; ETL [label="Extract-Transform-Load (etl.SparkETL)"]; - SalesAnalytics [label="Sales Analytics (analytics.Sales)"]; - SalesTables [label="Sales Trends Tables (CSV)"]; - CustomerAnalytics [label="Customer Analytics (analytics.Customers)"]; - CustomerTables [label="Customer Trends Tables (CSV)"]; - ItemRecommender [label="Item Recommendor (analytics.ItemRecommendor)"]; - ItemRecommendations [label="Customer Product Recommendations (CSV)"]; + SalesAnalytics [label="Sales Analytics (analytics.PetStoreStatistics)"]; + SalesTables [label="Sales Trends Tables (JSON)"]; + ItemRecommender [label="Item Recommender (analytics.RecommendProducts)"]; + ItemRecommendations [label="Customer Product Recommendations (JSON)"]; generator -> DIRTY_CSV -> ETL -> STRUCTURED_DATA; STRUCTURED_DATA -> SalesAnalytics -> SalesTables; - STRUCTURED_DATA -> CustomerAnalytics -> CustomerTables; STRUCTURED_DATA -> ItemRecommender -> ItemRecommendations; }