piotr-szuberski edited a comment on pull request #12297: URL: https://github.com/apache/beam/pull/12297#issuecomment-704757337
> I'm getting this error when trying `ReadDataFromKinesis`, > > > RuntimeError: Unable to fetch remote job server jar at https://repo.maven.apache.org/maven2/org/apache/beam/beam-sdks-java-io-kinesis-expansion-service/2.24.0/beam-sdks-java-io-kinesis-expansion-service-2.24.0.jar: HTTP Error 404: Not Found > > Seems like **beam-sdks-java-io-kinesis-expansion-service** no longer exists on Maven? @yuanhunglo ReadDataFromKinesis transform will be available in the 2.25.0 release. It was merged too late to make it to the 2.24.0. If you want to run it using 2.25 code then you need to build the expansion service using ``` ./gradlew :sdks:java:io:kinesis:expansion-service:shadowJar ``` Then ReadDataFromKinesis should be able to detect the expansion service jar in its default path ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
