Skip to content

Update README#12

Closed
ailzhang wants to merge 1 commit intoapache:0.8from
ailzhang:patch-1
Closed

Update README#12
ailzhang wants to merge 1 commit intoapache:0.8from
ailzhang:patch-1

Conversation

@ailzhang
Copy link
Copy Markdown

No description provided.

@lazyval
Copy link
Copy Markdown
Contributor

lazyval commented Jan 14, 2014

Since kafka is now an apache project, you have to fill JIRA issue and attach patch to it. PRs are not accepted as far as I know (which is a sad fact by the way).

see also #10

@joestein
Copy link
Copy Markdown
Contributor

Apache Kafka has an open source patch review tool https://cwiki.apache.org/confluence/display/KAFKA/Kafka+patch+review+tool that works with JIRA and Reviewboard. File a JIRA first maybe send something on the dev list or pick a JIRA label to try out and contrib a patch.

@ailzhang ailzhang closed this Jan 15, 2014
guozhangwang referenced this pull request in confluentinc/kafka Aug 5, 2015
Allow KStreamContext.from() to have multiple topics and extend the Processor interface to include topic names; only preserve the topic name in KStreamSource and KStreamWindowed since they do not transform data yet.
resetius pushed a commit to resetius/kafka that referenced this pull request Jun 7, 2016
[LOGBROKER-950] save highwatermark in separate files
xiowu0 pushed a commit to xiowu0/kafka that referenced this pull request Apr 17, 2019
…hich application might be relying on auto.topic.create.enable being true (apache#12)
abhishekmendhekar pushed a commit to abhishekmendhekar/kafka that referenced this pull request Jun 12, 2019
…r to track which application might be relying on auto.topic.create.enable being true (apache#12)

TICKET =
LI_DESCRIPTION =

EXIT_CRITERIA = MANUAL ["describe exit criteria"]
xiowu0 pushed a commit to xiowu0/kafka that referenced this pull request Jul 10, 2019
…r to track which application might be relying on auto.topic.create.enable being true (apache#12)

TICKET =
LI_DESCRIPTION =

EXIT_CRITERIA = MANUAL ["describe exit criteria"]
xiowu0 pushed a commit to xiowu0/kafka that referenced this pull request Aug 23, 2019
…r to track which application might be relying on auto.topic.create.enable being true (apache#12)

TICKET =
LI_DESCRIPTION =

EXIT_CRITERIA = MANUAL [""]
smccauliff pushed a commit to smccauliff/kafka that referenced this pull request Oct 8, 2020
…r to track which application might be relying on auto.topic.create.enable being true (apache#12)

TICKET =
LI_DESCRIPTION =

EXIT_CRITERIA = MANUAL [""]
wyuka pushed a commit to wyuka/kafka that referenced this pull request Jan 7, 2022
…r to track which application might be relying on auto.topic.create.enable being true (apache#12)

TICKET =
LI_DESCRIPTION =

EXIT_CRITERIA = MANUAL [""]
wyuka pushed a commit to wyuka/kafka that referenced this pull request Mar 4, 2022
…r to track which application might be relying on auto.topic.create.enable being true (apache#12)

TICKET =
LI_DESCRIPTION =

EXIT_CRITERIA = MANUAL [""]
wyuka pushed a commit to wyuka/kafka that referenced this pull request Mar 28, 2022
…r to track which application might be relying on auto.topic.create.enable being true (apache#12)

TICKET =
LI_DESCRIPTION =

EXIT_CRITERIA = MANUAL [""]
wyuka pushed a commit to wyuka/kafka that referenced this pull request Jun 16, 2022
…r to track which application might be relying on auto.topic.create.enable being true (apache#12)

TICKET =
LI_DESCRIPTION =

EXIT_CRITERIA = MANUAL [""]
lianetm pushed a commit to lianetm/kafka that referenced this pull request May 24, 2023
…pache#12)

* KAFKA-14274 apache#2: refactoring application and background events

* Found and moved NoopBackgroundEvent to events sub-package

* Added the EventHandler.addAndGet API
lianetm pushed a commit to lianetm/kafka that referenced this pull request Jun 12, 2023
…pache#12)

* KAFKA-14274 apache#2: refactoring application and background events

* Found and moved NoopBackgroundEvent to events sub-package

* Added the EventHandler.addAndGet API
brandboat pushed a commit to brandboat/kafka that referenced this pull request Sep 15, 2025
allow store cluster-link type configs
haianh1233 added a commit to haianh1233/kafka that referenced this pull request Apr 17, 2026
New tests:
- apache#8  Port conflict (HTTP == PLAINTEXT port) → rejected
- apache#9  HTTP port=0 (random) works
- apache#10 HTTP + HTTPS coexist on same broker
- apache#11 advertised.listeners with HTTP parsed correctly
- apache#12 HTTP without httpAcceptorFactory → IllegalStateException
- apache#13 inter.broker.listener=HTTPS also rejected (not just HTTP)
- apache#14 Custom listener name mapped to HTTP protocol (MY_REST_API:HTTP)
- apache#15 HTTPS with valid SSL config succeeds

All 15 SocketServerHttpTest pass.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
blitzy Bot pushed a commit to blitzy-public-samples/blitzy-kafka that referenced this pull request Apr 18, 2026
Resolve all 9 Minor and 10 Info findings from the Checkpoint 1 code review,
correcting factual inaccuracies, citation line-range imprecisions, and cross-
artifact consistency drift. No modifications to pre-existing Kafka source,
tests, build files, or comments — Audit Only rule preserved.

Findings by file:

accepted-mitigations.md
  #1 [MINOR] AclCache imports corrected: org.apache.kafka.server.immutable
              (PCollections-backed Kafka-internal) instead of Guava's
              com.google.common.collect.
  apache#2 [MINOR] API surface rewritten to reflect PCollections-style structural-
              sharing methods .updated()/.added()/.removed() instead of
              Guava builder pattern.
  apache#3 [MINOR] ZstdCompression BufferPool path split: wrap-for-output uses
              zstd-jni RecyclingBufferPool.INSTANCE (L55-L63), wrap-for-
              input uses ChunkedBytesStream (L65-L75), wrap-for-zstd-input
              uses anonymous Kafka-owned BufferPool delegating to
              BufferSupplier (L77-L98).
  apache#4 [INFO]  MAX_RECORDS_PER_USER_OP citation corrected: declaration at
              QuorumController.java:L185; AclControlManager.java:L52 is
              the static import only.
  apache#5 [INFO]  AclCache.removeAcl(Uuid) line corrected to L91-L103 (was L89+).

references.md
  apache#6 [MINOR] SafeObjectInputStream citation range tightened from L17-L25
              (class header + imports only) to L25-L62 covering the class
              declaration, DEFAULT_NO_DESERIALIZE_CLASS_NAMES blocklist
              (L27-L37), resolveClass (L43-L52), and isBlocked helper
              (L54-L62).
  apache#7 [INFO]  PropertyFileLoginModule citation corrected to L42-L50,
              pointing at the Javadoc PLAINTEXT warning (L47-L48) plus
              the class declaration (L50).

remediation-roadmap.md
  apache#8 [INFO]  Gantt markers sanitised: all :done/:active markers replaced
              with :crit (illustrative critical emphasis) or plain markers
              to avoid any visual suggestion of work already performed.
              Explanatory blockquote added clarifying the marker change.

severity-matrix.md
  apache#9 [MINOR] 7 occurrences of parenthesised '(Accepted Mitigation)'
              replaced with bracketed '[Accepted Mitigation]' per Global
              Conventions for plain-text markers. Cross-validated 9
              bracketed instances, 0 parenthesised remaining.

README.md
  apache#11 [MINOR] HEAD commit reference corrected to the pre-audit baseline
               6d16f68 (was 8a99096, a
               mid-audit snapshot); baseline attestation now refers to the
               commit immediately before the audit began.
  apache#12 [MINOR] Snapshot date unified to 2026-04-17 across all artifacts.
  apache#14 [INFO]  '25 files' claim qualified as 'planned at project completion'
               vs 'delivered at this checkpoint (15 files)'.

attack-surface-map.md
  apache#16 [MINOR] Clients module category count corrected from 'six' to 'nine'
               (actual Mermaid edges: C1, C2, C3, C4, C5, C7, C8, C9, C10).
  apache#17 [MINOR] Connect module category count corrected from 'five' to
               'seven' (actual Mermaid edges: C1, C4, C6, C7, C8, C9, C10).

oauth-jwt-validation-paths.md
  apache#18 [INFO]  Outer citation ranges tightened:
               BrokerJwtValidator.configure at L107-L138 (not L102-L134);
               OAuthBearerUnsecuredValidatorCallbackHandler.handleCallback
               at L154-L177 (not L161-L204, which spanned unrelated
               helpers); allowableClockSkewMs helper cited separately at
               L194-L207.

executive-summary.html
  Cross-ref A [MINOR] HEAD commit aligned to 6d16f68 at three sites
                       (L621, L668, L1544); methodology Mermaid node
                       re-labelled 'Baseline 6d16f68'.
  Cross-ref B [MINOR] Snapshot date aligned to 2026-04-17 at two sites
                       (L619, L1542).

Out-of-scope (Info-level forward-refs):
  apache#10, apache#13, apache#15 — Links to docs/security-audit/findings/*.md deliverables
                   not yet present at Checkpoint 1; expected per scope
                   boundary; will resolve at Checkpoint 2 when the 10
                   per-category findings files land.

Validation results (Phase 3):
  - Mermaid fences: all balanced (20 blocks total, all typed)
  - HTML tag balance: 22 sections + all 20+ tag types balanced
  - CDNs intact: reveal.js 5.1.0, Mermaid 11.4.0, Font Awesome 6.6.0
  - Emojis: zero across all 15 artifacts
  - TODOs/placeholders introduced: zero
  - Gantt markers: :crit + plain only (no :done/:active)
  - Cross-artifact consistency: zero wrong SHA/date values remaining
  - Citation ranges: 12 verified against AclCache, QuorumController,
                     AclControlManager, ZstdCompression,
                     SafeObjectInputStream, PropertyFileLoginModule,
                     BrokerJwtValidator, and
                     OAuthBearerUnsecuredValidatorCallbackHandler.

Audit Only rule verification:
  git diff --name-status 6d16f68..HEAD returns only 'A' entries,
  all under docs/security-audit/. Zero modifications, deletions, or
  renames of any pre-existing Kafka path.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants