similar to: Is OCFS2 1.4.7 Prod Ready ?

Displaying 20 results from an estimated 200 matches similar to: "Is OCFS2 1.4.7 Prod Ready ?"

2011 Mar 22
6
bug resolve yet for export OCFS2 volume to NFS client ?
I found this from ocfs1.4 document: g) NFS OCFS2 volumes can be exported as NFS volumes. This support is limited to NFS version 3, which translates to Linux kernel version 2.4 or later. Users must mount the NFS volumes on the clients using the nordirplus mount option. This disables the READDIRPLUS RPC call to workaround a bug in NFSD, detailed in the following link:
2009 Feb 04
1
Strange dmesg messages
Hi list, Something went wrong this morning and we have a node ( #0 ) reboot. Something blocked the NFS access from both nodes, one rebooted and the another we restarted the nfsd and it brought him back. Looking at node #0 - the one that rebooted - logs everything seems normal, but looking at the othere node dmesg's we saw this messages: First the o2net detected that node #0 was dead: (It
2011 Jun 27
1
multiple cluster doesn't work
We're trying to setup 3 PRDM partitions (VMware) across 2 nodes. As long as only one is configured in cluster.conf, there's not problem. As soon as we try to use 2 or more we get issues. It looks the same as bug 636: http://oss.oracle.com/bugzilla/show_bug.cgi?id=636 I posted my cluster.conf and command line results there. I'm including them here in the hopes that someone on this
2010 Apr 15
4
new ocfs2 release?
Hi ocfs2 developers, there are some news about the schedule for a new ocfs2 release that solve the actual bug/limitations? I can see an 1.4.7 release tagged here: http://oss.oracle.com/git/?p=ocfs2-1.4.git;a=summary Is there a planned release date? in my environment (about 5000000 files with 300000 new files/deletion per day) I see load until 1000 and I/O almost blocked for some hours of the
2011 Dec 06
2
OCFS2 showing "No space left on device" on a device with free space
Hi , I am getting the error "No space left on device" on a device with free space which is ocfs2 filesystem. Additional information is as below, [root at sai93 staging]# debugfs.ocfs2 -n -R "stats" /dev/sdb1 | grep -i "Cluster Size" Block Size Bits: 12 Cluster Size Bits: 15 [root at sai93 ~]# cat /etc/redhat-release Red Hat Enterprise Linux Server release
2011 Jun 02
3
Problems with descriptions.
Hi guys! I can?t find an answer in google, so my last hope is this mailing list. Story. I have two servers with same arrays. Servers connected by DRBD. I used ocfs2 as file system, also I used NFS4 to access to the ocfs2 drive. I do not have any idea, but the allocated descriptors in /proc/sys/fs/file-nr increasing every time while drive accessed. So after some time allocated descriptions over
2010 Apr 29
2
Hardware error or ocfs2 error?
Hello, today I noticed the following on *only* one node: ----- cut here ----- Apr 29 11:01:18 node06 kernel: [2569440.616036] INFO: task ocfs2_wq:5214 blocked for more than 120 seconds. Apr 29 11:01:18 node06 kernel: [2569440.616056] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. Apr 29 11:01:18 node06 kernel: [2569440.616080] ocfs2_wq D
2011 May 13
7
OCFS2 1.6 for RHEL?
Hello! When is it planned ocfs2 1.6 will be available for RHEL? /Kristian
2006 Aug 09
0
Deployment: Best way to switch between test and prod envs.
All, Not looking for advice on the relative wisdom of my actions :). I have a Rails app. running under Apache 2/fastcgi that I would like to switch from using the test environment (database) to using the production environment (database). I can do this by hand by modifying my xx_mod_fastcgi.conf file and setting RAILS_ENV to be the appropriate value in the command that initializes my
2006 Jul 26
2
How to determine whether dev,test or prod from the code
When in a controller, how would I determine which environment I am currently running in? (Development,Test,Production) Thanks, Don Mc -- Posted via http://www.ruby-forum.com/.
2006 May 22
1
Model Modules, Dev vs Prod
I have a pretty complex model with many modules and I have been trying to keep it clean, but I find that loading the model in development mode using WebBrick is much more lenient than production mode with lighttpd/fcgi. For instance, if I neglect to create a dedicated file that declares the module then I run everything in development mode it works fine, but as soon as it is deployed I
2006 Apr 07
0
Rails Prod Win 0.2
Hi all, just a quick post to inform you that I''ve released my little project Rails Prod Win on Sourceforge: http://sourceforge.net/projects/rails-prod-win I will add web contents pretty soon but I thought you might like to have a go before I get a chance to complete the web page. Apologies for those of you who already knew from my previous thread but some of the people interested in
2008 Sep 26
1
Capistrano SVN help: conflicting copies on prod and local
I''m sure this is an easy fix for folks more familiar with subversion than me, but here it goes: I''m running Capistrano and have successfully deployed my app from my local machine to my live server. The repository is on the server as well. What happened is I had to generate some files on the live server in the railsapp/current directory. So now when I try and commit something
2012 Aug 21
1
Ways to poke and prod Dovecot?
I'm a newbie and want to learn more about Dovecot. I can install it in a test bed but am not sure how to run it so it shows me what it's doing but i'm not actually mailing stuff. Is there a doc somewhere? Thanks! Leam -- Mind on a Mission <http://leamhall.blogspot.com/>
2023 Apr 17
0
sum(), min(), max(), prod() vs. named arguments in ...
? Sun, 16 Apr 2023 01:34:33 -0400 Mikael Jagan <jaganmn2 at gmail.com> ?????: > Forbidding or warning against tagged arguments other than 'na.rm' > would be quite intrusive, since it is not uncommon to see > do.call(sum, <named list>). Thank you for providing this counter-example! I did suspect this to be a non-starter, but didn't have a proof. > str(...)
2011 Sep 02
1
can't compile assets on prod due to asset_host config && SSL requirement
My production asset_host config looks like this: config.action_controller.asset_host = Proc.new { |source, request| if request.ssl? "#{request.protocol}#{request.host_with_port}" else "#{request.protocol}assets#{(source.length % 4) + 1}.example.com" end } ...which is more or less straight from the docs:
2023 Apr 14
0
sum(), min(), max(), prod() vs. named arguments in ...
Hello R-devel, As mentioned on Fosstodon [1] and discussed during RCOH [2], named arguments to sum(), min(), max() and prod() are currently processed the same way as the un-named ones. Additionally, when specifying the na.rm argument more than once, the last specified value is silently taken into account. Most of this behaviour is exactly as documented, but it's arguably a source of mistakes
2006 Mar 29
3
MySQL in dev, Postgres in prod - differences in "LIKE" query
Hi everyone, I run MySQL in my dev environment, but Postgres in my production environment (out of necessity). I''m having trouble finding a way to write a query with a LIKE condition that is supported as case insensitive in both databases. Right now, I have this: @query = "m" # for example @people = Person.find(:all, :conditions => ["last_name LIKE ?", @query +
2010 Aug 06
4
Paperclip not finding imagemagick on prod, works on dev
Hi, I am using paperclip to attach documents to my models. it works perfectly on my dev machine, but on the server I get a CommandNotFoundError. On my server if I ./script/console I can run imagemagick through system("convert") and it works, so why can''t paperclip find it? Thanks for your ideas PS: the paperclip google group isn''t getting much answers so I am
2010 Sep 01
3
memcache in prod vs dev
I am using memcache for caching in my rails app and currently I have a dev and a production environment. I would like to run the dev environment without caching so that I can debug more easily but I wanna enable the caching in production obviously. I am using github and capistrano for deployment. Without doing a check at every statement where I can potentially dig into the cache, is there any