Questions tagged [openstack-swift]

Swift is a massively scalable redundant storage system providing an object storage similar to Amazon's S3. Project was started in August 2009 and is part of OpenStack.

Related tag: , see also http://OpenStack.org.

339 questions
1
vote
0 answers

Error importing python swift client from notebook

When I try to install python swiftclient and access it from a notebook, I receive an error: !pip install --user python-swiftclient --upgrade import swiftclient >> Requirement already up-to-date: python-swiftclient in…
Chris Snow
  • 23,813
  • 35
  • 144
  • 309
1
vote
1 answer

issue with swift container and relative/absolute path

I wrote a script which uploaded some files from a VM cinderblock to a swift object store. Unfortunately, I used a relative path to specify the file to upload. For example: $ swift upload container ../path/to/file. Well swift apparently decided…
Martin James
  • 151
  • 2
  • 10
1
vote
2 answers

Are objects in Openstack Swift immediately available?

OpenStack Swift allows replicates and distributes objects in multiple locations over a cluster. Is it guaranteed that after a successful PUT operation, i can immediately GET the object or do I have to wait for the object to propagate over the…
enrico.bacis
  • 30,497
  • 10
  • 86
  • 115
1
vote
0 answers

Multinode installation with swift using devstack

I'm trying multinode installation using devstack, but my object storage doesn't appear in the Horizon dashboard, How do we setup two nodes (controller and object storage) such that my controller knows about the the container service running on…
Ashhad
  • 9
  • 1
1
vote
1 answer

Connecting to softlayer object storage using openstack API library php-opencloud

Is there someone tried to connect to softlayer object storage using the php-opencloud library? I got 400 bad response when the library trying to make authentication. From what I see inside the php-opencloud library, It use authentication method…
1
vote
1 answer

cURL: (7) Failed to connect; Connection refused on Openstack Swift

I'm trying to set up a 'Swift All In One' system on a CentOS 7 VM but when I run the command: curl -v -H 'X-Storage-User: test:tester' -H 'X-Storage-Pass testing' http://127.0.0.1:8080/auth/v1.0 I get the following error message: curl: (7) Failed…
peterbonar
  • 559
  • 3
  • 6
  • 24
1
vote
2 answers

Error during Swift standalone install [error in setup command: Invalid environment marker python version>=3.0]

I have been trying to do the manual install of Openstack Swift (SAIO) as detailed here: http://docs.openstack.org/developer/swift/development_saio.html However, when I get to the point where I need to build swift using the command: sudo python…
Kash.
  • 242
  • 1
  • 3
  • 15
1
vote
1 answer

"Getting started" issue with JOSS JavaSWIFT

I'm testing joss javaswift following this link. I also added JAR files from here to my project. But it provides an error. What am I doing wrong? package test; import org.javaswift.joss.client.factory.AccountConfig; import…
Klausos Klausos
  • 15,308
  • 51
  • 135
  • 217
1
vote
1 answer

What is the command to download entire container using swift client?

I am using following example command to download the container. swift -A https://127.0.0.1:443/auth/v1.0 -U swiftops:swiftops -K download container_name But I am not able to download the entire container. I can download only 10000 objects…
Srikanth Bhandary
  • 1,707
  • 3
  • 19
  • 34
1
vote
1 answer

How does data locality work with OpenStack Swift on IBM Bluemix?

I'm currently playing around with the Apache Spark Service in IBM Bluemix. Since the IBM Cloud relies on OpenStack Swift as Data Storage for this service I'm wondering if there is any data locality (at least possible) with that architecture. If I'm…
Romeo Kienzler
  • 3,373
  • 3
  • 36
  • 58
1
vote
1 answer

Sync command for OpenStack Object Storage (like S3 Sync)?

Using the S3 CLI, I can sync a local directory with an S3 bucket using the following command: aws s3 sync s3://mybucket/ ./local_dir/ This command is a complete sync. It uploads new files, updates changed files, and deletes removed files. I am…
1
vote
0 answers

Openstack Swift logging for temp url and Cross domain

We have our own private cloud where I have installed OpenStack Swift. I have a working node (proxy and storage) that allows me to store and retrieve if I use the openstack and swift python cli to store and retrieve files. Additionally I am able to…
Greg Svitak
  • 485
  • 1
  • 6
  • 19
1
vote
1 answer

Access Fiware objectstorage from Ruby: how do I connect without using password

I have an ruby-on-rails app which should store and retrieve images from Fiware objectstorage (which is based on Openstack swift). There is gem called ruby-openstack that semm to do everything I need. It works when I hardcode my email and…
Meier
  • 3,858
  • 1
  • 17
  • 46
1
vote
1 answer

How to write file on OpenStack container using JOSS

I need help because i need to integrate JOSS in a existing code. My code uses the Consumer feature of Java 8. Consumer action = repo -> { try { if(github.getRateLimit().remaining > 0) { …
Scandinave
  • 1,388
  • 1
  • 17
  • 41
1
vote
0 answers

batch operation with JOSS API

Using the JOSS API, I am building a batch application to download documents from runabove, But the batch hangs out over exhausting the connections and is unable to create new ones. Any Idea how to configure this?
shadowlaw
  • 51
  • 5