Build failed in Jenkins: kafka-trunk-jdk8 #2612

2018-05-01 Thread Apache Jenkins Server
See Changes: [ismael] MINOR: Removed unused imports in a few tests (#4938) -- [...truncated 421.20 KB...] kafka.server.epoch.LeaderEpochFileCacheTest >

Jenkins build is back to normal : kafka-trunk-jdk7 #3392

2018-05-01 Thread Apache Jenkins Server
See

Re: [DISCUSS] KIP-290: Support for wildcard suffixed ACLs

2018-05-01 Thread Stephane Maarek
Hi, thanks for this badly needed feature 1) Why introduce two new APIs in authorizer instead of replacing the implementation for simple ACL authorizer with adding the wildcard capability? 2) is there an impact to performance as now we're evaluating more rules ? A while back I had evaluated the

[jira] [Created] (KAFKA-6845) Shrink size of docker image

2018-05-01 Thread Jay Qi (JIRA)
Jay Qi created KAFKA-6845: - Summary: Shrink size of docker image Key: KAFKA-6845 URL: https://issues.apache.org/jira/browse/KAFKA-6845 Project: Kafka Issue Type: Improvement Reporter:

[jira] [Created] (KAFKA-6844) Race condition between StreamThread and GlobalStreamThread stopping

2018-05-01 Thread Bill Bejeck (JIRA)
Bill Bejeck created KAFKA-6844: -- Summary: Race condition between StreamThread and GlobalStreamThread stopping Key: KAFKA-6844 URL: https://issues.apache.org/jira/browse/KAFKA-6844 Project: Kafka

[jira] [Created] (KAFKA-6843) Document issue with DNS TTL

2018-05-01 Thread David Glasser (JIRA)
David Glasser created KAFKA-6843: Summary: Document issue with DNS TTL Key: KAFKA-6843 URL: https://issues.apache.org/jira/browse/KAFKA-6843 Project: Kafka Issue Type: Bug

Re: [DISCUSS] KIP-290: Support for wildcard suffixed ACLs

2018-05-01 Thread Ted Yu
w.r.t. naming, we can keep wildcard and drop 'prefixed' (or 'suffixed') since the use of regex would always start with non-wildcard portion. Cheers On Tue, May 1, 2018 at 12:13 PM, Andy Coates wrote: > Hi Piyush, > > Can you also document in the Compatibility section what

Re: [DISCUSS] KIP-290: Support for wildcard suffixed ACLs

2018-05-01 Thread Andy Coates
Hi Piyush, Can you also document in the Compatibility section what would happen should the cluster be upgraded, wildcard-suffixed ACLs are added, and then the cluster is rolled back to the previous version. On downgrade the partial wildcard ACLs will be treated as literals and hence never match

Re: [DISCUSS] KIP-290: Support for wildcard suffixed ACLs

2018-05-01 Thread Andy Coates
Hi Piyush, Thanks for raising this KIP - it's very much appreciated. I've not had chance to digest it yet, but... 1. you might want to add details of how the internals of the `getMatchingAcls` is implemented. We'd want to make sure the complexity of the operation isn't adversely affected. 2.

Build failed in Jenkins: kafka-trunk-jdk8 #2610

2018-05-01 Thread Apache Jenkins Server
See Changes: [github] KAFKA-6526: Enable unclean leader election without controller change -- [...truncated 3.55 MB...] kafka.message.ByteBufferMessageSetTest >

[jira] [Created] (KAFKA-6842) initTransactions hangs when trying to connect to non-existing broker

2018-05-01 Thread Alexander Gavrilov (JIRA)
Alexander Gavrilov created KAFKA-6842: - Summary: initTransactions hangs when trying to connect to non-existing broker Key: KAFKA-6842 URL: https://issues.apache.org/jira/browse/KAFKA-6842

[jira] [Resolved] (KAFKA-3417) Invalid characters in config properties not being validated?

2018-05-01 Thread Manikumar (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-3417?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Manikumar resolved KAFKA-3417. -- Resolution: Fixed Assignee: Mickael Maison (was: Grant Henke) Fix Version/s: 2.0.0 >

RE: [VOTE] KIP-235 Add DNS alias support for secured connection

2018-05-01 Thread Skrzypek, Jonathan
Oops, yes indeed that makes sense, got confused between SASL_SSL and SSL. Updated the KIP. Jonathan Skrzypek -Original Message- From: Rajini Sivaram [mailto:rajinisiva...@gmail.com] Sent: 01 May 2018 11:08 To: dev Subject: Re: [VOTE] KIP-235 Add DNS alias support for secured

[jira] [Resolved] (KAFKA-5896) Kafka Connect task threads never interrupted

2018-05-01 Thread Nick Pillitteri (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-5896?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Nick Pillitteri resolved KAFKA-5896. Resolution: Unresolved > Kafka Connect task threads never interrupted >

Re: [DISCUSS] KIP-290: Support for wildcard suffixed ACLs

2018-05-01 Thread Ron Dagostino
Hi Piyush. I appreciated your talk at Kafka Summit and appreciate the KIP -- thanks. Could you explain these mismatching references? Near the top of the KIP you refer to these proposed new method signatures: def getMatchingAcls(resource: Resource): Set[Acl] def getMatchingAcls(principal:

Re: [DISCUSS] KIP-290: Support for wildcard suffixed ACLs

2018-05-01 Thread Ted Yu
The KIP was well written. Minor comment on formatting: https://github.com/apache/kafka/blob/trunk/core/src/main/scala/kafka/admin/AclCommand.scala to Leave space between the URL and 'to' Can you describe changes for the AdminClient ? Thanks On Tue, May 1, 2018 at 8:12 AM, Piyush Vijay

Build failed in Jenkins: kafka-trunk-jdk7 #3391

2018-05-01 Thread Apache Jenkins Server
See Changes: [github] KAFKA-6526: Enable unclean leader election without controller change -- [...truncated 416.60 KB...] kafka.admin.ResetConsumerGroupOffsetTest >

[jira] [Created] (KAFKA-6841) Add support for wildcard suffixed ACLs

2018-05-01 Thread Piyush Vijay (JIRA)
Piyush Vijay created KAFKA-6841: --- Summary: Add support for wildcard suffixed ACLs Key: KAFKA-6841 URL: https://issues.apache.org/jira/browse/KAFKA-6841 Project: Kafka Issue Type: New Feature

Re: [DISCUSS] KIP-278: Add version option to Kafka's commands

2018-05-01 Thread Manikumar
I assume the intent of the KIP to find out the Kafka broker version. In this case, maybe we should expose version using a Kafka request. This will help the remote scripts/tools to query the Kafka version. scripts (kafka-topics.sh, kafka-configs.sh, etc..) may run from remote machines and may

[DISCUSS] KIP-290: Support for wildcard suffixed ACLs

2018-05-01 Thread Piyush Vijay
Hi all, I just opened a KIP to add support for wildcard suffixed ACLs. This is one of the feature I talked about in my Kafka summit talk and we promised to upstream it :) The details are here - https://cwiki.apache.org/confluence/display/KAFKA/KIP-290%3A+Support+for+wildcard+suffixed+ACLs There

[jira] [Resolved] (KAFKA-6826) Avoid range scans when forwarding values in window store aggregations

2018-05-01 Thread Guozhang Wang (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-6826?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guozhang Wang resolved KAFKA-6826. -- Resolution: Fixed Fix Version/s: 2.0.0 > Avoid range scans when forwarding values in

[jira] [Resolved] (KAFKA-6526) Update controller to handle changes to unclean.leader.election.enable

2018-05-01 Thread Rajini Sivaram (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-6526?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rajini Sivaram resolved KAFKA-6526. --- Resolution: Fixed Reviewer: Dong Lin > Update controller to handle changes to

Re: Permission to open a KIP

2018-05-01 Thread Guozhang Wang
Hello Piyush, I've added you to the permission list. Guozhang On Mon, Apr 30, 2018 at 10:36 AM, Piyush Vijay wrote: > Hi, > > Can someone please grant me permission to open a KIP? My id is piyushvijay. > > Thanks > Piyush Vijay > -- -- Guozhang

Re: Permission to create KIP

2018-05-01 Thread Guozhang Wang
Hello Andy, I've added you to the list. Cheers, Guozhang On Tue, May 1, 2018 at 6:08 AM, Andy Coates wrote: > Hi, > > Can I get permission to add a KIP in Confluence please? > > My Wiki Id is: bigandy > > Thanks! > > Andy > -- -- Guozhang

Re: [DISCUSS] KIP-278: Add version option to Kafka's commands

2018-05-01 Thread Colin McCabe
Thanks, Sasaki. Colin On Sat, Apr 28, 2018, at 00:55, Sasaki Toru wrote: > Hi Colin, Jason, > > Thank you for your beneficial comment. > I have updated my Pull Request to show git commit hash in version > information.> In my current Pull Request, we cat get the result such below: > >$

Permission to create KIP

2018-05-01 Thread Andy Coates
Hi, Can I get permission to add a KIP in Confluence please? My Wiki Id is: bigandy Thanks! Andy

ApacheCon North America 2018 schedule is now live.

2018-05-01 Thread Rich Bowen
Dear Apache Enthusiast, We are pleased to announce our schedule for ApacheCon North America 2018. ApacheCon will be held September 23-27 at the Montreal Marriott Chateau Champlain in Montreal, Canada. Registration is open! The early bird rate of $575 lasts until July 21, at which time it

Permission request to create a KIP

2018-05-01 Thread Adam Kotwasinski
Hello, I'd like to create a KIP - Add new metrics for consumer/replication fetch requests (re https://issues.apache.org/jira/browse/KAFKA-6830) Could you please grant me permission to create pages at https://cwiki.apache.org/confluence/display/KAFKA/Kafka+Improvement+Proposals My id is:

Re: [DISCUSS] KIP-277 - Fine Grained ACL for CreateTopics API

2018-05-01 Thread Edoardo Comar
While the vote is still in progress on the [VOTE] thread, (still needing an extra binding one :-) we have updated the PR to reflect the current KIP and noted that the check is performed on two distinct code paths: auto-creation and explicit creation of a topic. Edo On 17 April 2018 at 18:30,

Re: [VOTE] KIP-235 Add DNS alias support for secured connection

2018-05-01 Thread Rajini Sivaram
Jonathan, Not doing the reverse lookup for SASL_SSL limits the usability of this KIP since it can no longer be used in a secure environment where Kerberos is used with TLS. Perhaps the best option is to do the lookup if the option is explicitly enabled regardless of what the security protocol is.