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
0
votes
2 answers

How to get the proxy node in openstack swift cluster?

I know the command swift-ring-builder /etc/swift/object.builder can get all storage nodes in a swift cluster. Now I want to know if there are any commands like it to get the proxy nodes in the cluster?
camel
  • 13
  • 5
0
votes
2 answers

How openstack-swift synchronize time between different servers?

Assume, I've two servers which is located in different time-zones. How do swift synchronize objects in different time-zones? How is their implementation? Do they have applied any special algorithm ?
0
votes
0 answers

Accessing Openstack Swift deployment on EC2 VM remotely

So, i have deployed Swift Object Storage on an EC2 VM. I am able to access the objects using curl/python client for swift from the same VM. However, I am not sure how to access the same remotely using the public URL for my swift deployment. On…
Manav Garg
  • 512
  • 1
  • 3
  • 17
0
votes
1 answer

Is it possible to set container read ACL with using SwiftService.upload?

I'm using Python-Swift client to connect to Openstack's Swift for file storage. My service allow user to upload file and store it within Swift. My requirement is that the file should be able to be read without permission. I found the solution to…
RobGThai
  • 5,937
  • 8
  • 41
  • 59
0
votes
2 answers

Disable Authentication in OpenStack Swift

I want that everyone (unauthorized) could store/read objects form my test swift server. Is there a way to disable authentication at all? I'm authorized with the following user (proxy-server.conf): [filter:tempauth] use =…
Serob_b
  • 965
  • 12
  • 29
0
votes
1 answer

Error codes in Bluemix/Openstack Object Storage

Other object storage providers define error codes (or error names) that give more information about the error than the http codes they come with. For example, here is a list of the error codes by some of the other providers: Amazon S3 Azure Google…
moondaisy
  • 4,303
  • 6
  • 41
  • 70
0
votes
1 answer

How to extend storage in Swift(OpenStack) service?

I installed a SAIO(swift all in one) in my server, it's a ubuntu 14.04 system. I create a loopback device for storage by following commands: sudo mkdir /srv sudo truncate -s 20GB /srv/swift-disk sudo mkfs.xfs…
C.Lu
  • 1
0
votes
1 answer

CRUD regions, zones in Openstack Swift with Python

I setup successfully a test Openstack Swift environment followed by this SAIO - Swift All In One page. And also installed python-swiftclient package to manage data on Swift. But both of swift command and swiftclient package only support me to manage…
Tan Viet
  • 1,983
  • 6
  • 25
  • 36
0
votes
1 answer

OpenStack Mitaka: command line client takes a long time to respond

I've been using OpenStack on and off for a while now. After about a year I installed Mitaka (with keystone+swift) and noticed that the openstack command (CLI client), as well as the swift command are taking a really long time to respond - like 5 or…
MisterStrickland
  • 947
  • 1
  • 15
  • 35
0
votes
1 answer

OPENSTACK SWIFT : org.javaswift.joss.exception.CommandException: Unable to open input stream for uploading

I'm able to connect to the account, I was also able to create and access a container too. But when I try to upload a object using the JOSS library I get the exception below. Does the file name has to be a file on local machine where the code is…
Prasad Shinde
  • 652
  • 2
  • 8
  • 21
0
votes
1 answer

Put method is not working in OpenStack

I used below method to get Auth-token and i got the output as below.But if use that id as Auth-token for PUT method it's not working it's showing as explained below. curl -sd '{"auth":{"passwordCredentials":{"username": "admin", "password":…
chetan t
  • 21
  • 1
  • 3
0
votes
2 answers

How can I append data to an Object in OpenStack Swift Object Storage?

currently want to stream realtime IoT data into OpenStack Swift, but it seems there is no support for doing this - also the API seems to support only atomic pushes. Does anyone have any other experience or any workaround for that? Thanks a lot!
0
votes
2 answers

Nagios custom plugin calling python Openstack Swift client

I want to check with NAGIOS whether my server can connect to Openstack Swift container. I wrote a simple script where I use Swift Python client to get stat of the container Script looks like that #!/bin/bash set…
lotk
  • 384
  • 7
  • 20
0
votes
1 answer

SwiftConfigurationException: Invalid host name when accessing Swift from Bluemix Spark

I've stored a file in Swift (Bluemix Objectstore) and I'm trying to access it from a Python application running on Spark within Bluemix. I can successfully access the file in a Python notebook running in the same environment, but the access fails…
Leo
  • 1,493
  • 14
  • 27
0
votes
2 answers

Automation scripts using Python API for OpenStack Swift

I am running OpenStack Swift cluster on my machines as a private cloud network, and it is working well (GET, PUT, POST, DELETE) using cURL as well CLI. Want to write automation script for those actions, but I am not getting where/how to start. Any…