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 97B89200B68 for ; Fri, 19 Aug 2016 21:35:24 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9587F160AAC; Fri, 19 Aug 2016 19:35:24 +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 E56FB160A79 for ; Fri, 19 Aug 2016 21:35:23 +0200 (CEST) Received: (qmail 54840 invoked by uid 500); 19 Aug 2016 19:35:23 -0000 Mailing-List: contact commits-help@pirk.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pirk.incubator.apache.org Delivered-To: mailing list commits@pirk.incubator.apache.org Received: (qmail 54827 invoked by uid 99); 19 Aug 2016 19:35:23 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Aug 2016 19:35:23 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 88194C034D for ; Fri, 19 Aug 2016 19:35:22 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -5.446 X-Spam-Level: X-Spam-Status: No, score=-5.446 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx2-lw-us.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id b8SlljVWb8lQ for ; Fri, 19 Aug 2016 19:35:21 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx2-lw-us.apache.org (ASF Mail Server at mx2-lw-us.apache.org) with SMTP id 6A8A75F3F3 for ; Fri, 19 Aug 2016 19:35:21 +0000 (UTC) Received: (qmail 54639 invoked by uid 99); 19 Aug 2016 19:35:20 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Aug 2016 19:35:20 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 9882C2C0157 for ; Fri, 19 Aug 2016 19:35:20 +0000 (UTC) Date: Fri, 19 Aug 2016 19:35:20 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: commits@pirk.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (PIRK-4) Add Streaming Implementation for Apache Storm MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Fri, 19 Aug 2016 19:35:24 -0000 [ https://issues.apache.org/jira/browse/PIRK-4?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15428705#comment-15428705 ] ASF GitHub Bot commented on PIRK-4: ----------------------------------- Github user clharris commented on a diff in the pull request: https://github.com/apache/incubator-pirk/pull/74#discussion_r75539766 --- Diff: src/main/java/org/apache/pirk/responder/wideskies/common/ComputeEncryptedRow.java --- @@ -319,4 +314,80 @@ public static void loadCacheFromHDFS(FileSystem fs, String hdfsFileName, Query q return returnPairs; } + + /** + * Method to compute the encrypted row elements for a query from extracted data partitions in the form of ArrayList<> + *

+ * For each row (as indicated by key = hash(selector)), iterates over the dataPartitions and calculates the column values. + *

+ * Uses a static LRU cache for the modular exponentiation + *

+ * Caller is responsible for keeping track of the colIndex and the the maxHitsPerSelector values + *

+ * Emits {@code Tuple2<>} + */ + public static ArrayList> computeEncRow(ArrayList dataPartitions, Query query, int rowIndex, int colIndex) + throws IOException + { + ArrayList> returnPairs = new ArrayList>(); --- End diff -- Will do. > Add Streaming Implementation for Apache Storm > --------------------------------------------- > > Key: PIRK-4 > URL: https://issues.apache.org/jira/browse/PIRK-4 > Project: PIRK > Issue Type: Task > Components: Responder > Reporter: Chris Harris > Assignee: Chris Harris > > Per the Pirk Roadmap, this is a feature to add support for Apache Storm -- This message was sent by Atlassian JIRA (v6.3.4#6332)