Using PostgreSQL as a database for ERPNext

We’re just expressing our opinions. And we can’t do much about it.

I feel orm should be pluggable. Right now postgres code feels like it’s an after thought. If I install frappe that supports 25 db engines, pyproject.toml will install 24 dependencies for unused engines.

I thought one of the primary reasons for adding PyPika was to support this exact case: multiple backend databases. If not, what was the point of PyPika?

As far as dependencies go, just make them optional. Plenty of other similar-sized Python applications do this. You all are smart: I’m sure you could figure out a way.

“Frappe supports Postgres” is misleading to new comers in general.

On this point, we are in full agreement.

I’m not asking for PR. Is your fork public? If someone needs they can refer?

PR’s are impractical for changes of this magnitude imo; so that’s good.
Yes, my forks of Frappe and ERPNext forks are always kept public.

Caveat 1 : I suggest not paying attention to them for at least a few weeks, until I finish the launch + bug fixes.

Caveat 2 : I only had 2-3 weeks to accomplish this. And once I move to Postgres, I’m never looking back. So I took plenty of shortcuts. Altering various code to make it Postgres-compatible, but not compatible with MariaDB anymore. Certainly the correct and proper thing would have been to replace them all with Pypika queries, or use frappe.db.multi_sql. But I had neither the time, nor motivation. So it’s not pretty. But it does work.

1 Like

Now I wonder what the big benefits are for you to take the trouble of maintaining a fork. :hushed:

I can’t remember a time in the past 6 years when I ran into database bottlenecks, even with a fairly primitive setup.

Raffael, I’ve been maintaining forks of Frappe and ERPNext for as long as I can remember. Probably all the way back to early 2017. There have been many, many benefits to doing so. A lot of which I’ve mentioned on the forums over the years. Without the ability to maintain forks and and solve my own problems, I would have abandoned ERPNext a long time ago.

Postgres is just the latest task or project that required altering the framework and ERP repositories directly.

I’m glad most people have no problems with MariaDB.

But for myself, it’s been the root cause of many headaches the past 4 years, across multiple clients and installations. The biggest challenges have been I/O locks that require restarting the service to undo. Poor query planning. Repeated occurrence of corrupt indexes. A completely unreliable Replication system. A tendency to deadlock. And although not a deal breaker, their physical backups are awkward and a pita.

And that’s not even mentioning all the benefits of Postgres over MariaDB in general.

Maybe Postgres will help me. Maybe it won’t. There’s only 1 way to find out.

This is what we keep saying is so great about open-source ERP, right? Take it, make it your own, do what you want with it.

The alternative is to sit here, and wait for other people to solve these problems for me. Not a good strategy.

9 Likes

I also would love to see Frappe adopt postgres. There have been some important incremental steps towards making that possible, such as the introduction of query builder, but it’s a massive, high-stakes undertaking. I can’t really imagine anyone putting forward the kind of time and resources involved anytime in the near future.

The mood lately also seems to be to prioritize stability over new features for ERPNext. That’s a positive choice, in my opinion, but it makes it even harder to justify devoting resources a massive rework like this.

1 Like

As a long time (~25 years) Postgres user I am glad that you managed to hack it together in a short time. :slight_smile:

I agree that moving away from frappe.db.sql and frappe.db.multi_sql to pypika queries would be the right way to move forward - not just for people using Postgres, but also for those who are using MariaDB as well.

1 Like

I am confused as why Frappe is going in the opposite direction and actively trying to add SQLite support. There’s no public ticket that describes why the requirements or use case for this would be. SQLite is single threaded but fast, so it should be able to support more than one concurrent user, but who knows how many. There are no load tests in the existing test suite.

1 Like

Hi @tmatteson:

Maybe resources optimization for small sites on Frappe Cloud?

1 Like

The intersection of businesses large enough to need an online/hosted ERP but small enough to be satisfied with a single threaded database is for practical purposes, zero.

Definitely, I can’t imagine wanting to run a full ERP on SQLite. But, as a framework, Frappe is quite useful for much more modest applications.

1 Like

Yes and I think that it could be a meaningful and adequate replacement for Redis and that licensing debacle, but still has less-than-ideal locking issues in that context.

General comment on influencing direction in open source projects (not limited to postgres)

Its been more than a decade since we have been running this project and we often see people complaining that they are unable to influence the direction of the project. Here is what they don’t get - influencing is a longer path. The goal should be to become a maintainer. They first have to make regular small contributions and help the existing maintainers. Then become part of the team that maintains. Be a good citizen, don’t break stuff, maitain the CI, help users. Then you get to have a say in the direction of the project

Yes you can say maintainers / Frappe should do this or that, but you don’t really know what every maintainer is doing. We have clearly said that it is really upto the maintainers to do what they think best. There are also several non-Frappe folks with maintainer rights - @snv, @revant_one @rmeyer

Then I see folks like @brian_pond @tmatteson who are very active, but choose not to help the maintainers and expect some kind of obligatory attention to their priorities. True, its open source and forking is always a good choice. Its sad though. Would have been great if they had chosen a different path.

3 Likes

Just a few corrections.

Well, I cannot speak for every person who has ever complained on these forums.

But I can speak for myself and @tmatteson. We definitely do “get it”. This is not the first time you’ve shared your requirements and thoughts about contributions. We are -definitely- aware of your positions on this matter, Rushabh. They have been crystal clear.

… and expect some kind of obligatory attention to their priorities

This is untrue. We certainly don’t -expect- anything from you or the maintainers. Believe me, if there’s one thing I’ve learned? It’s to not expect anything from the project and its stewards.

Certainly I have frequently expressed disagreement, disappointment, and dissent. However, I definitely do not expect my words to have any influence or impact. That is not one of my goals when writing them.

Its sad though. Would have been great if they had chosen a different path.

I do agree, this is very sad indeed. I wonder if they have reasons? :thinking:

3 Likes

Some of the problems with MariaDB actually stem from the pure-Python client we’ve been using.

With help from @ankush, I recently re-introduced mysqlclient. It is upto 4x faster in read queries.

We are expecting to make the switch in v16.

8 Likes

Update: I’ve also ported mysqlclient to v15 now :tada:

Sponsored by @aakvatech

7 Likes

Thank you very much @snv

I am sure this will benefit many v15 ERPNext users who would have to wait till v16 is available.

@brian_pond in our experience of having many types of customers, we have yet to find a reason to maintain a fork. Almost all of our customers are on frappecloud and custom apps with monkey patching always works out. This avoids maintaining code.

Would like to know some insights from you on why the forks are needed. There maybe something in there for us to learn from.

2 Likes

I don’t think fork of frappe is available for installation on Frappecloud. postgres as db on Frappecloud may not be available.

99% don’t need it. Whoever needs it, now knows whom to connect to!

If someone is forking I don’t think they’re using frappecloud.

I assume whoever was ready for the hard fork had done everything that they could to avoid it.

3 Likes

Who here is deploying ERPNext on k8s?
Who hear is using the CloudNative PG operator for PostgreSQL?

The traction and performance of the postresql kubernetes operators is huge reason to use it over other SQL options. I prefer to only have a single SQL operator on my clusters; less overhead and complexity…

PostreSQL is best option all around IMHO. It can be used to simplify a stack significantly, especially if you leverage the advanced features and extensions.

To conclude,

ERPNext may not support postgresql. That’s why the hard fork happened.

this topic needs to be broken down in many other. Example:

  • things to try before hard fork.
  • why hard fork?
  • rethink postgresql and frappe
  • why postgres is better choice for FOSS DB over any other DB in general. Not related to frappe or erpnext.
  • why mariadb is better choice for ERPNext.

Please open new relevant topics to organise discussions.

3 Likes