[Maria-discuss] New Question: ST_AsGeoJSON Support

2016-06-14 Thread AskMonty KB
Hello, A new question has been asked in "Geographic Features" by jerome_savin. Please answer it at http://mariadb.com/kb/en/st_asgeojson-support/ as the person asking the question may not be subscribed to the mailing list. Hi, Are there some plans to support ST

Re: [Maria-discuss] Odd behavior with query and connection pool

2016-06-14 Thread Diego Dupin
Hi, To answer your question about performance using pool versus not using pool : There will be some difference : ideal pool implementation presents a Connection instance to the application that is indistinguishable from a "fresh" Connection obtained directly from the driver, so pool add have some

Re: [Maria-discuss] Odd behavior with query and connection pool

2016-06-14 Thread Justin Swanhart
Hi, A connection pool should not affect query performance. My guess is that the a) connection pool doesn't have enough connections, so the query is waiting in the pool, or b) that the query is slow under concurrency. The easiest way to debug this is using the "slow query log". It will log each

[Maria-discuss] R: Odd behavior with query and connection pool

2016-06-14 Thread Federico Razzoli
Weird issue. I'm trying to figure out how the connection pool can add an overhead to a single query. The only case I can think is if you use a network storage engine (Federated, Connect, Spider) pointing to tables on localhost. Is this the case? More likely... are you sure this problem is cause