Re: [Geoserver-users] image mosaic with GeoServerRESTPublisher

2015-06-18 Thread Bessette-Halsema, Dominique E
One last question about the image mosaic. When I remove the geoserver workspace the database tables for the granule index are not removed. Are they supposed to? How do I remove the database tables Dominique From: dany.geoto...@gmail.com [mailto:dany.geoto...@gmail.com] On Behalf Of Dani

Re: [Geoserver-users] Help with tuning geoserver for 1 million PostGIS table

2015-06-18 Thread Simone Gadenz
Thank you Simone, I'll look into this, I did not really perform any PG optimization for large dataset. Might be the game changer for this case. Cheers S 2015-06-18 19:49 GMT+02:00 Simone Giannecchini < simone.giannecch...@geo-solutions.it>: > Ciao Simone, > I see two sources of problems: > > -

[Geoserver-users] GeoServer 2.6.4 Released

2015-06-18 Thread Ben Caradoc-Davies
http://blog.geoserver.org/2015/06/18/geoserver-2-6-4-released/ GeoServer 2.6.4 Released The GeoServer team is pleased to announce the release of GeoServer 2.6.4 . Download bundles are provided (bin

Re: [Geoserver-users] Help with tuning geoserver for 1 million PostGIS table

2015-06-18 Thread Simone Giannecchini
Ciao Simone, I see two sources of problems: -1- how do you configure the connections to the DB? I would configure the pool to have enough connections to cope with initial bursts of load -2- Did you give enough memory to postgis -3- Did you configure postgis for performance? Standard set up is not

Re: [Geoserver-users] Help with tuning geoserver for 1 million PostGIS table

2015-06-18 Thread simone gadenz
Thanks for the feedbacks. I have already clustered the points for region, province and municipalities in different PostGIS layers, that are displayed at smaller zoom levels. The viewer display points at province scale and few hundreds points per map extent are rendered. I have not tried the Mar

Re: [Geoserver-users] *****SPAM***** Re: Help with tuning geoserver for 1 million PostGIS table

2015-06-18 Thread Andrea Aime
Hi, another thing that might speed up rendering many points is installing the Marlin renderer, if you haven't done so already. I bet other optimizations can be made by changing the rendering code (assuming you have dynamic filters, caching and pre-generalization might not be an option), but one wou

Re: [Geoserver-users] Help with tuning geoserver for 1 million PostGIS table

2015-06-18 Thread Jonathan Moules
Yep, you *really* don’t want to be rendering a million points at once. Assuming you’re only displaying a subset (a few thousand), make sure you have a spatial index on your PostGis dataset, so that GeoServer can pick out the rights points that need rendering quickly. From: Simone Giannecchini

Re: [Geoserver-users] Watermarking

2015-06-18 Thread Jonathan Moules
Hi Vic, I know this has come up before, but a quick search isn’t finding it. Watermarking is fairly easy. The way I did it if memory serves; - Create a shapefile covering the entirety of the UK. - Style the shapefile with the watermark so that only the watermark is visible and some

Re: [Geoserver-users] Help with tuning geoserver for 1 million PostGIS table

2015-06-18 Thread Simone Giannecchini
Ciao Simone, if you are render 1M points altogheter via WMS with no caching then I believe you might have problems anyway. If the data is static you may want to use clustering (as in render a single point for neighbooring points depending on the resultion) + caching. Rendering 1M points on the fly

Re: [Geoserver-users] GeoTIFF, ImageMosaic and NODATA

2015-06-18 Thread Tore Halset
Done https://osgeo-org.atlassian.net/browse/GEOS-7077 Regards, Tore Halset. > On 08 Jun 2015, at 16:20, Daniele Romagnoli > wrote: > > Hi Tore, > do you have any chance to open a JIRA with a sample file reporting the issue? > I think it should preserve the NoData value so we need to investigat

Re: [Geoserver-users] Feature collection import into GeoServer through WPS

2015-06-18 Thread matteo.eccher
Hello Andrea, I think what I'm doing is not proper "chaining" because I don't use any URL inside my WPS. Just to be sure I am doing the right thing I'll briefly explain you the process. The WPS I created "chains" some WPS together in Java by using the ProcessFactory class. I call the Process.execu

Re: [Geoserver-users] Feature collection import into GeoServer through WPS

2015-06-18 Thread Andrea Aime
Hi Matteo, when you do the chaining, are you using the special URLs that will make GeoSeverver avoid calling onto itself using HTTP? It's "http://geoserver/wps";, and it's recognized to be the internal WPS, without the need to make extra network calls. Cheers Andrea On Thu, Jun 18, 2015 at 11:40

Re: [Geoserver-users] Feature collection import into GeoServer through WPS

2015-06-18 Thread matteo.eccher
Thanks for the reply, I forgot to mention that I also tried to call the WPS by a POST request from a client on the same remote machine. The error is almost the same, except the request url: Proxy Error The proxy server received an invalid response from an upstream server. The proxy server could

Re: [Geoserver-users] Geoserver running under the HTTPS error

2015-06-18 Thread Robin Pradel
Hi, the geoserver needs to know the his external URL while generating the preview page. I think you should set the "Proxy Base URL" under "Settings > global" to https://geoserver.opendevelopmentmekong.net/geoserver This is the way I fixed this issue for me. Yours sincerely. M.Sc. Robin Pradel

Re: [Geoserver-users] Feature collection import into GeoServer through WPS

2015-06-18 Thread Andrea Aime
On Thu, Jun 18, 2015 at 10:32 AM, matteo.eccher wrote: > Proxy Error > > The proxy server received an invalid response from an upstream server. > The proxy server could not handle the request POST /geoserver/TestWfsPost. > > Reason: Error reading from remote server > > Apache/2.4.7 (Ubuntu) Serve

[Geoserver-users] Feature collection import into GeoServer through WPS

2015-06-18 Thread matteo.eccher
Dear all, I am having trouble trying to import a feature collection into GeoServer 2.5.2 through the usage of the WPS 'gs:Import'. In my WPS there are some chained process and at the end I would like to import the result of the operations, which I've checked and it's correct. When I run it on a lo