Questions tagged [walrus]

Walrus is a storage service that is part of Eucalyptus, a private-cloud offering built to be compatible with the Amazon cloud.

Walrus is a storage service that is part of Eucalyptus. It is built using the same interface as Amazon's S3 service, with the aim of being inter-operable.

Product information from the vendor

http://www.eucalyptus.com/learn/what-is-eucalyptus

Stack Overflow Wiki on Eucalyptus

https://stackoverflow.com/tags/eucalyptus/info

12 questions
2
votes
1 answer

Python 3.8 Walrus Operator with not and assigning mutliple variables

I am working on a selenium wrapper. I want to check if an element on the webpage is visible . The function gets the input variable selector which follows the pattern "selector=value" so e.g "id=content" but could also be this "link_text=Hello…
1
vote
1 answer

Walrus is not indexing the words properly

In my Django project, I am using walrus to cache location names. eg: New Zealand, New York City, Newcastle e.t.c So, when I am searching for a key 'new', I am expecting it to return all the above locations but it is only giving me Newcastle. But I…
riyasyash
  • 174
  • 3
  • 10
1
vote
1 answer

Eucalyptus OSG not configured and S3 url not set

enter image description hereDuring configuration of a private eucalyptus cloud on centos6 the following warn is coming on running the command source eucarc : WARN: An OSG is either not registered or not configured. S3_URL is not set. Please…
Cloud
  • 21
  • 3
0
votes
3 answers

Accessing Walrus programatically (Java) using AWS S3 SDK / JetS3t

I was looking to find ways to access Walrus (Eucalyptus) using AWS SDK for Java. I'm familiar with using the AWS SDK to connect to Amazon S3 programatically using my AWS credentials. However, when I Googled to check if Walrus is accessible using AWS…
Kowshik
  • 1,541
  • 3
  • 17
  • 25
0
votes
1 answer

Walrus Weights/Getting a combination in an array whose sum is closest 1000

I've been working on this problem https://open.kattis.com/problems/walrusweights. I saw that someone else had asked about it here, but my approach to this problem is completely different. In the problem, you must find a combination in an array…
Danny0317
  • 31
  • 4
0
votes
1 answer

warn:walrus url not configured in eucalyptus centos 6

I am installing eucalyptus on centos 6 and while generating administrator credentials on the cloud controller I am getting the warning:Walrus url not configured on running the following commands: 1. Generate administrator…
happy-me
  • 1
  • 2
0
votes
1 answer

Calling PutBucket on a bucket name that doesn't already exist throws an exception

My team is setting up a Eucalyptus server w/ Walrus that we want to use to run tests on our C# code, which uses Amazon's AWS stuff. It's nearly set up and we're getting the code pointed at Eucalyptus now, but we're running into some difficulty. We…
MattM
  • 91
  • 1
  • 2
  • 10
0
votes
1 answer

How to access and Read ACL information in Eucalyptus walrus (open source 2.0.3)?

i am working on Eucalyptus Walrus 2.0.3 Open Source . all Bucket(create , list, delete) Object (upload,download,delete ) and ACL operations able to perform using Jets3t API. Except sharing resources i.e bucket , object. Please Help weather problem…
0
votes
0 answers

Java NoclassDefFoundError while trying to use walrus for graph visualization

I am getting this NoclassDefFoundError while trying to use walrus for graph visualization, although I installed J3D. I am using the following command to java -cp mp.jar;antlrall-mod.jar;libsea.jar;walrus.jar H3Main on windows. anybody can help?
tammuz
  • 407
  • 5
  • 14
0
votes
2 answers

How is object different from a file?

How do Walrus, S3 or any cloud storage system, take in a file and convert it to object programmatically?
Sudhagar Sachin
  • 565
  • 2
  • 6
  • 14
-1
votes
1 answer

Software that supports S3 API from HTML Forms?

I've tried Riak CS and Walrus, and read a few other's documentation pages but can't tell whether they would support this or not. What I have is an application that uses S3 policies to allow the client to upload and download directly from their…
Dave
  • 2,506
  • 2
  • 20
  • 27
-2
votes
1 answer

Why do all values appear True when i type while loop?

I am currently learning walrus := , and when I do this coding and add to the list and then print it, a list appears with all the items True. foods = [] while food := input("what food do you like: ") != 'quit': foods.append(food) enter code…