weisd
weisd
请求超时了,看了后端服务是不是运行了一些长时间的操作,或是访问量大,数据库响应慢了
VersioningConfiguration ```rust pub struct VersioningConfiguration { /// Specifies whether MFA delete is enabled in the bucket versioning configuration. This /// element is only returned if the bucket has been configured...
@cruvie Hi, do you have version control enabled?
@cruvie Could you please share your putObject code?
@Nugine In rustfs, `PutObjectInput.body` is used to hold the file content. When handling `deserialize_http_multipart`, should `Multipart.File` be assigned to `PutObjectInput.body` as the body value?
@XiaoZhengRS could you please share the code you used for testing?
@XiaoZhengRS you're using a presignedPut URL—are you uploading with a PUT request and sending the file as raw binary? If you want to use form-data instead, you need to switch...
here is an example of using a PUT URL ``` document.getElementById('u').onchange = async e => { const file = e.target.files[0]; const url = 'https://bucket.s3.amazonaws.com/imgs/flower.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=...'; // presignedPut URL await fetch(url, {...
It seems that s3s does not yet support signature verification for presigned PUT URLs. For now, you can use the POST-URL approach; however, the official AWS Java SDK (v1/v2) still...