Displaying 20 results from an estimated 700 matches similar to: "GlusterFS compared to KosmosFS (now called cloudstore)?"
2008 Dec 20
14
building 1.4.0rc6
I am trying to build the latest release candidate and have run into a
bit of a problem.
When I run ./configure, I get:
GlusterFS configure summary
===========================
FUSE client : no
Infiniband verbs : no
epoll IO multiplex : yes
Berkeley-DB : no
libglusterfsclient : yes
mod_glusterfs : no ()
argp-standalone : no
I am going to need the gluster FUSE client now
2011 Oct 20
8
XCP eserver xSeries 336 support
Hi.
We look to switch from XenServer, as it latest versions do not run on
our eserver xSeries 336 server.
Does the XCP 1.1 fully support this hardware?
Also, any idea how well the Xen tools, such as XenCenter and Xen HW->VM
tools supported in 1.1 release?
I seen there is a feature called XAPI that makes the XCP look as
fully-featured XenServer.
Thanks.
2010 Jan 11
5
Global vs local puppet management
Hi.
Have anyone ever managed several geographically distributed systems
with Puppet?
I have several almost exactly similar deployments (except the server
IP''s), which management I''m looking to convert to Puppet.
I have 2 options:
* Have each deployment to host it''s own PuppetMaster for providing
local configurations, then synchronize somehow the PuppetMasters
(maybe
2009 Mar 05
1
BDB speed benefits
Hi.
Any idea what speed benefits the BDB translator provides over standard file
storage?
Also, how it's reliable, and what's the maximum file size it stores in the
DB?
Thanks.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://supercolony.gluster.org/pipermail/gluster-users/attachments/20090305/2b391a92/attachment.html>
2007 Jun 18
1
Fwd: police burst is mandatory?
Hi.
I''m using the following filter from lartc "ultimate PPP" example:
tc filter add dev $DEV parent ffff: protocol ip prio 50 u32 match ip src \
0.0.0.0/0 police rate ${DOWNLINK}kbit burst 10k drop flowid :1
It works fine, but when I remove the "burst 10k", I receive the following
error:
"burst" requires "rate".
Illegal "police"
2009 Jun 24
2
Limit of Glusterfs help
HI:
Was there a limit of servers which was used as storage in Gluster ?
2009-06-24
eagleeyes
???? gluster-users-request
????? 2009-06-24 03:00:42
???? gluster-users
???
??? Gluster-users Digest, Vol 14, Issue 34
Send Gluster-users mailing list submissions to
gluster-users at gluster.org
To subscribe or unsubscribe via the World Wide Web, visit
2010 Jan 13
1
Compiling mysql gem under CentOS 64-bit
Hi.
While not directly related to this list, I''m quite stuck on this.
When trying to compile the mysql gem, I''m getting this error:
-bash-3.2# gem install mysql
Building native extensions. This could take a while...
ERROR: Error installing mysql:
ERROR: Failed to build gem native extension.
/usr/bin/ruby extconf.rb install mysql
checking for mysql_ssl_set()... no
2017 Jul 30
4
Kalman filter for a time series
I found an example at
http://www.bearcave.com/finance/random_r_hacks/kalman_smooth.html shown
below. But it seems the structSSM function has been removed from KFAS
library so it won't run. Does anyone know how to fix the code so that it
runs?
library(KFAS)
library(tseries)
library(timeSeries)
library(zoo)
library(quantmod)
getDailyPrices = function( tickerSym, startDate, endDate )
{
2009 May 19
1
nufa and missing files
We're using gluster-2.0.1 and a nufa volume comprised of thirteen
subvolumes across thirteen hosts.
We've found today that there are some files in the local filesystem
associated with the subvolume from one of the hosts that are not
being seen in the nufa volume on any gluster client.
I don't know how or when this happened, but now we have to do some
work to get this gluster volume
2008 Oct 15
1
Glusterfs performance with large directories
We at Wiseguys are looking into GlusterFS to run our Internet Archive.
The archive stores webpages collected by our spiders.
The test setup consists of three data machines, each exporting a volume
of about 3.7TB and one nameserver machine.
File layout is such that each host has it's own directory, for example the
GlusterFS website would be located in:
2007 Nov 02
3
[LLVMdev] [Fwd: Fwd: LLVM and threading]
Dear All,
Here's a question Vikram and I received. Is the LLVM JIT thread safe?
-- John T.
-------------- next part --------------
An embedded message was scrubbed...
From: "Adve, Vikram Sadanand" <vadve at uiuc.edu>
Subject: Fwd: LLVM and threading
Date: Thu, 1 Nov 2007 09:48:59 -0500
Size: 3037
URL:
2008 May 07
2
[LLVMdev] debugging LLVM generated executables???
Just re-sending this. Anyone have any suggestions on how to proceed
with debugging LLVM produced executables? The problem appears to be
register-allocated variables. Global variables and syntax lines do
get symbols using the llc / as method I described below. -Mark
On May 6, 2008, at 7:36 AM, Mark Oskin wrote:
>
>> I think you probably need to pass -O0 to llvm-ld. The
2010 Apr 14
1
Exporting nfs share with glusterfs?
Hi all,
Is it possible to use a nfs share to serve as a glusterfs server process?? For
example: I have a host that mounts a nfs share from a solaris server under /mnt. Can
I use this /mnt directory for a glusterfs server??
Thanks.
--
CL Martinez
carlopmart {at} gmail {d0t} com
2012 Nov 14
3
Using local writes with gluster for temporary storage
Hi,
We have a cluster with 130 compute nodes with an NAS-type
central storage under gluster (3 bricks, ~50TB). When we
run large number of ocean models we can run into bottlenecks
with many jobs trying to write to our central storage.
It was suggested to us that we could also used gluster to
unite the disks on the compute nodes into a single "disk"
in which files would be written
2017 Jul 30
0
Kalman filter for a time series
> structSSM
Is no longer part of KFAS. All you needed to do was:
library(KFAS)
?KFAS
and you would have seen that if you went to the index. A structural state space model is now built up from its components, much like in LM. Look at;
?SSModel
-Roy
> On Jul 29, 2017, at 9:26 PM, Staff <rbertematti at gmail.com> wrote:
>
> I found an example at
>
2008 May 07
1
[LLVMdev] debugging LLVM generated executables???
I could do that, but before I venture there, if I did that, could I
have llvm-gcc produce native object files (not LLVM bytecode) that way
(using my pass)? thanks, -Mark
On May 7, 2008, at 11:40 AM, Chris Lattner wrote:
> On Wed, 7 May 2008, Mark Oskin wrote:
>> Just re-sending this. Anyone have any suggestions on how to proceed
>> with debugging LLVM produced executables?
2008 May 06
2
[LLVMdev] debugging LLVM generated executables???
I think you probably need to pass -O0 to llvm-ld. The link-time
optimizations are probably killing your debug info.
--Owen
On May 5, 2008, at 8:21 PM, Mark Oskin wrote:
> Hi everyone again,
>
> I did discover the following works (see below). However, does anyone
> know of the "proper" way with LLVM?
>
> llvm-gcc -g -c -emit-llvm helloworld.c
> opt
2011 Sep 16
2
Can't replace dead peer/brick
I have a simple setup:
gluster> volume info
Volume Name: myvolume
Type: Distributed-Replicate
Status: Started
Number of Bricks: 3 x 2 = 6
Transport-type: tcp
Bricks:
Brick1: 10.2.218.188:/srv
Brick2: 10.116.245.136:/srv
Brick3: 10.206.38.103:/srv
Brick4: 10.114.41.53:/srv
Brick5: 10.68.73.41:/srv
Brick6: 10.204.129.91:/srv
I *killed* Brick #4 (kill -9 and then shut down instance).
My
2008 May 07
0
[LLVMdev] debugging LLVM generated executables???
On Wed, 7 May 2008, Mark Oskin wrote:
> Just re-sending this. Anyone have any suggestions on how to proceed
> with debugging LLVM produced executables? The problem appears to be
> register-allocated variables. Global variables and syntax lines do
> get symbols using the llc / as method I described below. -Mark
Have you considered adding your pass to llvm-backend.cpp in llvmgcc?
2010 Feb 16
1
Migrate from an NFS storage to GlusterFS
Hi -
I already have an NFS server in production which shares Web data for a
4-node Apache cluster. I'd like to switch to GlusterFS.
Do I have to copy the files from the NFS storage to a GlusterFS one, or
may it work if I just install GlusterFS on that server, configuring a
GFS volume to the existing storage directory (assuming, of course, the
NFS server is shuuted down and not used