Questions tagged [object-storage]

332 questions
0
votes
1 answer

Import from python library on bluemix

I need to use the following imports in a Jupyter notebook on IBM Bluemix import swiftclient from keystoneclient import client If I were on my local workstation, I could use pip to install the libraries, but how do I do it on Bluemix? Another post…
J. Bloom
  • 73
  • 7
0
votes
2 answers

Auto append unwanted character in nodejs put request

I have an api to file upload on Bluemix Object Storage by using request module. All are good but there is some unwanted character which append automatically. example: --38oi85df-b5d1-4d42-81ce-c547c860b512 //this is unwanted character Email …
vineet
  • 10,659
  • 9
  • 50
  • 69
0
votes
1 answer

How to get auth token REST API

I followed the instruction on page https://sldn.softlayer.com/blog/waelriac/Managing-SoftLayer-Object-Storage-Through-REST-APIs The result I got is slightly different to what's said in the document. It doesn't provide something like…
noob
  • 478
  • 3
  • 18
0
votes
1 answer

How to include or wrap the file or file content or file object when using Softlayer Object Storage REST API

I am using Softlayer Object Storage REST API. I was told that below command line using CURL has been successful. $ curl -i -XPUT -H "X-Auth-Token: AUTH_tkabcd" --data-binary "Created for testing REST client"…
noob
  • 478
  • 3
  • 18
0
votes
3 answers

total size and total number of object in IBM Bluemix object store

I'm using an IBM Bluemix Object Store. Now I want to know how many files are in the object store and what the total size of these object are within a container. When I try to get the info of a container (/v1/​{account}​/​{container}​) I only get the…
arjan kroon
  • 763
  • 1
  • 7
  • 18
0
votes
2 answers

Overwriting Parquet File in Bluemix Object Storage with Apache Spark Notebook

I'm running a Spark Notebook to save a DataFrame as a Parquet File in the Bluemix Object Storage. I want to overwrite the Parquet File, when rerunning the Notebook. But actually it's just appending the data. Below a sample of the iPython Code: df =…
C Heyer
  • 3,633
  • 3
  • 8
  • 6
0
votes
1 answer

PHP Softlayer Object Storage Upload SSL error

Thought I would drop a question, as this is giving me a proper headache I have a PHP application which uploads files into SoftLayer Object Storage containers. To communicate with the Object Storage API I am using the PHP bindings…
0
votes
2 answers

Where does OpenStack Swift store the rings?

does anybody know where OpenStack Swift stores the "Rings"? Is there a distributed algorithm or is it just one table somewhere on some of the Storage Nodes with information about all (!) the physical object locations (I cannot believe that because…
user3624130
  • 27
  • 2
  • 6
0
votes
1 answer

Access bluemix object storage from local spark

I can't access files on object storage from my local standalone spark cluster. This is the code - sqlCxt = SQLContext(sc) prefix = "fs.swift.service." + creds['name'] hconf = sc._jsc.hadoopConfiguration() hconf.set(prefix + ".auth.url",…
0
votes
2 answers

How to upload a directory structure in swift object store using swift API

I am using swift object store on Bluemix to save some of my multimedia images. I noticed that SWIFT CLI tool has an option --prefix to upload a directory to the object store. I understand that Object store does not have its directory structure but…
Manoj K Sardana
  • 133
  • 1
  • 4
  • 14
0
votes
1 answer

(Softlayer api)How to get endpoints from object storage in softlayer?

How can I get connection information of clusters in softlayer? I need public and private authentication urls for all clusters. It seems that softlayer doesn't support the /v1/endpoints api of open stack api. And I can see the…
hjjo
  • 105
  • 1
  • 6
0
votes
1 answer

Bluemix Python Flask app passing list parameter to template using list.append()

I'm passing a list of strings from my flask app to the html template, which works perfectly fine until I attempt to append the list. I've tested my usage of the append method using a client-side python script and it's working. I'm perplexed as to…
Dave
  • 1
  • 3
0
votes
2 answers

Bluemix Apache-Spark: accessing object storage from python file through spark-submit

I am using the Apache-Spark service at bluemix. I am currently having trouble accessing my Object Storage through spark-submit. I know that the file exists and is accessible through the swift on the jupyter notebook. I use the following to verify:…
Codious-JR
  • 1,460
  • 3
  • 20
  • 41
0
votes
1 answer

SoftLayer Object Storage API: Search results are incorrect

I tried to use softlayer object storage with api-client. softlayer-object-storage-php My goal is to search by file name, and to see if the file exists. singlebyte filename(ex. a.jpg) correct result. multibyte filename(日本語.jpg) not correct result. My…
hide
  • 1
  • 2
0
votes
2 answers

IBM Softlayer Object Storage: Is encryption at rest (as a service) an option?

I am currently using IBM Softlayer Object Storage. I'm wondering whether there is some encryption at rest (as a service) option? For example, does Softlayer manage encryption keys in some way (the way AWS does for instance with I AM), or does it…