Jenkins build is still unstable: Kafka » Kafka Branch Builder » 3.4 #26

2022-12-30 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: Kafka » Kafka Branch Builder » trunk #1477

2022-12-30 Thread Apache Jenkins Server
See 




Re: [ANNOUNCE] New committer: Satish Duggana

2022-12-30 Thread Dhiraj Dwarapudi
Congratulations Sato :-)

Regards,
Dhiraj

On Thu, Dec 29, 2022 at 10:17 AM Bill Bejeck  wrote:

> Congratulations Satish!
>
> -Bill
>
> On Thu, Dec 29, 2022 at 11:05 AM Satish Duggana 
> wrote:
>
> > Thank you, everyone!
> >
> > On Wed, 28 Dec 2022 at 00:02, Matthias J. Sax  wrote:
> > >
> > > Congrats!
> > >
> > > On 12/27/22 10:20 AM, Kirk True wrote:
> > > > Congrats, Satish!
> > > >
> > > > On Fri, Dec 23, 2022, at 10:07 AM, Jun Rao wrote:
> > > >> Hi, Everyone,
> > > >>
> > > >> The PMC of Apache Kafka is pleased to announce a new Kafka committer
> > Satish
> > > >> Duggana.
> > > >>
> > > >> Satish has been a long time Kafka contributor since 2017. He is the
> > main
> > > >> driver behind KIP-405 that integrates Kafka with remote storage, a
> > > >> significant and much anticipated feature in Kafka.
> > > >>
> > > >> Congratulations, Satish!
> > > >>
> > > >> Thanks,
> > > >>
> > > >> Jun (on behalf of the Apache Kafka PMC)
> > > >>
> > > >
> >
>


[GitHub] [kafka-site] jolshan merged pull request #473: MINOR: Add Justine to committers list

2022-12-30 Thread GitBox


jolshan merged PR #473:
URL: https://github.com/apache/kafka-site/pull/473


-- 
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: dev-unsubscr...@kafka.apache.org

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



[GitHub] [kafka-site] jolshan opened a new pull request, #473: MINOR: Add Justine to committers list

2022-12-30 Thread GitBox


jolshan opened a new pull request, #473:
URL: https://github.com/apache/kafka-site/pull/473

   Adding name and image for Justine


-- 
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: dev-unsubscr...@kafka.apache.org

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



Re: [ANNOUNCE] New committer: Justine Olshan

2022-12-30 Thread Justine Olshan
Thanks all!

Justine

On Fri, Dec 30, 2022 at 8:03 AM Mickael Maison 
wrote:

> Congratulations Justine!
>
> On Fri, Dec 30, 2022 at 6:14 AM Yash Mayya  wrote:
> >
> > Congratulations Justine!
> >
> > On Fri, Dec 30, 2022, 02:28 David Jacot  wrote:
> >
> > > Hi all,
> > >
> > > The PMC of Apache Kafka is pleased to announce a new Kafka committer
> > > Justine
> > > Olshan.
> > >
> > > Justine has been contributing to Kafka since June 2019. She
> contributed 53
> > > PRs including the following KIPs.
> > >
> > > KIP-480: Sticky Partitioner
> > > KIP-516: Topic Identifiers & Topic Deletion State Improvements
> > > KIP-854: Separate configuration for producer ID expiry
> > > KIP-890: Transactions Server-Side Defense (in progress)
> > >
> > > Congratulations, Justine!
> > >
> > > Thanks,
> > >
> > > David (on behalf of the Apache Kafka PMC)
> > >
>


Re: [ANNOUNCE] New committer: Justine Olshan

2022-12-30 Thread Mickael Maison
Congratulations Justine!

On Fri, Dec 30, 2022 at 6:14 AM Yash Mayya  wrote:
>
> Congratulations Justine!
>
> On Fri, Dec 30, 2022, 02:28 David Jacot  wrote:
>
> > Hi all,
> >
> > The PMC of Apache Kafka is pleased to announce a new Kafka committer
> > Justine
> > Olshan.
> >
> > Justine has been contributing to Kafka since June 2019. She contributed 53
> > PRs including the following KIPs.
> >
> > KIP-480: Sticky Partitioner
> > KIP-516: Topic Identifiers & Topic Deletion State Improvements
> > KIP-854: Separate configuration for producer ID expiry
> > KIP-890: Transactions Server-Side Defense (in progress)
> >
> > Congratulations, Justine!
> >
> > Thanks,
> >
> > David (on behalf of the Apache Kafka PMC)
> >


[jira] [Created] (KAFKA-14559) Handle object name with wildcards in the Jmx tool

2022-12-30 Thread Kamal Chandraprakash (Jira)
Kamal Chandraprakash created KAFKA-14559:


 Summary: Handle object name with wildcards in the Jmx tool
 Key: KAFKA-14559
 URL: https://issues.apache.org/jira/browse/KAFKA-14559
 Project: Kafka
  Issue Type: Task
Reporter: Kamal Chandraprakash
Assignee: Kamal Chandraprakash


{code}
❯ sh kafka-run-class.sh kafka.tools.JmxTool --jmx-url 
service:jmx:rmi:///jndi/rmi://127.0.0.1:/jmxrmi --object-name 
kafka.server:type=BrokerTopicMetrics,*

Trying to connect to JMX url: 
service:jmx:rmi:///jndi/rmi://127.0.0.1:/jmxrmi.
Exception in thread "main" java.lang.NullPointerException
at kafka.tools.JmxTool$.main(JmxTool.scala:194)
at kafka.tools.JmxTool.main(JmxTool.scala)

❯ sh kafka-run-class.sh kafka.tools.JmxTool --jmx-url 
service:jmx:rmi:///jndi/rmi://localhost:/jmxrmi --object-name 
kafka.server:type=BrokerTopicMetrics,* --attributes Count,FifteenMinuteRate

Trying to connect to JMX url: 
service:jmx:rmi:///jndi/rmi://127.0.0.1:/jmxrmi. 
Exception in thread "main" java.lang.NullPointerException
at kafka.tools.JmxTool$.queryAttributes(JmxTool.scala:254)
at kafka.tools.JmxTool$.main(JmxTool.scala:214)
at kafka.tools.JmxTool.main(JmxTool.scala)
{code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


Jenkins build is still unstable: Kafka » Kafka Branch Builder » 3.4 #25

2022-12-30 Thread Apache Jenkins Server
See