Re: Microservice with django

2019-11-09 Thread Uzama Zaid Mohammed Jaward
1. If your application going for production, then don’t start with
Microservices. Microservices used to scale up your application in
horizontally as well as there are other some benefits like each service can
build with small amount of team, therefore maintaining and testing is
pretty easy. If you write your application in Microservices you should have
strong Devops to maintain.
 So start with monolithic and later you can change to microservices when
you need to scale your application.

2. If you just need to use micro service architecture in your college
projects then you can use docket for running each services. You can
exchange data between services using REST APIs. Also you can use Kubernetes
for docker container management. Also you use message brokers to
communicate between services where one can publish and others can
subscribe. For the message broker try Apache Kafka.

This is my suggestion. There are plenty of blog post available on the
internet


On Sat, Nov 9, 2019 at 14:39, Shaheed Haque  wrote:

> At the end of the day, assuming you combine the Django "application
> server" with a REST wrapper, you can build any level or type of service you
> could want.
>
> The crucial question is how you want to trade off the power of the ORM
> against custom code? For example, let's say you wrapped every single table
> (Django model) in a separate "nano"service... Then you could not use sql to
> Jon or select anything and everything would be custom code.
>
> OTOH, if you put everything in a single service, you can freely use the
> ORM but loose whatever advantage you hope to fain from the modularity of
> soa.
>
> Hth, Shaheed
>
> On Fri, 8 Nov 2019, 20:22 salimon jamiu olashile, <
> tunedae1shi...@gmail.com> wrote:
>
>> I’ve a group project to work on. It’s a bug tracking system & we decided
>> to go with a microservice architecture which is the best solution for the
>> assumed business scenario. I am to build the Reporting functionality as a
>> seperate service.
>>
>> On Fri, 8 Nov 2019 at 7:26 PM, Murilo A. Gigliotti <
>> mur...@gigliottitech.com.br> wrote:
>>
>>> All,
>>>
>>> Good question! I would like more details... Thank you!
>>>
>>>
>>>
>>> Rgds,
>>>
>>> _
>>>
>>> Murilo Gigliotti,
>>>
>>> *[image: Odoo icone2] Odoo Business Partner*
>>>
>>> Mais informações visite http://www.gigliottitech.com.br/
>>>
>>>
>>>
>>> *De:* django-users@googlegroups.com [mailto:
>>> django-users@googlegroups.com] *Em nome de *Salim Kachemela
>>> *Enviada em:* sexta-feira, 8 de novembro de 2019 15:04
>>> *Para:* django-users@googlegroups.com
>>> *Assunto:* Re: Microservice with django
>>>
>>>
>>>
>>> I was wondering the same thing
>>>
>>>
>>>
>>> On Fri, 8 Nov 2019, 20:15 salimon jamiu olashile, <
>>> tunedae1shi...@gmail.com> wrote:
>>>
>>> Hello all,
>>>
>>>
>>>
>>> How can I build a Django project/app that follow the microservice
>>> architecture?
>>>
>>>
>>>
>>> Looking to be pointed in the right direction.
>>>
>>>
>>>
>>> Best regards.
>>>
>>>
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAFhdOCNZ%2BR084HQc1FD5a%2BT%3D_umuH87haQbe%3DyD2aAT6SKtUsg%40mail.gmail.com
>>> 
>>> .
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CACB6%2B1-9tNHnZ8X7U_EwqQx6%2B_msMhThvOif2RBuEuNbY3QVXQ%40mail.gmail.com
>>> 
>>> .
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/055701d59661%24ed290420%24c77b0c60%24%40com.br
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web 

Re:

2019-11-01 Thread Uzama Zaid Mohammed Jaward
Don’t look good database for Django. That is not sense anymore. You have to
choose a right database according to your application or business
requirements.

On Fri, Nov 1, 2019 at 19:12, Mohammad yunus  wrote:

> Can anyone tell me about how to set mysql database connection,and also
> tell me requirements for this steps,.
> Can someone tell me which database is good for Django framework .I know
> about default database sqlite (is it good for it)
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAEQiGcN2%2BNUnpt5BzBvn5x%2BS%3DcGpKRkOs1jXNM%3DOqeLFxCqWog%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOHA2_17Xo-o2CMARS5SOeWY%3DOgXYmrxSMLWP7gSx-w7AD0Trw%40mail.gmail.com.


Re: How to migrate and copy Data from sqlite to Postgresql

2019-10-30 Thread Uzama Zaid Mohammed Jaward
This link was found in a previous email

https://justinmi.me/blog/2017/04/28/migrating-sql-databases

On Wed, Oct 30, 2019 at 19:44, Balaji Shetty  wrote:

> Hi
>
> Can anyone please provide me help or any website providing help of DB
> Migration.
>
> Already I have deployed Application on pythonanywhere .
>
> There are 250 records already created and relational database with 5
> models present in Application.
>
> Default DB is Sqlite and I have to switch to Postgresql with all old
> Records. I have support of Postgresql in Application.
>
> Thanks in advance.
>
>
> --
> Mr Shetty Balaji
> Asst. Prof.
> IT Department
> SGGS I
> Nanded. My. India
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAECSbOvH_ZSQmMCnOvHRahePo4hcYPe2Ny96k4BNQ5XMt3brQg%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOHA2_2Sb1utEF0ay5oK7CjPoB4oMYh8gFtGt_VBP%3DyF-hJp0A%40mail.gmail.com.


Re: Making a scheduling app/programm for recurring treatment

2019-10-30 Thread Uzama Zaid Mohammed Jaward
I think you don’t get any answer for these like questions in here. This is
a forum to discuss about Django and Support. First you have to design the
system. Then onwards you can use Django. You might get answer for this if
you will post this in stack overflow

On Wed, Oct 30, 2019 at 19:34, Nithin Bhaskar 
wrote:

> Well to be frank, I am stuck right at the beginning itself.
>
> I am working in a public sector with limiter resources and a huge patient
> load and almost no funding. I was thinking of making patient scheduling a
> bit manageable and easy in my hospital.
>
> I have not yet figured out how to go about with it. I know its too naive,
> but i could really use some help starting from the core basics. I have just
> made an app called scheduler1.
> 1. How do i progam treatments in the  7 scheduling rooms and block them
> for the next 7 weeks.
> 2. Certain procedures are done only in room 1 and 2. So in option 4
> (modality of treatment), if i have chosen them, the patients have to be
> scheduled in these rooms.
>
> But before this, I need to start with the basic layout of the app.
>
> I understand that you may find it similar to teaching a kindergarten kid,
> but I would be really grateful if you could help me put
>
> Thanking you
>
> Regards..
>
>
>
> On Wed, 30 Oct 2019 at 18:59, Kasper Laudrup 
> wrote:
>
>> Hi Nithin,
>>
>> On 30/10/2019 08.19, Nithin Bhaskar wrote:
>> >
>> > I am completely new to django and python and don't have a background in
>> > programming
>> > I have taught myself a bit of python and django and use PyCharm
>> >
>> > Kindly help me out
>> >
>>
>> What exactly do you need help with? What have you done so far? Where are
>> you stuck?
>>
>> You need to be more specific.
>>
>> Kind regards,
>>
>> Kasper Laudrup
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/e4a53cf5-2dd4-49cb-a6a2-b59cdaf93ce3%40stacktrace.dk
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAKJvVH0v-Ar%2BOct%2BNX2oCX89vbOX4RBWXqYTEbZMXumschS9_g%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOHA2_3nsSstXkQBp6oWRu7PiYNCfTO0FYCh5T36%3DhFFUBTdeg%40mail.gmail.com.


Reatime news feed in Django

2019-10-25 Thread Uzama Zaid Mohammed Jaward
Hi all,

Is syndication feed framework in Django doc is good in production for real
time news feeds system ?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOHA2_3X3M7aXnVuh87904PrjMxpreNfgNfZndLTDrXk91qGFw%40mail.gmail.com.


Re: Micro Service Architecture

2019-10-14 Thread Uzama Zaid Mohammed Jaward
Great guys. Is Apache Kafka is good for inter communication among Django
micro services or is there any better technology exists?

On Sat, Oct 12, 2019 at 20:05, lemme smash  wrote:

> go
> ^^)
>
> On Friday, October 11, 2019 at 8:39:33 PM UTC+3, Uzama Zaid Mohammed
> Jaward wrote:
>>
>> Hi all
>>
>> What are the tech stack is good for micro service architecture in Django
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/7a283541-e2d8-4d9b-9428-5a1d4c00d619%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/7a283541-e2d8-4d9b-9428-5a1d4c00d619%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOHA2_2Rw3JEKEBw5ed-FY9NWiMFBhfBODooXbAdcYxuXY%3DdPw%40mail.gmail.com.


Micro Service Architecture

2019-10-11 Thread Uzama Zaid Mohammed Jaward
Hi all

What are the tech stack is good for micro service architecture in Django

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOHA2_2tFnyeEsKZXx2BrCTp_WitdSuLkzNVZ4%3DaJ1g3L4iYOg%40mail.gmail.com.


[no subject]

2019-10-09 Thread Uzama Zaid Mohammed Jaward
Hello there

Can anyone send resources on Clean Architecture in Django?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOHA2_1Gh81z1ZS7NkWQ0h%3Dr3baaWFRH1knUOK-ieBFrqKNkUQ%40mail.gmail.com.