Flink checkpoints to Google Cloud Storage

后端 未结 2 1732
醉话见心
醉话见心 2021-01-15 16:51

I am trying to configure checkpoints for flink jobs in GCS. Everything works fine if I run a test job locally (no docker and any cluster setup) but it fails with an error i

2条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-15 17:19

    The problem is the implementation of the scheme gs://. This is the protocol to connec to to GCS. A java program should be able to run if you add the following dependency:

    
      com.google.cloud
      google-cloud-storage
      1.35.0
    
    

    In this link you will find how to add this dependency for any other programming lanuage.

提交回复
热议问题