-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MINOR: Fix RecordContext Javadoc (#12130)
A prior commit accidentally changed the javadoc for RecordContext. In reality, it is not reachable from api.Processor, only Processor. Reviewers: Guozhang Wang <guozhang@apache.org>
- Loading branch information
Showing
50 changed files
with
3,310 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
...ect/api/src/main/java/org/apache/kafka/connect/source/ConnectorTransactionBoundaries.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.kafka.connect.source; | ||
|
||
/** | ||
* An enum to represent the level of support for connector-defined transaction boundaries. | ||
*/ | ||
public enum ConnectorTransactionBoundaries { | ||
/** | ||
* Signals that a connector can define its own transaction boundaries. | ||
*/ | ||
SUPPORTED, | ||
/** | ||
* Signals that a connector cannot define its own transaction boundaries. | ||
*/ | ||
UNSUPPORTED | ||
} |
31 changes: 31 additions & 0 deletions
31
connect/api/src/main/java/org/apache/kafka/connect/source/ExactlyOnceSupport.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.kafka.connect.source; | ||
|
||
/** | ||
* An enum to represent the level of support for exactly-once delivery from a source connector. | ||
*/ | ||
public enum ExactlyOnceSupport { | ||
/** | ||
* Signals that a connector supports exactly-once delivery. | ||
*/ | ||
SUPPORTED, | ||
/** | ||
* Signals that a connector does not support exactly-once delivery. | ||
*/ | ||
UNSUPPORTED; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
connect/api/src/main/java/org/apache/kafka/connect/source/TransactionContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.kafka.connect.source; | ||
|
||
/** | ||
* Provided to source tasks to allow them to define their own producer transaction boundaries when | ||
* exactly-once support is enabled. | ||
*/ | ||
public interface TransactionContext { | ||
|
||
/** | ||
* Request a transaction commit after the next batch of records from {@link SourceTask#poll()} | ||
* is processed. | ||
*/ | ||
void commitTransaction(); | ||
|
||
/** | ||
* Request a transaction commit after a source record is processed. The source record will be the | ||
* last record in the committed transaction. | ||
* @param record the record to commit the transaction after; may not be null. | ||
*/ | ||
void commitTransaction(SourceRecord record); | ||
|
||
/** | ||
* Requests a transaction abort after the next batch of records from {@link SourceTask#poll()}. All of | ||
* the records in that transaction will be discarded and will not appear in a committed transaction. | ||
* However, offsets for that transaction will still be committed so than the records in that transaction | ||
* are not reprocessed. If the data should instead be reprocessed, the task should not invoke this method | ||
* and should instead throw an exception. | ||
*/ | ||
void abortTransaction(); | ||
|
||
/** | ||
* Requests a transaction abort after a source record is processed. The source record will be the | ||
* last record in the aborted transaction. All of the records in that transaction will be discarded | ||
* and will not appear in a committed transaction. However, offsets for that transaction will still | ||
* be committed so that the records in that transaction are not reprocessed. If the data should be | ||
* reprocessed, the task should not invoke this method and should instead throw an exception. | ||
* @param record the record to abort the transaction after; may not be null. | ||
*/ | ||
void abortTransaction(SourceRecord record); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.