You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by rv...@apache.org on 2017/03/13 19:17:37 UTC

bigtop git commit: BIGTOP-2695: arch.dot for bigpetstore-spark is outdated

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 <se...@apache.org>
Authored: Mon Mar 6 07:03:27 2017 -0500
Committer: Roman Shaposhnik <rv...@apache.org>
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;
 }