Displaying 6 results from an estimated 6 matches for "youplease".
2017 Dec 21
0
Wrong volume size with df
Could youplease provide following -
1 - output of gluster volume heal <volname> info
2 - /var/log/glusterfs - provide log file with mountpoint-volumename.log
3 - output of gluster volume <volname> info
4 - output of gluster volume <volname> status
5 - Also, could you try unmount the volume...
2017 Dec 21
3
Wrong volume size with df
...----------
There are no active volume tasks
> 5 - Also, could you try unmount the volume and mount it again and check
the size?
I have done this a few times but it doesn't seem to help.
On Thu, Dec 21, 2017 at 11:18 AM, Ashish Pandey <aspandey at redhat.com> wrote:
>
> Could youplease provide following -
>
> 1 - output of gluster volume heal <volname> info
> 2 - /var/log/glusterfs - provide log file with mountpoint-volumename.log
> 3 - output of gluster volume <volname> info
> 4 - output of gluster volume <volname> status
> 5 - Also, could you...
2017 Dec 19
3
Wrong volume size with df
I have a glusterfs setup with distributed disperse volumes 5 * ( 4 + 2 ).
After a server crash, "gluster peer status" reports all peers as connected.
"gluster volume status detail" shows that all bricks are up and running
with the right size, but when I use df from a client mount point, the size
displayed is about 1/6 of the total size.
When browsing the data, they seem to
2018 Jan 02
0
Wrong volume size with df
...> > 5 - Also, could you try unmount the volume and mount it again and check
> the size?
>
> I have done this a few times but it doesn't seem to help.
>
> On Thu, Dec 21, 2017 at 11:18 AM, Ashish Pandey <aspandey at redhat.com>
> wrote:
>
>>
>> Could youplease provide following -
>>
>> 1 - output of gluster volume heal <volname> info
>> 2 - /var/log/glusterfs - provide log file with mountpoint-volumename.log
>> 3 - output of gluster volume <volname> info
>> 4 - output of gluster volume <volname> status
>...
2020 Feb 03
3
Stroring and extracting AICs from an ARIMA model using a nested loop
Hello
I am trying to extract AICs from an ARIMA estimation with different
combinations of p & q ( p =0,1,2,3
and q=0,1.2,3). I have tried using the following code unsucessfully. Can
anyone help?
code:
storage1 <- numeric(16)
for (p in 0:3){
? ? for (q in 0:3){
?
? ? storage1[p]? <- arima(x,order=c(p,0,q), method="ML")}
}
storage1$aic
[[alternative HTML version deleted]]
2020 Feb 04
2
Stroring and extracting AICs from an ARIMA model using a nested loop
...ponse you've?alreadyprovided. The code you provided yields accurate results, however I still haveissues grasping the loop process in case 1 & 2.
In case1,?the use of?"p+1" and "q+1" is still blurry tome? Likewise "0L" and " i + 1L" in case 2.
?
Can youplease provide explanations on the loop mechanisms you've used.?
Le lundi 3 f?vrier 2020 ? 03:47:20 UTC?6, Rui Barradas <ruipbarradas at sapo.pt> a ?crit :
Hello,
You can solve the problem in two different ways.
1. Redefine storage1 as a matrix and extract the aic *in* the loop....