GCS transmission via source: URL list "errorCode": "UNKNOWN"

I am trying to transfer 7,860,379 files using a transfer system via a list of URLs, however I always encounter the same error:

   { //...
     "errorBreakdowns": [
     {
      "errorCode": "UNKNOWN",
      "errorCount": "1",
      "errorLogEntries": [
       {
        "url": " or ",
        "errorDetails": [
         ""
        ]
       }
      ]
     }
    ]
    // ...
   }

All of my URLs are valid and the file format is as documented:

TsvHttpData-1.0
^([^ ]+)\t([0-9]+)\t([a-f0-9]{32})$

The error I discovered is that the API is very general, someone went through the same problem?

Since I thank you.

+4
source share
1 answer

Based on your regular expression, I suspect that you are not providing base-64 encoded MD5, as it often contains "=" characters. To do this, you need to calculate the binary version of your MD5 and then convert it to base64.

: Hk2gdsIpWTDz3kQssoTqKg ==

+1

All Articles