[GitHub] [druid] abhishekagarwal87 commented on pull request #11807: Optimize supervisor history retrieval for specific id

2021-10-18 Thread GitBox


abhishekagarwal87 commented on pull request #11807:
URL: https://github.com/apache/druid/pull/11807#issuecomment-946378522


   @dbardbar I will merge it once CI passes. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid] abhishekagarwal87 closed pull request #11807: Optimize supervisor history retrieval for specific id

2021-10-18 Thread GitBox


abhishekagarwal87 closed pull request #11807:
URL: https://github.com/apache/druid/pull/11807


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid] paul-rogers opened a new issue #11811: Potential bug: check if list of missing segments is truncated in retry "operator"

2021-10-18 Thread GitBox


paul-rogers opened a new issue #11811:
URL: https://github.com/apache/druid/issues/11811


   Code inspection revealed a potential bug. I don't have the setup required to 
verify it.
   
   When a data node query runs, it will report if any of its assigned segments 
are, in fact, unavailable. The Broker will retry these segments on another 
node. The data node reports the segments in the response context field 
`missingSegments`. To save space, the data node may truncate this list. In such 
a case, the retry "operator" cannot retry: it does not know which segment were 
actually missing. Instead, the Broker simply runs the query without the missing 
segments, potentially returning incorrect results.
   
   ### Affected Version
   
   Latest GitHub sources as of 2021-10-18.
   
   ### Description
   
   Here are more details.
   
   The data node writes the list of missing segments into the `missingSegments` 
field within the response context. The 
[`ResponseContext.toHeader().serializeWith`](https://github.com/apache/druid/blob/master/processing/src/main/java/org/apache/druid/query/context/ResponseContext.java#L361)
 method forces the response context into some given number of types, dropping 
list entries to fit. The dropped list entries can include the missing segments. 
This function sets the `truncated` to indicate that truncation occurred.
   
   The response context is passed back to the broker which aggregates the 
individual responses to create the overall response. That response is then 
passed to 
[`RetryQueryRunner.getMissingSegments()`](https://github.com/apache/druid/blob/master/server/src/main/java/org/apache/druid/query/RetryQueryRunner.java#L139)
 which determines which segments to retry.
   
   The `getMissingSegments()` function does not check the `truncated` field, 
however and so blindly proceeds without the missing segments. Since the 
segments may contain data for the query, the query result is incomplete. 
Further, since the set of missing segments is transitory, this issue means that 
different runs of the same query, with the same data, may return differing 
results.
   
   Suggestion: fail the query if the number of missing segments is large enough 
to cause the response header to be truncated. That is, simply check the 
`truncated` flag and fail the query if set.
   
   This issue is only likely to occur for a large table (data source), on 
cluster undergoing startup or rebalancing such that the set of assigned 
segments is unstable. That its, it is transient and only occurs when it is 
hardest to debug.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[druid] branch master updated: fix test issue where JettyTest would fail if JettyWithResponseFilterEnabledTest ran before it (#11803)

2021-10-18 Thread cwylie
This is an automated email from the ASF dual-hosted git repository.

cwylie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
 new 9c15f93  fix test issue where JettyTest would fail if 
JettyWithResponseFilterEnabledTest ran before it (#11803)
9c15f93 is described below

commit 9c15f938fdaa1665f54629d661aaeaf88d3b8908
Author: TSFenwick 
AuthorDate: Mon Oct 18 12:42:41 2021 -0700

fix test issue where JettyTest would fail if 
JettyWithResponseFilterEnabledTest ran before it (#11803)

this change ensures that JettyTest is setting the properties it needs in 
case some other test overwrites them
this also changes up the ordering of the call for setProperties to call 
super's first in case super is setting the same property
---
 .../java/org/apache/druid/server/initialization/JettyTest.java| 8 
 .../server/initialization/JettyWithResponseFilterEnabledTest.java | 3 ++-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git 
a/server/src/test/java/org/apache/druid/server/initialization/JettyTest.java 
b/server/src/test/java/org/apache/druid/server/initialization/JettyTest.java
index 59c84b9..ff8ae56 100644
--- a/server/src/test/java/org/apache/druid/server/initialization/JettyTest.java
+++ b/server/src/test/java/org/apache/druid/server/initialization/JettyTest.java
@@ -105,6 +105,14 @@ public class JettyTest extends BaseJettyTest
   private LatchedRequestStateHolder latchedRequestState;
 
   @Override
+  public void setProperties()
+  {
+// call super.setProperties first in case it is setting the same property 
as this class
+super.setProperties();
+System.setProperty("druid.server.http.showDetailedJettyErrors", "true");
+  }
+
+  @Override
   protected Injector setupInjector()
   {
 TLSServerConfig tlsConfig;
diff --git 
a/server/src/test/java/org/apache/druid/server/initialization/JettyWithResponseFilterEnabledTest.java
 
b/server/src/test/java/org/apache/druid/server/initialization/JettyWithResponseFilterEnabledTest.java
index b788e71..62e6189 100644
--- 
a/server/src/test/java/org/apache/druid/server/initialization/JettyWithResponseFilterEnabledTest.java
+++ 
b/server/src/test/java/org/apache/druid/server/initialization/JettyWithResponseFilterEnabledTest.java
@@ -27,8 +27,9 @@ public class JettyWithResponseFilterEnabledTest extends 
JettyTest
   @Override
   public void setProperties()
   {
-System.setProperty("druid.server.http.showDetailedJettyErrors", "false");
+// call super.setProperties first in case it is setting the same property 
as this class
 super.setProperties();
+System.setProperty("druid.server.http.showDetailedJettyErrors", "false");
   }
 
   @Test

-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid] clintropolis merged pull request #11803: fix JettyTest would fail if JettyWithResponseFilterEnabledTest ran before it

2021-10-18 Thread GitBox


clintropolis merged pull request #11803:
URL: https://github.com/apache/druid/pull/11803


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid] clintropolis commented on pull request #11713: better types

2021-10-18 Thread GitBox


clintropolis commented on pull request #11713:
URL: https://github.com/apache/druid/pull/11713#issuecomment-946080134


   >God, this is a huge change. 
   
   😅 yeah it  touches a lot of things.
   
   >If I understand correctly, the problem mentioned in #10949, which is lack 
of type info in complex type, can be resolved after this PR ? @clintropolis
   
   Yea, this PR should make it possible i think since we'll have the 
information everywhere. I didn't include the changes in this PR since I wanted 
to keep this change from getting too big, but I have a a follow-up in mind to 
improve `RowSignature` handling of intermediary and finalized types that I 
think will help even more.
   
   Also, very sorry - I completely forgot about #10949, I will try to have a 
look soon.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid] dbardbar commented on pull request #11807: Optimize supervisor history retrieval for specific id

2021-10-18 Thread GitBox


dbardbar commented on pull request #11807:
URL: https://github.com/apache/druid/pull/11807#issuecomment-946073965


   @abhishekagarwal87 my bad. Forgot to adjust two tests.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[druid-website] branch asf-site updated: Autobuild (#144)

2021-10-18 Thread vogievetsky
This is an automated email from the ASF dual-hosted git repository.

vogievetsky pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/druid-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 387c204  Autobuild (#144)
387c204 is described below

commit 387c2043030b44cc47101d087afc8f9f72897c93
Author: Vadim Ogievetsky 
AuthorDate: Mon Oct 18 08:30:22 2021 -0700

Autobuild (#144)

* Autobuild

* restore files
---
 druid-powered.html | 18 --
 index.html | 34 +-
 2 files changed, 29 insertions(+), 23 deletions(-)

diff --git a/druid-powered.html b/druid-powered.html
index 7e669ec..bd08472 100644
--- a/druid-powered.html
+++ b/druid-powered.html
@@ -166,7 +166,7 @@
 
 Allegro
 
-https://allegro.tech/about-us/";>Allegro is the most popular 
Polish shopping destination with about 14 million users monthly and over 1.5 
million items sold on the platform daily.
+https://allegro.tech/";>Allegro is the most popular Polish 
shopping destination with about 14 million users monthly and over 1.5 million 
items sold on the platform daily.
 We have been using Druid since 2016 as business intelligence platform to power 
our clickstream analytics, marketing automation, anomaly detection, technical 
metrics and more.
 Our cluster (432 CPUs, 1300GB of RAM on historicals) processes billions of 
realtime events loaded from https://kafka.apache.org/";>Kafka
 and hundreds batch indexing jobs on daily basis.
@@ -480,7 +480,7 @@ Didi uses Druid as a core component of our real-time 
bigdata processing pipeline
 
 Italiaonline
 
-Italiaonline exploits Druid for Internet trends and analytics management 
inside its new http://www.italiaonline.it/en/supereva-a-new-online-publishing-experience/";>Data-Driven
 Contents Management System.
+Italiaonline exploits Druid for Internet trends and analytics management 
inside its new https://www.italiaonline.it/corporate/en/2016/02/17/supereva-a-new-online-publishing-experience/";>Data-Driven
 Contents Management System.
 Italiaonline is the first Italian internet company, with the two most visited 
web portals, Libero and Virgilio, and the most used email service of the 
country @libero.it. Italiaonline features 16.8 million unique users per 
month*, 4.8 billion impressions per month**,  10.2 million active 
email accounts** and a 58% active reach*.
 
 * Source: Audiweb View, powered by Nielsen, TDA 2H 2015; ** 
Internal data, December 2015
@@ -719,7 +719,7 @@ issue related to Druid setup and tuning.
 
 
 
-https://dataworkssummit.com/san-jose-2018/session/paypal-merchant-ecosystem-using-apache-spark-hive-druid-and-hbase/";>PayPal
 merchant ecosystem using Apache Spark, Hive, Druid, and HBase
+https://www.youtube.com/watch?v=HJvuU0CQS44";>PayPal merchant 
ecosystem using Apache Spark, Hive, Druid, and HBase
 
 
 PayU
@@ -789,7 +789,7 @@ issue related to Druid setup and tuning.
 
 Rill Data
 
-Rill Data uses Druid to power its truly elastic, fully managed cloud 
service. 
+https://rilldata.com";>Rill Data uses Druid to power its truly 
elastic, fully managed cloud service. 
 Rill uses Druid to deliver operational intelligence to business stakeholders 
with zero DevOps overhead.
 Rill's team operates the first and longest continuously running Druid 
service.
 
@@ -923,7 +923,7 @@ A one-stop shop taking advantage of proprietary technology 
to analyze and reach
 
 Sweet Couch
 
-https://www.sweetcouch.com";>Sweet Couch is a place to discover 
unique products which are buyable online. Druid powers https://www.sweetcouch.com/harvest/womens";>Sweet Couch harvest which 
is an open analytics platform for tracking performance of online shops based 
out in India. All end user events are tracked and analysed using Druid for 
business insights.
+Sweet Couch was a place to discover unique products which are buyable 
online. Druid powered Sweet Couch harvest which was an open analytics platform 
for tracking performance of online shops based out in India. All end user 
events were tracked and analysed using Druid for business insights.
 
 Swisscom
 
@@ -968,6 +968,12 @@ Learn more about TrafficGuard’s comprehensive fraud 
mitigation at (https://www
 
 TripleLift uses Druid to provide insights into performance aspects of its 
native programmatic exchange for sales/business development opportunities, and 
to provide reporting used by advertisers and publishers.
 
+Triton Digital
+
+https://www.tritondigital.com/";>Triton Digital is the global 
technology and services leader to the audio streaming and podcast industry. 
Operating in more than 80 countries, Triton Digital provides innovative 
technology that enables broadcasters, podcasters, and online music services to 
build their audience, maximize their revenue, and streamline their operations. 

+
+Triton Digital uses Druid to https://www.rilldata.com/powering-programmatic-analytics-at-triton-digital";>power
 th

[GitHub] [druid] arunramani opened a new pull request #11810: Fallback to /sys/fs root when looking for cgroups

2021-10-18 Thread GitBox


arunramani opened a new pull request #11810:
URL: https://github.com/apache/druid/pull/11810


   ### Description
   
   `ProcCgroupDiscoverer` builds the cgroup directory by concatenating the proc 
mounts and proc cgroup paths together. This doesn't seem to work in Kubernetes 
if the execution context is within the container. Also this isn't consistent 
across all Linux OSes. The fix is to fallback to `/` as the root and it seems 
to work empirically.
   
   This PR has:
   - [x] been self-reviewed.
   - [x] added unit tests or modified existing tests to cover new code paths, 
ensuring the threshold for [code 
coverage](https://github.com/apache/druid/blob/master/dev/code-review/code-coverage.md)
 is met.
   - [x] been tested in a test Druid cluster.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid] abhishekagarwal87 commented on pull request #11807: Optimize supervisor history retrieval for specific id

2021-10-18 Thread GitBox


abhishekagarwal87 commented on pull request #11807:
URL: https://github.com/apache/druid/pull/11807#issuecomment-945924409


   @dbardbar CI failures look legit. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid] LakshSingla opened a new pull request #11809: (Draft) Make subquery IDs more comprehensive

2021-10-18 Thread GitBox


LakshSingla opened a new pull request #11809:
URL: https://github.com/apache/druid/pull/11809


   
   
   
   
   
   
   
   
   
   ### Description
   
   
   There are 3 types of query IDs - id, subQueryId, sqlQueryId. Currently, 
whenever a query generates subqueries, the subquery's subQueryId is populated 
randomly. Also, subquery's Id is not set to the parent query Id. Therefore 
there is no way of linking the subqueries to the parent query, and one loses 
the ability to look at end to end view of the query.  
   
   
   This PR aims to implement following couple of things:
   1. Populate the subqueries with it's parent's id (and sqlQueryId if present)
   2. Populate the subqueryId such that it forms a hierarchical relationship 
amongs themselves. For example, if there is a query which launches a subquery, 
which in turn launches a couple of subqueries, then the ids and subQueryIds 
should have following structure.
   ```
   Parent Query: { queryId: "my-query-id", subQueryId: null }
   Sub Query: { queryId: "my-query-id", subQueryId: "1" }
   Sub Sub Query: { queryId: "my-query-id", subQueryId: "1-1" }
   Sub Sub Query: { queryId: "my-query-id", subQueryId: "1-2" }
   ```
   **NOTE** This is currently in draft stage and hence there is some commented 
and improperly formatted code. This will be fixed in the subsequent stages.  
   
   
   
   
   
   
   
   
   
   
   
   
   
   # Key changed/added classes in this PR
   UnionQueryRunner and ClientQuerySegmentWalker::inlineIfNecessary methods 
populated the subqueryIds using the method Query::withDefaultSubqueryId. This 
has been replaced to populate the subqueryId based on the parent query Id's 
subqueryId. 
   
   
   
   
   
   This PR has:
   - [ ] been self-reviewed.
  - [ ] using the [concurrency 
checklist](https://github.com/apache/druid/blob/master/dev/code-review/concurrency.md)
 (Remove this item if the PR doesn't have any relation to concurrency.)
   - [ ] added documentation for new or modified features or behaviors.
   - [ ] added Javadocs for most classes and all non-trivial methods. Linked 
related entities via Javadoc links.
   - [ ] added or updated version, license, or notice information in 
[licenses.yaml](https://github.com/apache/druid/blob/master/dev/license.md)
   - [ ] added comments explaining the "why" and the intent of the code 
wherever would not be obvious for an unfamiliar reader.
   - [ ] added unit tests or modified existing tests to cover new code paths, 
ensuring the threshold for [code 
coverage](https://github.com/apache/druid/blob/master/dev/code-review/code-coverage.md)
 is met.
   - [ ] added integration tests.
   - [ ] been tested in a test Druid cluster.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid] vmorarian commented on issue #11653: Overlord cannot elect a leader because of exception when reacquiring locks.

2021-10-18 Thread GitBox


vmorarian commented on issue #11653:
URL: https://github.com/apache/druid/issues/11653#issuecomment-945898538


   workaround: delete all from `druid_tasks` table
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid-website] vogievetsky merged pull request #144: Autobuild

2021-10-18 Thread GitBox


vogievetsky merged pull request #144:
URL: https://github.com/apache/druid-website/pull/144


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid] abhishekagarwal87 closed pull request #11807: Optimize supervisor history retrieval for specific id

2021-10-18 Thread GitBox


abhishekagarwal87 closed pull request #11807:
URL: https://github.com/apache/druid/pull/11807


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid-website-src] fjy merged pull request #261: Update featured.yml

2021-10-18 Thread GitBox


fjy merged pull request #261:
URL: https://github.com/apache/druid-website-src/pull/261


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[druid-website-src] branch master updated (659bf1a -> c0407c8)

2021-10-18 Thread fjy
This is an automated email from the ASF dual-hosted git repository.

fjy pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/druid-website-src.git.


from 659bf1a  Merge pull request #263 from godzig/master
 new 041a6de  Update featured.yml
 new f3176cb  Update featured.yml
 new c0407c8  Merge pull request #261 from petermarshallio/202110-fArticles

The 549 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 _data/featured.yml | 18 ++
 1 file changed, 18 insertions(+)

-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid-website-src] fjy merged pull request #263: Update druid-powered.md

2021-10-18 Thread GitBox


fjy merged pull request #263:
URL: https://github.com/apache/druid-website-src/pull/263


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[druid-website-src] branch master updated: Fix broken links, adding Triton Digital

2021-10-18 Thread fjy
This is an automated email from the ASF dual-hosted git repository.

fjy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid-website-src.git


The following commit(s) were added to refs/heads/master by this push:
 new 306683b  Fix broken links, adding Triton Digital
 new 659bf1a  Merge pull request #263 from godzig/master
306683b is described below

commit 306683bfb73214b881e714bc7ec27d372932cddc
Author: Mike Godwin <1851282+god...@users.noreply.github.com>
AuthorDate: Thu Oct 14 15:20:02 2021 -0400

Fix broken links, adding Triton Digital

Fixed broken links for: Adikteev, Italiaonline.it, Paypal, Zuoyebang. 
Removed links for Sweet Couch which is no longer in business. Added link to 
Rill Data. Added Triton Digital entry.
---
 druid-powered.md | 18 --
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/druid-powered.md b/druid-powered.md
index 3f89d19..7b14eed 100644
--- a/druid-powered.md
+++ b/druid-powered.md
@@ -44,7 +44,7 @@ Druid is widely used in different business units of Alibaba 
Group.
 
 ## Allegro
 
-[Allegro](https://allegro.tech/about-us/) is the most popular Polish shopping 
destination with about 14 million users monthly and over 1.5 million items sold 
on the platform daily.
+[Allegro](https://allegro.tech/) is the most popular Polish shopping 
destination with about 14 million users monthly and over 1.5 million items sold 
on the platform daily.
 We have been using Druid since 2016 as business intelligence platform to power 
our clickstream analytics, marketing automation, anomaly detection, technical 
metrics and more.
 Our cluster (432 CPUs, 1300GB of RAM on historicals) processes billions of 
realtime events loaded from [Kafka](https://kafka.apache.org/)
 and hundreds batch indexing jobs on daily basis.
@@ -313,7 +313,7 @@ At ININ we're using Druid within a Lambda architecture to 
drive cloud based call
 
 ## Italiaonline
 
-Italiaonline exploits Druid for Internet trends and analytics management 
inside its new [Data-Driven Contents Management 
System](http://www.italiaonline.it/en/supereva-a-new-online-publishing-experience/).
+Italiaonline exploits Druid for Internet trends and analytics management 
inside its new [Data-Driven Contents Management 
System](https://www.italiaonline.it/corporate/en/2016/02/17/supereva-a-new-online-publishing-experience/).
 Italiaonline is the first Italian internet company, with the two most visited 
web portals, Libero and Virgilio, and the most used email service of the 
country @libero.it. Italiaonline features 16.8 million unique users per 
month*, 4.8 billion impressions per month**,  10.2 million active 
email accounts** and a 58% active reach*.
 
 ** Source: Audiweb View, powered by Nielsen, TDA 2H 2015; ** 
Internal data, December 2015*
@@ -522,7 +522,7 @@ is what they have to say:
 > seen a Open Source Community providing such a very high level of 
 > responsiveness for ANY
 > issue related to Druid setup and tuning.
 
-* [PayPal merchant ecosystem using Apache Spark, Hive, Druid, and 
HBase](https://dataworkssummit.com/san-jose-2018/session/paypal-merchant-ecosystem-using-apache-spark-hive-druid-and-hbase/)
+* [PayPal merchant ecosystem using Apache Spark, Hive, Druid, and 
HBase](https://www.youtube.com/watch?v=HJvuU0CQS44)
 
 ## PayU
 
@@ -580,7 +580,7 @@ Druid is a critical component in our advertising 
infrastructure, where it serves
 Retargetly is a Data Management Platform that enables publishers and 
advertisers to manage their first party user data, mix it with second and third 
party data from others providers and activate it into advertising campaigns 
(direct, programmatic, etc.). Druid enables us to show real time audience 
insights. It also provides a lot of flexibility on ad-hoc queries with low 
latency. We provide default graphs and metrics to our clients but they also 
have the possibility to make their own int [...]
 
 ## Rill Data
-Rill Data uses Druid to power its truly elastic, fully managed cloud service. 
+[Rill Data](https://rilldata.com) uses Druid to power its truly elastic, fully 
managed cloud service. 
 Rill uses Druid to deliver operational intelligence to business stakeholders 
with zero DevOps overhead.
 Rill's team operates the first and longest continuously running Druid service.
 
@@ -695,7 +695,7 @@ Sugo is a company that focus on realtime multi-dimension 
analytics and mining on
 
 ## Sweet Couch
 
-[Sweet Couch](https://www.sweetcouch.com) is a place to discover unique 
products which are buyable online. Druid powers [Sweet Couch 
harvest](https://www.sweetcouch.com/harvest/womens) which is an open analytics 
platform for tracking performance of online shops based out in India. All end 
user events are tracked and analysed using Druid for business insights.
+Sweet Couch was a place to discover unique products which are buyable online. 
Druid powered Sweet Couch harvest which was an open analytics platform for 
tracking

[GitHub] [druid] vmorarian commented on issue #11653: Overlord cannot elect a leader because of exception when reacquiring locks.

2021-10-18 Thread GitBox


vmorarian commented on issue #11653:
URL: https://github.com/apache/druid/issues/11653#issuecomment-945785634


   Faced with same issue in v0.22.0


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid] FrankChen021 commented on pull request #11805: Add option to JSON input format for ingesting arrays of rows

2021-10-18 Thread GitBox


FrankChen021 commented on pull request #11805:
URL: https://github.com/apache/druid/pull/11805#issuecomment-945704913


   Hi @jihoonson , what's your opinion ?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid] FrankChen021 commented on issue #11792: Router can not recognize query type "view"

2021-10-18 Thread GitBox


FrankChen021 commented on issue #11792:
URL: https://github.com/apache/druid/issues/11792#issuecomment-945703858


I think the current problem you met is similar to the movingAverage 
extension which was not supported on router node before. You can take a look at 
#11276 or #11662 to see how the problem is resolved.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org



[GitHub] [druid] avalanchy commented on issue #10057: index_parallel with single_dim partitionSpec type generating just one file/segment

2021-10-18 Thread GitBox


avalanchy commented on issue #10057:
URL: https://github.com/apache/druid/issues/10057#issuecomment-945649261


   The issue is not fixed. I just tested single_dim and hashed. In both 
situations, maxRowsPerSegment is ignored. The hashed at least is loading 
different values into separate segments, in comparison where single_dim loads 
everything together. Tested on 0.21.1.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org