[DISCUSS] KIP-973 Expose per topic replication rate metrics

2023-08-30 Thread Nelson Bighetti
Relatively minor change that fixes a mismatch between documentation and
implementation.
https://cwiki.apache.org/confluence/display/KAFKA/KIP-973%3A+Expose+per+topic+replication+rate+metrics


[jira] [Created] (KAFKA-14707) Possible read error in the Array type caused by insufficient remaining bytes

2023-02-12 Thread Nelson Bighetti (Jira)
Nelson Bighetti created KAFKA-14707:
---

 Summary: Possible read error in the Array type caused by 
insufficient remaining bytes
 Key: KAFKA-14707
 URL: https://issues.apache.org/jira/browse/KAFKA-14707
 Project: Kafka
  Issue Type: Bug
  Components: network
Reporter: Nelson Bighetti
Assignee: Nelson Bighetti


{code:java}
if (size > buffer.remaining())
throw new SchemaException("Error reading array of size " + size + ", only " 
+ buffer.remaining() + " bytes available"); {code}
Array type has the above code snippet which checks if there are enough bytes in 
the buffer to read all the array elements. However, there is a unit mismatch 
because `size` is the number of elements in the array, not the number of bytes. 
Thus, even if the above check passes buffer still might not have enough bytes 
to read all the elements.



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


Requesting permissions to contribute

2023-02-02 Thread Nelson Bighetti
Hello,

My name is Nelson. I want to start contributing to the Apache Kafka project.

JiraID: bachmanity1
WikiID: bachmanity1
email: bachmanity...@gmail.com

Best regards,


Re: Jira account

2023-01-31 Thread Nelson Bighetti
Hi Bill,

Thanks for the prompt reply.

bachmanity...@gmail.com
bachmanity1
Nelson Bighetti

Thanks!


On Wed, Feb 1, 2023 at 8:15 AM Bill Bejeck  wrote:

> Hi Nelson,
>
> Can you provide your preferred email, user-name, and display name I can set
> up your account.
>
> Thanks,
> Bill
>
> On Tue, Jan 31, 2023 at 12:51 PM Nelson Bighetti 
> wrote:
>
> > Hello,
> >
> > Since November of last year, it's not possible to create Jira account in
> > the Apache organisation. The website says to email the project's
> > private mailing list to request a Jira account, so can anybody please
> help
> > me?
> >
> > Thanks in advance!
> >
>


Jira account

2023-01-31 Thread Nelson Bighetti
Hello,

Since November of last year, it's not possible to create Jira account in
the Apache organisation. The website says to email the project's
private mailing list to request a Jira account, so can anybody please help
me?

Thanks in advance!


Entry point to start reading the code

2023-01-29 Thread Nelson Bighetti
Hello everyone! :)

I've just started reading the code but it appears a little overwhelming to
me. Is there any documentation describing the directory structure? Or maybe
could anybody suggest a good starting point to read the code?

Thanks in advance.