You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 1095
Next »
This page describes a proposed Kafka Improvement Proposal (KIP) process for proposing a major change to Kafka.
To create your own KIP, click on Create KIP. If you don't have permission, please send an email with your Wiki ID to dev@kafka.apache.org
and request permission (http://kafka.apache.org/contact). Also add an entry to the table KIPs under discussion (for Streams API KIPs, please also add it to Kafka Streams sub page).
Purpose
We want to make Kafka a core architectural component for users. We also support a large number of integrations with other tools, systems, and clients. Keeping this kind of usage health requires a high level of compatibility between releases — core architectural elements can't break compatibility or shift functionality from release to release. As a result each new major feature or public api has to be done in a way that we can stick with it going forward.
This means when making this kind of change we need to think through what we are doing as best we can prior to release. And as we go forward we need to stick to our decisions as much as possible. All technical decisions have pros and cons so it is important we capture the thought process that lead to a decision or design to avoid flip-flopping needlessly.
Hopefully we can make these proportional in effort to their magnitude — small changes should just need a couple brief paragraphs, whereas large changes need detailed design discussions.
This process also isn't meant to discourage incompatible changes — proposing an incompatible change is totally legitimate. Sometimes we will have made a mistake and the best path forward is a clean break that cleans things up and gives us a good foundation going forward. Rather this is intended to avoid accidentally introducing half thought-out interfaces and protocols that cause needless heartburn when changed. Likewise the definition of "compatible" is itself squishy: small details like which errors are thrown when are clearly part of the contract but may need to change in some circumstances, likewise performance isn't part of the public contract but dramatic changes may break use cases. So we just need to use good judgement about how big the impact of an incompatibility will be and how big the payoff is.
What is considered a "major change" that needs a KIP?
Any of the following should be considered a major change:
- Any major new feature, subsystem, or piece of functionality
- Any change that impacts the public interfaces of the project
What are the "public interfaces" of the project?
All of the following are public interfaces that people build around:
- Binary log format
- The network protocol and api behavior
- Any class in the public packages under clients
org/apache/kafka/common/serialization
org/apache/kafka/common
org/apache/kafka/common/errors
org/apache/kafka/clients/producer
org/apache/kafka/clients/consumer (eventually, once stable)
- Configuration, especially client configuration
- Monitoring
- Command line tools and arguments
Not all compatibility commitments are the same. We need to spend significantly more time on log format and protocol as these break code in lots of clients, cause downtime releases, etc. Public apis are next as they cause people to rebuild code and lead to compatibility issues in large multi-dependency projects (which end up requiring multiple incompatible versions). Configuration, monitoring, and command line tools can be faster and looser — changes here will break monitoring dashboards and require a bit of care during upgrades but aren't a huge burden.
For the most part monitoring, command line tool changes, and configs are added with new features so these can be done with a single KIP.
What should be included in a KIP?
A KIP should contain the following sections:
- Motivation: describe the problem to be solved
- Proposed Change: describe the new thing you want to do. This may be fairly extensive and have large subsections of its own. Or it may be a few sentences, depending on the scope of the change.
- New or Changed Public Interfaces: impact to any of the "compatibility commitments" described above. We want to call these out in particular so everyone thinks about them.
- Migration Plan and Compatibility: if this feature requires additional support for a no-downtime upgrade describe how that will work
- Rejected Alternatives: What are the other alternatives you considered and why are they worse? The goal of this section is to help people understand why this is the best solution now, and also to prevent churn in the future when old alternatives are reconsidered.
Who should initiate the KIP?
Anyone can initiate a KIP but you shouldn't do it unless you have an intention of getting the work done to implement it (otherwise it is silly).
Process
Here is the process for making a KIP:
- Click Create KIP. Take the next available KIP number and give your proposal a descriptive heading. e.g. "KIP 42: Allow Infinite Retention With Bounded Disk Usage".
- Fill in the sections as described above
- Start a [DISCUSS] thread on the Apache mailing list. Please ensure that the subject of the thread is of the format [DISCUSS] KIP-{your KIP number} {your KIP heading} The discussion should happen on the mailing list not on the wiki since the wiki comment system doesn't work well for larger discussions. In the process of the discussion you may update the proposal. You should let people know the changes you are making. When you feel you have a finalized proposal
- Once the proposal is finalized call a [VOTE] to have the proposal adopted. These proposals are more serious than code changes and more serious even than release votes. The criteria for acceptance is lazy majority. The vote should remain open for 72 hours.
- Please update the KIP wiki page, and the index below, to reflect the current stage of the KIP after a vote. This acts as the permanent record indicating the result of the KIP (e.g., Accepted or Rejected). Also report the result of the KIP vote to the voting thread on the mailing list so the conclusion is clear.
KIP round-up
Next KIP Number: 376
Use this number as the identifier for your KIP and increment this value.
Adopted KIPs
| KIP | Release |
---|
1 | KIP-372: Naming Joins and Grouping Repartition Topics | 2.1.0 (WIP) |
2 | KIP 368: Allow SASL Connections to Periodically Re-Authenticate | 2.1.0 (WIP) |
3 | KIP-367 Introduce close(Duration) to Producer and AdminClient instead of close(long, TimeUnit) | 2.1.0 |
4 | KIP-110: Add Codec for ZStandard Compression | 2.1.0 |
5 | KIP-366: Make FunctionConversions deprecated | 2.1.0 |
6 | KIP-365: Materialized, Serialized, Joined, Consumed and Produced with implicit Serde | 2.1.0 |
7 | KIP-361: Add Consumer Configuration to Disable Auto Topic Creation | 2.1.0 (WIP) |
8 | KIP-359: Verify leader epoch in produce requests | 2.1.0 |
9 | KIP-357: Add support to list ACLs per principal | 2.1.0 |
10 | KIP-356: Add withCachingDisabled() to StoreBuilder | 2.1.0 |
11 | KIP-353: Improve Kafka Streams Timestamp Synchronization | 2.1.0 |
12 | KIP-342 Add support for custom SASL extensions in OAuthBearer authentication | 2.1.0 (WIP) |
13 | KIP-341: Update Sticky Assignor's User Data Protocol | 2.1.0 (WIP) |
14 | KIP-338 Support to exclude the internal topics in kafka-topics.sh command | 2.1.0 |
15 | KIP-340: Allow kafka-reassign-partitions.sh and kafka-log-dirs.sh to take admin client property file | 2.1.0 |
16 | KIP-336: Consolidate ExtendedSerializer/Serializer and ExtendedDeserializer/Deserializer | 2.1.0 (WIP) |
17 | KIP-332: Update AclCommand to use AdminClient API | 2.1.0 |
18 | KIP-330: Add retentionPeriod in SessionBytesStoreSupplier | 2.1.0 |
19 | KIP-328: Ability to suppress updates for KTables | 2.1.0 |
20 | KIP-324: Add method to get metrics() in AdminClient | 2.1.0 |
21 | KIP-322: Return new error code for DeleteTopics API when topic deletion disabled. | 2.1.0 |
22 | KIP-321: Update TopologyDescription to better represent Source and Sink Nodes | 2.1.0 |
23 | KIP-320: Allow fetchers to detect and handle log truncation | 2.1.0 |
24 | KIP-319: Replace segments with segmentInterval in WindowBytesStoreSupplier | 2.1.0 |
25 | KIP-308: Support dynamic update of max.connections.per.ip/max.connections.per.ip.overrides | 2.1.0 |
26 | KIP-306: Configuration for Delaying Response to Failed Authentication | 2.1.0 |
27 | KIP-305: Add Connect primitive number converters | 2.0.0 |
28 | KIP-303: Add Dynamic Routing in Streams Sink | 2.0.0 |
29 | KIP-298: Error Handling in Connect | 2.0.0 |
30 | KIP-297: Externalizing Secrets for Connect Configurations | 2.0.0 |
31 | KIP-295 Add Streams Configuration Allowing for Optional Topology Optimization | 2.0.0 |
32 | KIP-294 - Enable TLS hostname verification by default | 2.0.0 |
33 | KIP-292: Add transformValues() method to KTable | 2.0.0 |
34 | KIP-290: Support for Prefixed ACLs | 2.0.0 |
35 | KIP-289: Improve the default group id behavior in KafkaConsumer | 2.1.0 (WIP) |
36 | KIP-285: Connect Rest Extension Plugin | 2.0.0 |
37 | KIP-284: Set default retention ms for Streams repartition topics to Long.MAX_VALUE | 2.0.0 |
38 | KIP-283: Efficient Memory Usage for Down-Conversion | 2.0.0 |
39 | KIP-282: Add the listener name to the authentication context | 2.0.0 |
40 | KIP-281: ConsumerPerformance: Increase Polling Loop Timeout and Make It Reachable by the End User | 2.0.0 |
41 | KIP-279: Fix log divergence between leader and follower after fast leader fail over | 2.0.0 |
42 | KIP-278 - Add version option to Kafka's commands | 2.0.0 |
43 | KIP-277 - Fine Grained ACL for CreateTopics API | 2.0.0 |
44 | KIP-276 - Add StreamsConfig prefix for different consumers | 2.0.0 |
45 | KIP-274: Kafka Streams Skipped Records Metrics | 2.0.0 |
46 | KIP-272: Add API version tag to broker's RequestsPerSec metric | 2.0.0 |
47 | KIP-270 - A Scala Wrapper Library for Kafka Streams | 2.0.0 |
48 | KIP-268: Simplify Kafka Streams Rebalance Metadata Upgrade | 2.0.0 |
49 | KIP-267: Add Processor Unit Test Support to Kafka Streams Test Utils | 2.0.0 |
50 | KIP-266: Fix consumer indefinite blocking behavior | 2.0.0 |
51 | KIP-265: Make Windowed Serde to public APIs | 2.0.0 |
52 | KIP-261: Add Single Value Fetch in Window Stores | 2.0.0 |
53 | KIP-257 - Configurable Quota Management | 2.0.0 |
54 | KIP-255: OAuth Authentication via SASL/OAUTHBEARER | 2.0.0 |
55 | KIP-251: Allow timestamp manipulation in Processor API | 2.0.0 |
56 | KIP-249: Add Delegation Token Operations to KafkaAdminClient | 2.0.0 |
57 | KIP-247: Add public test utils for Kafka Streams | 1.1.0 |
58 | KIP-245: Use Properties instead of StreamsConfig in KafkaStreams constructor | 2.0.0 |
59 | KIP-244: Add Record Header support to Kafka Streams Processor API | 2.0.0 |
60 | KIP-243: Make ProducerConfig and ConsumerConfig constructors public | 1.1.0 |
61 | KIP-239 Add queryableStoreName() to GlobalKTable | 1.1.0 |
62 | KIP-238: Expose Kafka cluster ID in Connect REST API | 1.1.0 |
63 | KIP-237: More Controller Health Metrics | 2.0.0 |
64 | KIP-233: Simplify StreamsBuilder#addGlobalStore | 1.1.0 |
65 | KIP-231: Improve the Required ACL of ListGroups API | 2.1.0 (WIP) |
66 | KIP-229: DeleteGroups API | 1.1.0 |
67 | KIP-227 - Introduce Incremental FetchRequests to Increase Partition Scalability | 1.1.0 |
68 | KIP-226 - Dynamic Broker Configuration | 1.1.0 |
69 | KIP-225 - Use tags for consumer “records.lag” metrics | 1.1.0 |
70 | KIP-224: Add configuration parameter `retries` to Streams API | 1.1.0 |
71 | KIP-223 - Add per-topic min lead and per-partition lead metrics to KafkaConsumer | 2.0.0 |
72 | KIP-222 - Add Consumer Group operations to Admin API | 2.0.0 |
73 | KIP-220: Add AdminClient into Kafka Streams' ClientSupplier | 1.1.0 |
74 | KIP-219 - Improve quota communication | 2.0.0 |
75 | KIP-218: Make KafkaFuture.Function java 8 lambda compatible | 1.1.0 |
76 | KIP-215: Add topic regex support for Connect sinks | 1.1.0 |
77 | KIP-214: Add zookeeper.max.in.flight.requests config to the broker | 1.1.0 |
78 | KIP-212: Enforce set of legal characters for connector names | 1.1.0 |
79 | KIP-211: Revise Expiration Semantics of Consumer Group Offsets | 2.1.0 (WIP) |
80 | KIP-210 - Provide for custom error handling when Kafka Streams fails to produce | 1.1.0 |
81 | KIP-208: Add SSL support to Kafka Connect REST interface | 1.1.0 |
82 | KIP-207: Offsets returned by ListOffsetsResponse should be monotonically increasing even during a partition leader change | 2.0.0 (WIP) |
83 | KIP-206: Add support for UUID serialization and deserialization | 2.1.0 |
84 | KIP-205: Add all() and range() API to ReadOnlyWindowStore | 1.1.0 |
85 | KIP-204 : Adding records deletion operation to the new Admin Client API | 1.1.0 |
86 | KIP-203: Add toLowerCase support to sasl.kerberos.principal.to.local rule | 1.1.0 |
87 | KIP-202: Move merge() from StreamsBuilder to KStream | 1.0.0 |
88 | KIP-198: Remove ZK dependency from Streams Reset Tool | 1.0.0 |
89 | KIP-197 Connect REST API should include the connector type when describing a connector | 1.0.0 |
90 | KIP-196: Add metrics to Kafka Connect framework | 1.0.0 |
91 | KIP-195: AdminClient.createPartitions | 1.0.0 |
92 | KIP-192 : Provide cleaner semantics when idempotence is enabled | 1.0.0 |
93 | KIP-191: KafkaConsumer.subscribe() overload that takes just Pattern | 1.0.0 |
94 | KIP-190: Handle client-ids consistently between clients and brokers | 1.0.0 |
95 | KIP-189: Improve principal builder interface and add support for SASL | 1.0.0 |
96 | KIP-188 - Add new metrics to support health checks | 1.0.0 |
97 | KIP-187 - Add cumulative count metric for all Kafka rate metrics | 1.0.0 |
98 | KIP-186: Increase offsets retention default to 7 days | 2.0.0 |
99 | KIP-183 - Change PreferredReplicaLeaderElectionCommand to use AdminClient | 2.0.0 |
100 | KIP-182: Reduce Streams DSL overloads and allow easier use of custom storage engines | 1.0.0 |
101 | KIP-180: Add a broker metric specifying the number of consumer group rebalances in progress | 1.1.0 |
102 | KIP-177: Consumer perf tool should count rebalance time | 1.0.0 |
103 | KIP-176: Remove deprecated new-consumer option for tools | 2.0.0 |
104 | KIP-175: Additional '--describe' views for ConsumerGroupCommand | 1.1.0 |
105 | KIP-174 - Deprecate and remove internal converter configs in WorkerConfig | 2.0.0 |
106 | KIP-173: Add prefix to StreamsConfig to enable setting default internal topic configs | 1.0.0 |
107 | KIP-171 - Extend Consumer Group Reset Offset for Stream Application | 1.1.0 |
108 | KIP-168: Add GlobalTopicCount and GlobalPartitionCount metric per cluster | 1.0.0 |
109 | KIP-167: Add interface for the state store restoration process | 1.0.0 |
110 | KIP-164 - Add UnderMinIsrPartitionCount and per-partition UnderMinIsr metrics | 1.0.0 |
111 | KIP-163: Lower the Minimum Required ACL Permission of OffsetFetch | 1.0.0 |
112 | KIP-162: Enable topic deletion by default | 1.0.0 |
113 | KIP-161: streams deserialization exception handlers | 1.0.0 |
114 | KIP-160: Augment KStream.print(), KStream.writeAsText() to allow users pass in extra parameters in the printed string | 1.0.0 |
115 | KIP-157 - Add consumer config options to streams reset tool | 1.0.0 |
116 | KIP-156 Add option "dry run" to Streams application reset tool | 0.11.0.0 |
117 | KIP-155 - Add range scan for windowed state stores | 0.11.0.0 |
118 | KIP-154 Add Kafka Connect configuration properties for creating internal topics | 0.11.0.0 |
119 | KIP-153: Include only client traffic in BytesOutPerSec metric | 0.11.0.0 |
120 | KIP-152 - Improve diagnostics for SASL authentication failures | 1.0.0 |
121 | KIP-151 Expose Connector type in REST API | 0.11.0.0 |
122 | KIP-150 - Kafka-Streams Cogroup | 2.1.0 (WIP) |
123 | KIP-149: Enabling key access in ValueTransformer, ValueMapper, and ValueJoiner | 1.1.0 (partially implemented) (WIP for 2.1.0) |
124 | KIP-146 - Classloading Isolation in Connect | 0.11.0.0 |
125 | KIP-145 - Expose Record Headers in Kafka Connect | 1.1.0 |
126 | KIP-144: Exponential backoff for broker reconnect attempts | 0.11.0.0 |
127 | KIP-143: Controller Health Metrics | 0.11.0.0 |
128 | KIP-140: Add administrative RPCs for adding, deleting, and listing ACLs | 0.11.0.0 |
129 | KIP-138: Change punctuate semantics | 1.0.0 |
130 | KIP-137: Enhance TopicCommand --describe to show topics marked for deletion | 0.11.0.0 |
131 | KIP-136: Add Listener name to SelectorMetrics tags | 0.11.0.0 |
132 | KIP-134: Delay initial consumer group rebalance | 0.11.0.0 |
133 | KIP-133: Describe and Alter Configs Admin APIs | 0.11.0.0 |
134 | KIP-130: Expose states of active tasks to KafkaStreams public API | 1.0.0 |
135 | KIP-129: Streams Exactly-Once Semantics | 0.11.0.0 |
136 | KIP-128: Add ByteArrayConverter for Kafka Connect | 0.11.0.0 |
137 | KIP-126 - Allow KafkaProducer to split and resend oversized batches. | 0.11.0.0 |
138 | KIP-124 - Request rate quotas | 0.11.0.0 |
139 | KIP-123: Allow per stream/table timestamp extractor | 0.11.0.0 |
140 | KIP-122: Add Reset Consumer Group Offsets tooling | 0.11.0.0 |
141 | KIP-121: Add KStream peek method | 0.11.0.0 |
142 | KIP-120: Cleanup Kafka Streams builder API | 1.0.0 |
143 | KIP-119: Drop Support for Scala 2.10 in Kafka 0.11 | 0.11.0.0 |
144 | KIP-118: Drop Support for Java 7 | 2.0.0 |
145 | KIP-117: Add a public AdminClient API for Kafka admin operations | 0.11.0.0 |
146 | KIP-115: Enforce offsets.topic.replication.factor upon __consumer_offsets auto topic creation | 0.11.0.0 |
147 | KIP-114: KTable state stores and improved semantics | 0.11.0.0 |
148 | KIP-113: Support replicas movement between log directories | 1.1.0 |
149 | KIP-112: Handle disk failure for JBOD | 1.0.0 |
150 | KIP-109: Old Consumer Deprecation | 0.11.0.0 |
151 | KIP-108: Create Topic Policy | 0.10.2.0 |
152 | KIP-107: Add deleteRecordsBefore() API in AdminClient | 0.11.0.0 |
153 | KIP-106 - Change Default unclean.leader.election.enabled from True to False | 0.11.0.0 |
154 | KIP-105: Addition of Record Level for Sensors | 0.10.2.0 |
155 | KIP-104: Granular Sensors for Streams | 0.10.2.0 |
156 | KIP-103: Separation of Internal and External traffic | 0.10.2.0 |
157 | KIP-102 - Add close with timeout for consumers | 0.10.2.0 |
158 | KIP-101 - Alter Replication Protocol to use Leader Epoch rather than High Watermark for Truncation | 0.11.0.0 |
159 | KIP-100 - Relax Type constraints in Kafka Streams API | 0.10.2.0 |
160 | KIP-99: Add Global Tables to Kafka Streams | 0.10.2.0 |
161 | KIP-98 - Exactly Once Delivery and Transactional Messaging | 0.11.0.0 |
162 | KIP-97: Improved Kafka Client RPC Compatibility Policy | 0.10.2.0 |
163 | KIP-96 - Add per partition metrics for in-sync and assigned replica count | 0.10.2.0 |
164 | KIP-94 Session Windows | 0.10.2.0 |
165 | KIP-93: Improve invalid timestamp handling in Kafka Streams | 0.10.2.0 |
166 | KIP-92 - Add per partition lag metrics to KafkaConsumer | 0.10.2.0 |
167 | KIP-91 Provide Intuitive User Timeouts in The Producer | 2.1.0 |
168 | KIP-90 - Remove zkClient dependency from Streams | 0.10.2.0 |
169 | KIP-89: Allow sink connectors to decouple flush and offset commit | 0.10.2.0 |
170 | KIP-88: OffsetFetch Protocol Update | 0.10.2.0 |
171 | KIP-86: Configurable SASL callback handlers | 2.0.0 |
172 | KIP-85: Dynamic JAAS configuration for Kafka clients | 0.10.2.0 |
173 | KIP-84: Support SASL SCRAM mechanisms | 0.10.2.0 |
174 | KIP-82 - Add Record Headers | 0.11.0.0 |
175 | KIP-81: Bound Fetch memory usage in the consumer | 2.1.0 (WIP) |
176 | KIP-79 - ListOffsetRequest/ListOffsetResponse v1 and add timestamp search methods to the new consumer | 0.10.1.0 |
177 | KIP-78: Cluster Id | 0.10.1.0 |
178 | KIP-77: Improve Kafka Streams Join Semantics | 0.10.2.0 |
179 | KIP-75 - Add per-connector Converters | 0.10.1.0 |
180 | KIP-74: Add Fetch Response Size Limit in Bytes | 0.10.1.0 |
181 | KIP-73: Replication Quotas | 0.10.1.0 |
182 | KIP-72: Allow putting a bound on memory consumed by Incoming request | 1.0.0 |
183 | KIP-71: Enable log compaction and deletion to co-exist | 0.10.1.0 |
184 | KIP-70: Revise Partition Assignment Semantics on New Consumer's Subscription Change | 0.10.1.0 |
185 | KIP-67: Queryable state for Kafka Streams | 0.10.1.0 |
186 | KIP-66: Single Message Transforms for Kafka Connect | 0.10.2.0 / 0.11.0.0 |
187 | KIP-65: Expose timestamps to Connect | 0.10.1.0 |
188 | KIP-63: Unify store and downstream caching in streams | 0.10.1.0 |
189 | KIP-62: Allow consumer to send heartbeats from a background thread | 0.10.1.0 |
190 | KIP-60 - Make Java client classloading more flexible | 0.10.1.0 |
191 | KIP-58 - Make Log Compaction Point Configurable | 0.10.1.0 |
192 | KIP-57 - Interoperable LZ4 Framing | 0.10.0.0 |
193 | KIP-56: Allow cross origin HTTP requests on all HTTP methods | 0.10.0.0 |
194 | KIP-55: Secure Quotas for Authenticated Users | 0.10.1.0 |
195 | KIP-54: Sticky Partition Assignment Strategy | 0.11.0.0 |
196 | KIP-52: Connector Control APIs | 0.10.0.0 |
197 | KIP-51 - List Connectors REST API | 0.10.0.0 |
198 | KIP-50 - Move Authorizer to o.a.k.common package | 0.10.1.0 |
199 | KIP-48 Delegation token support for Kafka | 1.1.0 |
200 | KIP-45 - Standardize all client sequence interaction on j.u.Collection. | 0.10.0.0 |
201 | KIP-43: Kafka SASL enhancements | 0.10.0.0 |
202 | KIP-42: Add Producer and Consumer Interceptors | 0.10.0.0 |
203 | KIP-41: Consumer Max Records | 0.10.0.0 |
204 | KIP-40: ListGroups and DescribeGroup | 0.9.0.0 |
205 | KIP-38: ZooKeeper Authentication | 0.9.0.0 |
206 | KIP-36 - Rack aware replica assignment | 0.10.0.0 |
207 | KIP-35 - Retrieving protocol version | 0.10.0.0 |
208 | KIP-33 - Add a time based log index | 0.10.1.0 |
209 | KIP-32 - Add timestamps to Kafka message | 0.10.0.0 |
210 | KIP-31 - Move to relative offsets in compressed message sets | 0.10.0.0 |
211 | KIP-28 - Add a processor client | 0.10.0.0 |
212 | KIP-26 - Add Kafka Connect framework for data import/export | 0.9.0.0 |
213 | KIP-25 - System test improvements | 0.9.0.0 |
214 | KIP-22 - Expose a Partitioner interface in the new producer | 0.9.0.0 |
215 | KIP-21 - Dynamic Configuration | 0.9.0.0 (WIP) |
216 | KIP-20 Enable log preallocate to improve consume performance under windows and some old Linux file system | 0.9.0.0 |
217 | KIP-19 - Add a request timeout to NetworkClient | 0.9.0.0 |
218 | KIP-16 - Automated Replica Lag Tuning | 0.9.0.0 |
219 | KIP-15 - Add a close method with a timeout in the producer | 0.9.0.0 |
220 | KIP-13 - Quota Design | 0.9.0.0 |
221 | KIP-12 - Kafka Sasl/Kerberos and SSL implementation | 0.9.0.0 |
222 | KIP-11 - Kafka Authorizer design | 0.9.0.0 |
223 | KIP-8 - Add a flush method to the producer API | 0.9.0.0 |
224 | KIP-4 - Metadata Protocol Changes | 0.10.0.0 |
225 | KIP-4 - Command line and centralized administrative operations | 0.9.0.0, 0.10.0.0, 0.10.1.0 |
226 | KIP-3 - Mirror Maker Enhancement | 0.9.0.0 |
227 | KIP-2 - Refactor brokers to allow listening on multiple ports and IPs | 0.9.0.0 |
228 | KIP-1 - Remove support of request.required.acks | 0.9.0.0 |
KIPs under discussion
Dormant/inactive KIPs
Discarded KIPs
KIP Discussion Recordings
Date (link to recording) | Summary |
---|
2018-04-09 | - KIP-253 - partition expansion: We discussed a few things. (1) Is it useful to backfill a compacted topic? The main use case is to rebuild the application states. If the new partition has the existing data, rebuilding the state can be done easily by reading from a single partition. Otherwise, an application has to read both the child and the parent partition to rebuild the state. This is possible, but can be complicated. Jan will do an exercise to see how complicated this is. (2) What's the best way to add the backfilling support if we want to do it? We can do this on the server side or on the client side. The former potentially makes the coordination easier. The latter potentially reduces the memory footprint on the server for reshuffling. We need to think through how to support EOS message format and how to throttle the process to avoid overwhelming the cluster. (3) Linear hashing vs doubling partitions. It seems that Linear hashing is more general. (4) Partition splitting in Kinesis. This is done differently since it doesn't allow customized partitioning. It doesn't support compacted topic either. (5) Sticky partition assignment. It could be useful to support a partition assignment strategy where the child partition is assigned together with the parent partition to a consumer instance so that the local state doesn't have to be moved immediately. (6) Consumer callback on partition splitting. This could still be useful if the states are maintained globally.
|
2017-01-07 | - KIP-112 - Handle disk failure for JBOD: We discussed whether we need to support JBOD directly in Kafka or just rely on the 1 disk per broker model. The general consensus is that direct JBOD support in Kafka is needed. There is some concern on the complexity added to Kafka. So, we have to be careful with the implementation details. We discussed how directory failure should be detected, where the failure state is kept, and whether the state should be reset on broker restart. There is a bit confusing on what's written in the wiki. Dong is going to clarify the proposal based on the feedback and we will follow up on the details in the mailing list.
|
2016-10-19 | - KIP-82 - add record header: We agreed that there are use cases for third-party vendors building tools around Kafka. We haven't reached the conclusion whether the added complexity justifies the use cases. We will follow up on the mailing list with use cases, container format people have been using, and details on the proposal.
|
2016-09-13 | KIP-54 (Sticky Partition Assignment): aims to minimise partition movement so that resource reinitialisation (e.g. caches) is minimised. It is partially sticky and partially fair. Some concerns around the fact that user code for partitionsRevoked and partitionsAssigned would have to be changed to work correctly with this assignment strategy. Good: more complex usage of an assigner that takes advantage of the user data field. Vahid will start the vote. KIP-72 (Allow Sizing Incoming Request Queue in Bytes): large requests can kill the broker, no control over how much memory is allocated. Client quotas don't help as damage may already have been done by the time they kick in. There was a discussion on whether it was worth it to avoid the immediate return from select when there was no memory available in the pool. Radai will update the KIP to describe this aspect in more detail as well as the config validation that is performed. KIP-79 (ListOffsetRequest/ListOffsetResponse v1 and add timestamp search methods to the new consumer): we discussed the option of passing multiple timestamps for the same partition in the same request. Becket thinks it's a rare use case and not worth supporting. Gwen said that it would be nice to have, but not essential. We talked about validation of duplicate topics. Becket will check the approach taken by the create topics request and evaluate if it can be adopted here too. PR will be available today and Jason will evaluate if it's feasible to include it in the next release once it's available.
|
2016-08-30 | - KIP48 (delegation tokens): Harsha will update the wiki with more details on how to use delegation tokens and how to configure it.
- KIP-78 (cluster id): There was discussion on adding human readable tags later. No major concerns.
|
2016-08-23 | - time-based release: No one seems to have objections. Ismael will follow up with a release wiki.
- KIP-4: We discussed having separate ACL requests of add and delete. No one seems to object to it. We discussed the admin client. Grant will send a PR. We discussed how KStream can use the ACL api. It seems that we will need some kind of regex or namespace support in ACL to make the authorization convenient in KStream.
KIP-50: There is some discussion for further changes in the PR. Ashish will reply to the KIP email thread with the recommended changes. Ashish/Grant plan to look into whether it's possible to make the authorizer api change backward compatible. However, it seems that people are in general ok with a non-compatible api change. KIP-74: No objections on the current proposal. Java 7 support timeline: The consensus is to defer dropping the Java 7 support until the next major release (which will be next year). Ismael will follow up on the email thread. KIP-48 delegation token : Ashish will ping Harsh to see if this is still active. Some of the KIPs have been idle. Grant will send a proposal on tagging them properly (e.g., blocked, inactive, no resource, etc).
|
2016-05-24 | - KIP-58 - Make Log Compaction Point Configurable: We want to start with just a time-based configuration since there is no good usage for byte-based or message-based configuration. Eric will change the KIP and start the vote.
- KIP-4 - Admin api: Grant will pick up the work. Initially, he plans to route the write requests from the admin clients to the controller directly to avoid having the broker forward the requests to the controller.
- KIP-48 - Delegation tokens: Two of the remaining issues are (1) how to store the delegation tokens and (2) how token expiration works. Since Parth wasn't able to attend the meeting. We will follow up in the mailing list.
|
2016-04-05 | - KIP-4: There is a slight debate on the metadata request schema, as well as the internal ZK based implementation, which we will wait for Jun to comment on the mailing list thread.
- KIP-52: We decided to start a voting process for this.
- KIP-35: Decided on renaming ApiVersionQuery api to ApiVersion. Consensus on using the api in java client to only check for availability of current versions. ApiVersion api's versions will not be deprecated. Update KIP-35 wiki will be updated with latest info and vote thread will be initiated.
|
2016-03-15 | - KIP-33 - Add a time based log index to Kafka: We decided NOT to include this in 0.10.0 since the changes may have performance risks.
- KIP-45 - Standardize all client sequence interaction on j.u.Collection: There is no consensus in the discussion. We will just put it to vote.
- KIP-35 - Retrieving protocol version: This gets the longest discussion. There is still no consensus. Magnus thinks the current proposal of maintaining a global protocol version won't work and will try to submit a new proposal.
- KIP-43 - Kafka SASL enhancements: Rajini will modify the KIP to only support native SASL mechanisms and leave the changes to Login and CallbackHandler to KIP-44 instead.
|
2016-02-23 | - KIP-33 and KIP-47: No issues. Will start the voting thread.
- KIP-43: We discussed whether there is a need to support multiple SASL mechanisms at the same time and what's the best way to implement this. Will discuss this in more details in the email thread.
- KIP-4: Grant gave a comprehensive summary of the current state. We have gaps on how to make the admin request block on the broker, how to integrate admin requests with ACL (especially with respect to client config changes for throttling and ACL changes), how to do the alter topic request properly. Grant will update the KIP with an interim plan and a long term plan.
- KIP-43: We briefly discussed on to support multiple sasl mechanisms on the broker. Harsha will follow up with more details on the email thread.
- Everyone seems to be in favor of making the next major release 0.10.0, instead of 0.9.1.
|
2016-01-26 | - KIP-42: We agreed to leave the broker side interceptor for another KIP. On the client side, people favor the 2nd option in Anna's proposal. Anna will update the wiki accordingly.
- KIP-43: We discussed whether there is a need to support multiple SASL mechanisms at the same time and what's the best way to implement this. Will discuss this in more details in the email thread.
- Jiangjie brought up an issue related to KIP-32 (adding timestamp field in the message). The issue is that currently there is no convenient way for the consumer to tell whether the timestamp in a message is the create time or the server time. He and Guozhang propose to use a bit in the message attribute to do that. Jiangjie will describe the proposal in the email thread.
|
2016-01-12 | |
2015-10-20 | - KIP-38: No concerns with this KIP. Flavio will initiate the voting on this.
- KIP-37: There are questions on how ACL, configurations, etc will work, and whether we should support "move" or not. We will discuss the details more in the mailing list.
- KIP-32/KIP-33: Jiangjie raised some concerns on the approach that Jay proposed. Guozhang and Jay will follow up on the mailing list.
|
2015-10-13 | - 0.9.0 release: We discussed if KAFKA-2397 should be a blocker in 0.9.0. Jason and Guozhang will follow up on the jira.
- KIP-32 and KIP-33: We discussed Jay's alternative proposal of just keeping CreateTime in the message and having a config to control how far off the CreateTime can be from the broker time. We will think a bit more on this and Jiangjie will update the KIP wiki.
- KIP-36: We discussed an alternative approach of introducing a new broker property to designate the rack. It's simpler and potentially can work in the case when the broker to rack mapping is maintaining externally. We need to make sure that we have an upgrade plan for this change. Allen will update the KIP wiki
|
2015-10-06 | - We only had the time to go through KIP-35. The consensus is that we will add a BrokerProtocolRequest that returns the supported versions for every type of requests. It's up to the client to decide how to use this. Magnus will update the KIP wiki with more details.
|
2015-09-22 | - KIP-31: Need to figure out how to evolve inter.broker.protocol.version with multiple protocol changes within the same release, mostly for people who are deploying from trunk. Becket will update the wiki.
- KIP-32/KIP-33: Having both CreateTime and LogAppendTime per message adds significant overtime. There are a couple of possibilities to improve this. Becket will follow up on this.
- LinkedIn has been testing SSL in MirrorMaker (SSL is only enabled in the producer). So far, MirrorMaker can keep up with the load. LinkedIn folks will share some of the performance results.
|
2015-09-14 | - KIP-28: Discussed the improved proposal including 2 layers of API (the higher layer is for streaming DSL), and stream time vs processor time. Ready for review.
- KIP-31, KIP-32: (1) Discussed whether the timestamp should be from the client or the broker. (2) Discussed the migration path and whether this requires all consumers to upgrade before the new message format can be used. (3) Since this is too big a change, it will NOT be included in 0.9.0 release. Becket will update the wiki.
|
2015-08-18 | - client-side assignment strategy: We discussed concerns about rebalancing time due to metadata inconsistency, especially when lots of topics are subscribed. Will discuss a bit more on the mailing list.
- CopyCat data api: The discussions are in KAFKA-2367 for people who are interested.
- 0.8.2.2: We want to make this a low risk bug fix release since 0.8.3 is coming. So, will only include a small number of critical and small fixes.
- 0.8.3: The main features will be security and the new consumer. We will be cutting a release branch when the major pieces for these new features have been committed.
|
2015-08-11 | |