An object is the basic unit of data in Object Storage Service (OSS). The OSS Node.js SDK provides several methods for uploading files:
Upload a local file (Node.js SDK): The maximum file size is 5 GB.
Upload data from memory (Node.js SDK): The maximum size is 5 GB.
Streaming upload (Node.js SDK): The maximum size is 5 GB.
Multipart upload (Node.js SDK): Use this method to upload large files. The maximum file size is 48.8 TB.
Append upload (Node.js SDK): Use the AppendObject method to append content to an existing appendable object. The maximum object size is 5 GB.
Resumable upload (Node.js SDK): This method is suitable for uploading large files and supports concurrent uploads, resumable uploads, and custom part sizes. The maximum file size is 48.8 TB.
Upload callback (Node.js SDK): This method sends a callback to an application server after an upload is complete.