Questions tagged [alibaba-cloud-oss]

14 questions
3
votes
1 answer

SSL peer shut down incorrectly - Alibaba OSS java SDK

Getting "SSL peer shut down incorrectly" exception while trying to consume data from Alibaba Cloud's Object Storage Service (OSS) using its Java SDK. We are using Oracle Java 8.x, Hadoop 3.x. We are getting this exception while running it as a Oozie…
Divakar Jona
  • 31
  • 1
  • 2
0
votes
1 answer

Save DataFrame to CSV or Text to Alicloud OSS

I will like to know how to export pandas dataframe as csv/txt file to Alicloud OSS. From the documentation in https://www.alibabacloud.com/help/en/doc-detail/88426.html the closest way I can find is to export it as csv/txt locally on my computer and…
ac123
  • 15
  • 4
0
votes
1 answer

Alibaba Cloud OSS Blocked By CORS Policy Using NextJS

I used NextJS to upload image file to alibaba oss from origin http://localhost:3000 to bucket in Alibaba Cloud. I was already set CORS, but it still not work. How can I do that? enter image description here here is the result enter image description…
Qoobee
  • 71
  • 1
  • 2
0
votes
1 answer

Why does aliyun OSS set the upload file size, but it still has the problem of exceeding the file size

application.yml configure Error information Nginx is also configured to upload files with a size of 50m,But more than 1M images, will upload failure, why?Help me? thanks
0
votes
2 answers

is it possible to make unlimited time on aliyun oss when generating link?

is that posible to generate link on alibaba with aliyun to make unlimited expired link ? $timeout = 0; //default 3600 $signedUrl = $ossClient->signUrl($bucketName, $object, $timeout, "GET"); echo $signedUrl;
Lulut
  • 109
  • 9
0
votes
1 answer

Read an object from Alibaba OSS and modify it using pandas python

So, my data is in the format of CSV files in the OSS bucket of Alibaba Cloud. I am currently executing a Python script, wherein: I download the file into my local machine. Do the changes using Python script in my local machine. Store it in AWS…
priya
  • 73
  • 1
  • 1
  • 9
0
votes
2 answers

Chrome dev tool error- Status in network tab is CORS ERROR while fetching image from Alibaba OSS

fetch(url).then((response) => { return response.blob(); }).then(blob => { return URL.createObjectURL(blob); }); My url in fetch() actually a image url of different domain which is OSS_URL of Alibaba Cloud. How can i have…
Harat
  • 1,340
  • 1
  • 17
  • 20
0
votes
1 answer

How to get Access keys from Roles Assigned to Function Compute in Alibaba Cloud?

I am trying to access the keys from fc.context and not sure where I can get keys from when I assign a role to the function Compute. Instead of hardcoding or putting them in ENV I want to pute inthe bucket by applying roles to function compute. Ive…
0
votes
1 answer

Error Handling in Java Capture and raise Event in Alibaba Cloud

I am new to Java and in the learning curve. I have a in Alicloud integration where I am creating a java Function Compute. I need to connect to Key Management Service (KMS) to get the secret. In case the KMS is not available or not able to connect by…
Amdone
  • 5
  • 4
0
votes
1 answer

How can I restrict access to a file on OSS while still allowing download using wget or curl

I have created a large file (disk image) on OSS. I am able to download it with a browser using a hotlink (temporary time limited url). However I am unable to download to another server using wget and curl with the same url (error 403): "you have…
ian
  • 83
  • 4
0
votes
1 answer

How to AWS S3 to Alibaba OSS data sync?

Is the below things will be helpful? https://docs.aws.amazon.com/cli/latest/reference/s3/sync.html https://help.aliyun.com/document_detail/95159.html?spm=a2c4g.11186623.2.9.dba248faCIdT27#concept-yr2-3cf-qfb
0
votes
2 answers

How to install ossbrowser?

I need to download some files using the preset oss path, access key id, and access key secret. I downloaded the file for ubuntu from https://www.alibabacloud.com/help/doc-detail/61872.htm?spm=a2c63.p38356.b99.112.26f94e20idgreZ, however, I am…
genestack
  • 3
  • 3
-1
votes
1 answer

Django Best Practice to store cloud storage file url (s3/Alibaba OSS) inside relational database like postgres

I am using S3 and Alibaba OSS in my django project as the storage classes. Have used url field in the table to refer to the object in the storage. But the url is not permanent. Like for s3, we have pre-signed url, currently it expires in 1 hour. How…
S.K
  • 480
  • 1
  • 4
  • 19
-1
votes
1 answer

List all objects in Alibaba OSS Bucket using its Java SDK

Using Alibaba OSS Java SDK, I can only retrieve maximum 100 objects in Bucket. How to list all objects? compile group: 'com.aliyun.oss', name: 'aliyun-sdk-oss', version: '3.9.1' ObjectListing objectListing =…
Vasanth Subramanian
  • 1,040
  • 1
  • 13
  • 32