[edx-code] EDX Server Capacity Planning

2017-09-25 Thread Neville D'Souza
Hi All,

I was trying get an answer to my query about server capacity planning for 
production. I would like to know hardware required for 500 concurrent 
users. I would like to have 2 server setup. One for LMS/CMS/DB and other 
for Insights. Does anyone know of a guide to help anyone to understand 
hardware requirements? What are the parameters that decide the CPU/Disk and 
Memory? I read in this forum someone saying 1 GB RAM for 70 concurrent 
users. Any help would be great.

Regards,
Neville

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/e9751067-e7dd-4186-adce-7be5087a33f6%40googlegroups.com.


[edx-code] Re: EDX Server Capacity Planning

2017-09-27 Thread Neville D'Souza
Anybody any ideas?

On Monday, September 25, 2017 at 5:10:27 PM UTC+1, Neville D'Souza wrote:
>
> Hi All,
>
> I was trying get an answer to my query about server capacity planning for 
> production. I would like to know hardware required for 500 concurrent 
> users. I would like to have 2 server setup. One for LMS/CMS/DB and other 
> for Insights. Does anyone know of a guide to help anyone to understand 
> hardware requirements? What are the parameters that decide the CPU/Disk and 
> Memory? I read in this forum someone saying 1 GB RAM for 70 concurrent 
> users. Any help would be great.
>
> Regards,
> Neville
>

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/4e9538b0-cc6f-46ca-bc9e-1fd0114abea8%40googlegroups.com.


[edx-code] Instructor bulk emails failing

2018-04-05 Thread Neville D'Souza
Hi All,

I have been having issues with instructor bulk emails. I have emails setup 
with mandrill which works for enrollments. But for instructor emails I get 
a from email address like pdwdm1-no-re...@example.com 
 which 
was getting rejected by mandrill.So I changed the email 
address "BULK_EMAIL_DEFAULT_FROM_EMAIL": "cour...@somedomain.com", in 
lms.env.json and cms.env.json . I restarted nginx, edxapp and edxappworker 
services and emails stopped going out completely. Even after a reboot still 
the same.

I basically want to send the mails from cour...@somedomain.com instead of 
email address with course abbreviation in front which makes it a fake 
address and get blocked by sending services. Has anybody had success doing 
this? If anyone from edx is looking at this please note this fake email 
creation is a problem because most services now will not accept fake 
address and think of it as spam.


Regards,
Neville

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/ed78244b-508f-403c-9517-d20b4908fd93%40googlegroups.com.


[edx-code] Re: Configure bulk emails

2018-04-05 Thread Neville D'Souza
Hi Liubov,

Are you aware how to change the sending email address without abbreviation 
in front to a proper email address set in "BULK_EMAIL_DEFAULT_FROM_EMAIL": 
"cour...@somedomain.com", ?


Regards,
Neville

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/3503676b-ddb1-4024-b348-7931590963c8%40googlegroups.com.


[edx-code] Re: Upload SGA and grades attachments on S3

2019-01-01 Thread Neville D'Souza
Any one willing to share their configuration of S3 for SGA and grades? It 
would be really helpful. Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/5e28d84b-86a1-43a5-9295-28af9642ed8d%40googlegroups.com.


[edx-code] Upload SGA and grades attachments on S3

2018-12-26 Thread Neville D'Souza
Hi All,

I am hoping someone can help with moving SGA and grades uploads from local 
to S3. We are using the same version of SGA that came with Ficus.4 version 
of edx.

So far i have done the below

sudo vi /edx/app/edxapp/lms.auth.json
"AWS_ACCESS_KEY_ID": "xxx",
 "AWS_SECRET_ACCESS_KEY": 
"xx",
 "AWS_STORAGE_BUCKET_NAME": "edxbucket",

But it is still getting uploaded on local storage. I am guessing its 
because of below. But what do I change this to work with S3 storage.

sudo vi /edx/app/edxapp/lms.env.json
sudo vi /edx/app/edxapp/cms.env.json
"DEFAULT_FILE_STORAGE": "django.core.files.storage.FileSystemStorage",
"MEDIA_ROOT": "/edx/var/edxapp/media/",
"MEDIA_URL": "/media/",

I must say i have ORA2 files uploaded on S3 storage but grades attachments 
uploaded locally. I would like to upload grade attachments on S3 storage as 
well. Any help with SGA and grades attachments upload to s3 would be 
helpful.

For grades would the below be correct

Inside lms.env.json & cms.env.json


"GRADES_DOWNLOAD": {

"BUCKET": "",

"ROOT_PATH": "",

"STORAGE_CLASS": "django.core.files.storage.FileSystemStorage",

"STORAGE_KWARGS": {

"location": "/tmp/edx-s3/grades"

},

"STORAGE_TYPE": ""

change to

"GRADES_DOWNLOAD": {
"BUCKET": "edxbucket",
"ROOT_PATH": "edxbucket/grades",
"STORAGE_TYPE": "s3"
},

Regards,
Neville

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/145b9af8-6b63-4ab3-ae2b-bcb30cd037f8%40googlegroups.com.


[edx-code] Re: Upload SGA and grades attachments on S3

2019-01-12 Thread Neville D'Souza
Anybody any ideas?

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/1b5f35b2-2152-473b-ba71-3fd3656940c5%40googlegroups.com.


[edx-code] AICC Compliance

2019-07-27 Thread Neville D'Souza
Hi All,

Can any one tell me if EDX platform is AICC compliant? If not can it be made 
AICC Compliant? Finally if it can be made AICC compliant , what we need to do 
to achieve this compliance?

Regards,
Neville

-- 
***Please note! This Google Group has been deprecated - visit 
https://discuss.openedx.org/
--- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to edx-code+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/2feebe89-6a28-4ba3-b148-3a1ec670e4b2%40googlegroups.com.