Julian Lawrence
03/04/2025, 5:56 PMAlexander Aranovsky
03/05/2025, 2:26 PMEric Satterwhite
03/06/2025, 3:15 PMJuho Kerppola
03/07/2025, 6:11 AMKinesisStreamsSource
and then just print out the results from the stream to console (working locally with vscode). Code with the deprecated FlinkKinesisConsumer
works fine, but when running with KinesisStreamsSource
I am getting an error saying:
Unable to load credentials from any of the providers in the chain ...
I have added the new dependency for SDKv2
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>sso</artifactId>
<version>2.30.33</version>
</dependency>
Additionally I've run aws sso login
and verified that the connection works.
Any ideas what could be the problem?Grzegorz Liter
03/11/2025, 2:38 PMNonSplittingRecursiveEnumerator
does file operations in sequence, which in case of remote storages mainly just sit idle on IO operations.
This could be improved (at least 10x in execution speed) by using ForkJoinPool to parallelized the work and would like to contribute it to Flink code base.
https://issues.apache.org/jira/browse/FLINK-35704
https://github.com/apache/flink/pull/24986Grzegorz Liter
03/13/2025, 2:58 PMmain
branch and run some simple job with stateful function.
The problem is both checkpoints and savepoints directories only containing _metadata
file. There are no blobs file even thou _metadata
refers to them.Julian Lawrence
03/17/2025, 5:24 PMPedro Mázala
03/18/2025, 10:46 AMAshok
03/18/2025, 3:05 PMkim
03/19/2025, 3:53 PMAshok
03/20/2025, 7:19 AMJacob Jona Fahlenkamp
03/20/2025, 9:34 AMrmoff
03/24/2025, 9:26 AM<https://nightlies.apache.org/flink/flink-docs-release-2.0/release-notes/flink-2.0/>
are 404 - is this because they are still being published? /cc @weijie guoGrzegorz Liter
03/24/2025, 11:16 AMwatermarkGenerator =
emitProgressiveWatermarks
? watermarkStrategy.createWatermarkGenerator(this::getMetricGroup)
: new NoWatermarksGenerator<>();
to
watermarkGenerator =
emitProgressiveWatermarks
? watermarkStrategy.createWatermarkGenerator(
new WatermarkGeneratorSupplier.Context() {
@Override
public MetricGroup getMetricGroup() {
return this.getMetricGroup();
}
@Override
public RelativeClock getInputActivityClock() {
return inputActivityClock;
}
})
: new NoWatermarksGenerator<>();
Where this.getMetricGroup
refereed to parent class instance before and now refers to anonymous class instance which leads to infinite recursion.
https://issues.apache.org/jira/browse/FLINK-37545AK
03/25/2025, 8:33 AMMounika Bathina
04/01/2025, 10:59 AMThomas Cooper
04/01/2025, 12:14 PM4.0-SNAPSHOT
, but I think if we are moving to the next major release for the Kafka connector it makes sense to also move to the Kafka 4.0 client libraries as they drop support for Kafka <2.1 (a breaking change). I have a PR open for that update.
I which case do we want to do a Flink Connector Kafka version 3.5 release which maintains the support for Kafka 2.0 and lower and also supports flink 2.0.0?Prashant Singh
04/01/2025, 3:45 PMAndrea Sella
04/02/2025, 8:24 AMIlya Soin
04/03/2025, 7:19 AMkim
04/03/2025, 3:30 PMHugo Polsinelli
04/04/2025, 8:05 AMMounika Bathina
04/07/2025, 6:48 AMSanil
04/07/2025, 9:55 PMKeith Lee
04/08/2025, 6:45 PMJulian Lawrence
04/08/2025, 6:51 PMKeith Lee
04/09/2025, 7:51 AMAshok
04/10/2025, 1:39 PMBhargava Sharma
04/22/2025, 12:23 AMpranav tiwari
05/02/2025, 2:16 PM