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
1 answer

Openstack swift plugin on Jenkins

I'm setting up a CI/CD server based on Jenkins. For CD purpose, I'd like to publish this build result (An Android APK in my case) to a data server. I choose an OVH server for data storage which is based on Openstack. I use the JCloud Jenkins plugin…
donof43
  • 41
  • 4
1
vote
0 answers

How to read objects in Openstack Swift based on Object Metadata

I know that we can store metadata with each object in Swift using .addHeader("X-Object-Meta-{name}",value) on the request builder. How can I get a list of objects for with a particular metadata? Basically I'm looking for a quick, efficient way of…
Try1
  • 19
  • 6
1
vote
1 answer

Openstack Ovh connection configuration

I am currently working on a rails app and I want to use Openstack with object storage from OVH. My error is : connect_nonblock': SSL_connect returned=1 errno=0 state=unknown state: certificate verify failed (OpenSSL::SSL::SSLError) Unable to verify…
1
vote
0 answers

OpenStack Form Post php

I'm trying to use the Form Post middleware (enabled) with OpenStack Swift. I've the following code in php: $expires = intval(time() + 60*1000); $path = '/v1/AUTH_xxxxxxxxx/mycontainer'; $max_file_count = 1; $max_file_size =…
acorbel
  • 1,300
  • 12
  • 14
1
vote
0 answers

Swift could not start

While installing Swift on my machine (ubuntu), I got an error on the last step. Swift starts normally as shows the following picture. Then, I got this error : Can I anyone help me to solve this issue ?? Thank you,
Amelie
  • 535
  • 1
  • 5
  • 13
1
vote
0 answers

Download object performance for Jclouds swift client

Download object performance for jclouds java swift client is much slower than the python swiftclient api. I am using the blobstore api for jclouds. For download of a 8GB object,I tried : Blob blob = blobStore.getBlob("container", "object"); …
snekam
  • 29
  • 2
  • 5
1
vote
1 answer

How do I upload a large SQLite file to Object Storage using OpenStack's Swift (via Python)

I have an Object Storage instance on IBM's Bluemix, and I'm attempting to upload a ~32GB SQLite file. Here is my Python code which uses the OpenStack Swift API (with the credentials removed): import swiftclient conn =…
Ross Lewis
  • 755
  • 2
  • 7
  • 17
1
vote
2 answers

call signalr from fiddler or Swift instead of js

Is there a way to emulate in Fiddler or Swift what this js send to signalr: $(function () { // Declare a proxy to reference the hub. var chat = $.connection.chatHub; // Create a function that the hub can call to broadcast messages. …
user1019042
  • 2,428
  • 9
  • 43
  • 85
1
vote
1 answer

How to preserve SELinux context on a file while running from unconfined user

I am having some trouble with a couple of my files' SELinux context with my openstack-swift setup Setup details: A daemon is running swift-object-replicator with following SELinux context system_u:system_r:swift_t:s0 swift ... /usr/bin/python…
mittal
  • 915
  • 10
  • 29
1
vote
2 answers

How to create temporary URL for Swift object storage using REST API?

Swift Object storage allow you to create a temporary URL for any resource with an expiry date. This can be achieved with swift CLI command line. To make use of this functionality in an web application, I need to achieve the creation of temporary URL…
Manoj K Sardana
  • 153
  • 1
  • 4
  • 14
1
vote
2 answers

How to paging the folders and files in swift object storage?

I used the query parameters 'limit', 'marker', and 'end_marker'. The parameter limit with marker works well(ex ?limit=10&marker=image.png) but when I try to use 'end_marker' to retrieve the previous page(ex ?limit=10&end_marker=image.png), it…
1
vote
1 answer

(Softlayer, Open Stack Swift) How to solve cross domain origin with object storage api?

I used this document : http://docs.openstack.org/developer/swift/cors.html#test-cors-page Used the below code, sends Option request and get 200 as the response. But the orginal method 'get' doesn't get response. And browser console says…
hjjo
  • 105
  • 1
  • 6
1
vote
1 answer

convert video file to another format in openstack object storage server?

I am uploading all format(.webm,.wmv,.avi ..etc) video file from web using swift API PHP. After uploading video file on openstack object storage then I need to convert all video file in one format .mp4. Is it possible to convert video in one…
Pankaj Yadav
  • 222
  • 4
  • 12
1
vote
1 answer

curl: (7) couldn't connect to host;Connection refused on openstack swift

I'm trying to set up a 'Swift All In One' system on a Ubuntu 12.04 VM by the link:http://docs.openstack.org/developer/swift/development_saio.html. When I run the command on the VM: curl -v -H 'X-Storage-User: test:tester' -H 'X-Storage-Pass:…
user5440753
  • 23
  • 10
1
vote
1 answer

Query images in object storage by metadata

I have over 10GB of images for my ecommerce app. I think move them to object storage (S3, Azure, Google, etc.). So I will have an opportunity to add custom data to metadata (like NOSQL). For example, I have an image and corresponding metadata:…