Convert ORC to ORC using an API

Use our API to convert your Apache ORC data to Apache ORC

Convert to
POST https://dataconverter.io/api/v1/convert/orc-to-orc

After signing up and verifying your email, you will be able to create an API Token in your account settings.

Headers
  • Authorization (required) Bearer <<YOUR_API_TOKEN_HERE>>
Request Body — (multipart/form-data)
  • file (required) string <binary>
  • downloadSettings

    object
    {
      "useTimestampInstant" : false,
      "overwrite" : true,
      "isUTC" : false,
      "writeUuidAsString" : true,
      "rowBatchVersion" : "ORIGINAL",
      "bigDecimalPrecision" : 38,
      "bigDecimalScale" : 10,
      "roundingMode" : "HALF_UP",
      "compressionKind" : "NONE"
    }
Request Sample

curl -X POST "https://dataconverter.io/api/v1/convert/orc-to-orc" \
-H "Authorization: Bearer YOUR_TOKEN_HERE" \
-F "file=@data.orc;type=application/vnd.apache.orc" \
-F "downloadSettings={\"useTimestampInstant\":false,\"overwrite\":true,\"isUTC\":false,\"writeUuidAsString\":true,\"rowBatchVersion\":\"ORIGINAL\",\"bigDecimalPrecision\":38,\"bigDecimalScale\":10,\"roundingMode\":\"HALF_UP\",\"compressionKind\":\"NONE\"};type=application/json" \
--output converted.orc
          
Show All APIs