Re: I'd like to discuss scaleout at PGCon

2020-09-14 Thread MauMau
many people will use existing popular SaaS for data warehousing like Amazon Redshift, Azure Synapse, Google BigQuery and Snowflake, rather than build their analytics databases on public IaaS or on-premises. Regards MauMau

Re: I'd like to discuss scaleout at PGCon

2020-09-14 Thread MauMau
for data warehousing like Amazon Redshift, Azure Synapse, Google BigQuery and Snowflake, rather than build their analytics databases on public IaaS or on-premises. Regards MauMau

Re: Protect syscache from bloating with negative cache entries

2019-02-08 Thread MauMau
parate memory context, which is the child of CacheMemoryContext. This gives slight optimization by using the slab context (slab.c) for a catcache with fixed-sized tuples. But that'd be a bit complex, I'm afraid for PG 12. Regards MauMau

Re: [bug fix] ECPG: freeing memory for pgtypes crashes on Windows

2018-06-26 Thread MauMau
From: Thomas Munro > Ok, back-patched. Thank you very much! > It seems like the other patch[1] might need the same treatment, right? I believe so, because that patch is based on the same cause. Regards MauMau

Re: [HACKERS] Statement-level rollback

2018-06-15 Thread MauMau
tion-for-savepoint appear *before* the internal subtransaction, > so a subsequent "SELECT 0/0" doesn't remove the user declared > savepoint.) That sounds interesting. * How can PLs like PL/pgSQL utilize this to continue upon an SQL failure? They don't call StartTransactionCommand. * How can psql make use of this feature for its ON_ERROR_ROLLBACK? Regards MauMau

Re: I'd like to discuss scaleout at PGCon

2018-06-06 Thread MauMau
all DDL statements and re-send them to the down nodes later. > Doing this imposes a cost at > DDL-execution-time only, which seems much better than imposing the cost > of translating name to OID on every server for every query. Agreed. Regards MauMau

Re: I'd like to discuss scaleout at PGCon

2018-06-06 Thread MauMau
all DDL statements and re-send them to the down nodes later. > Doing this imposes a cost at > DDL-execution-time only, which seems much better than imposing the cost > of translating name to OID on every server for every query. Agreed. Regards MauMau

Re: I'd like to discuss scaleout at PGCon

2018-06-06 Thread MauMau
From: Simon Riggs On 5 June 2018 at 17:14, MauMau wrote: >> Furthermore, an extra hop and double parsing/planning could matter for >> analytic queries, too. For example, SAP HANA boasts of scanning 1 >> billion rows in one second. In HANA's scaleout architecture, an >>

Re: I'd like to discuss scaleout at PGCon

2018-06-06 Thread MauMau
prevent any kind of inconsistent > operations. Yes, I hope our deadlock detection/resolution can be ported to PostgreSQL. But I'm also concerned like you, because Symfoware is locking-based, not MVCC-based. Regards MauMau

Re: I'd like to discuss scaleout at PGCon

2018-06-06 Thread MauMau
r handles the Row Description message ('T') from the data node. I guess the parsing is necessary to process type names combined with type modifiers, e.g. "char(100)". create_tuple_desc parseTypeString typeStringToTypeName raw_parser Regards MauMau

Re: I'd like to discuss scaleout at PGCon

2018-06-05 Thread MauMau
ce or consume tuples, or both. Note that there may be mulitple shared_queues used even for a single query. So a value should be set taking into account the number of connections it can accept and expected number of such joins occurring simultaneously. ------ Regards MauMau

Re: I'd like to discuss scaleout at PGCon

2018-06-05 Thread MauMau
Go/Scala". Proceedings of Scala Days 2011 Regards MauMau

Re: I'd like to discuss scaleout at PGCon

2018-06-05 Thread MauMau
But I don't preclude a central node. Some node needs to manage sequences, and it may as well manage the system catalog. Regards MauMau

Re: I'd like to discuss scaleout at PGCon

2018-06-05 Thread MauMau
ing the catalog at one place and using the same OID values seems to concise to me as a concept. Regards MauMau -Original Message- From: Ashutosh Bapat Sent: Saturday, June 2, 2018 1:00 AM To: Tom Lane Cc: MauMau ; Robert Haas ; PostgreSQL Hackers Subject: Re: I'd like to discuss sc

Re: I'd like to discuss scaleout at PGCon

2018-06-05 Thread MauMau
ing the catalog at one place and using the same OID values seems to concise to me as a concept. Regards MauMau

Re: I'd like to discuss scaleout at PGCon

2018-06-05 Thread MauMau
From: Robert Haas On Thu, May 31, 2018 at 8:12 AM, MauMau wrote: >> Oh, I didn't know you support FDW approach mainly for analytics. I >> guessed the first target was OLTP read-write scalability. > > That seems like a harder target to me, because you will have an extra > hop

Re: New committers announced at PGCon 2018

2018-06-03 Thread MauMau
el Paquier 9 years, 2009-08-07 https://www.postgresql.org/message-id/c64c5f8b0908062031k3ff48428j824a 9a46f2818...@mail.gmail.com Tomas Vondra 11 years, 2007-01-25 https://www.postgresql.org/message-id/20070125155424.gg64...@nasby.net Regards MauMau

Re: I'd like to discuss scaleout at PGCon

2018-05-31 Thread MauMau
2018-05-31 22:44 GMT+09:00, Robert Haas : > On Thu, May 31, 2018 at 8:12 AM, MauMau wrote: >> Oh, I didn't know you support FDW approach mainly for analytics. I >> guessed the first target was OLTP read-write scalability. > > That seems like a harder target to me, because y

Re: I'd like to discuss scaleout at PGCon

2018-05-31 Thread MauMau
we need to both continue to improve some > of these major new features we've added and at the same time keep > introducing even more new things if we want to continue to gain market > share and mind share. I hope that features like scale-out and also > zheap are going to help us continue to whittle away at the gap, and I > look forward to seeing what else anyone may have in mind. Definitely. I couldn't agree more. Regards MauMau

I'd like to discuss scaleout at PGCon

2018-05-26 Thread MauMau
(Oracle / PostgreSQL ratio is 5.1) Regards MauMau

Re: Truncation failure in autovacuum results in data corruption (duplicate keys)

2018-04-18 Thread MauMau
. Regards MauMau

Truncation failure in autovacuum results in data corruption (duplicate keys)

2018-04-18 Thread MauMau
-- However, I have a question. How does the truncation failure in autovacuum lead to duplicate keys? The failed-to-be-truncated pages should only contain dead tuples, so pg_dump's table scan should ignore dead tuples in those pages. Regards MauMau

Re: [bug fix] ECPG: freeing memory for pgtypes crashes on Windows

2018-03-25 Thread MauMau
this doesn't need more profound review so I'll mark this Ready For Commit after confirming the amendment. I'm sorry for my late reply. Last week I was off for a week. And thank you for your review. All modifications are done. Regards MauMau pgtypes_freemem_v3.patch Description: Binary data

Re: Changing default value of wal_sync_method to open_datasync on Linux

2018-03-24 Thread MauMau
From: Robert Haas I also said it would be worse on spinning disks. Also, Yoshimi Ichiyanagi did not find it to be true even on NVRAM. Yes, let me withdraw this proposal. I couldn't see any performance difference even with ext4 volume on a PCIe flash memory. Regards MauMau

Re: [RFC] What would be difficult to make data models pluggable for making PostgreSQL a multi-model database?

2017-12-03 Thread MauMau
is necessary. Regards MauMau