Ian Ward

Results 431 comments of Ian Ward

Creating a controller that pages through the `package_search` results and streams out a CSV would be fairly straightforward. It would look a lot like the existing datastore "dump" controller https://github.com/ckan/ckan/blob/master/ckanext/datastore/controller.py#L40

Streaming data on request is a nice approach too. That gives you live data and doesn't multiply your storage requirements. edit: I've found openpyxl dumps XLSX data quite efficiently and...

Here's a simple fix that reduces memory usage and allows large CSV dumps from datastore: https://github.com/ckan/ckan/pull/3344

A "Stale Query CSV" indicator should be easy to implement as part of the dataset search results and dataset view pages. I'm assuming a global configuration option for what age...

How about we add a `ckan.static_url` option to the config file. If present then url_for_static would prefix static URLs with that domain and/or partial path, and the fanstatic middleware that...

How about returning the commit id for ckan and github URL and commit id for every extension installed when they can be determined? I've wanted to verify the running versions...

@davidread yeah, sounds like there's no violation right now but if we do add this feature then users might be in violation if they remove it.

@amercader that's great! I wonder how I missed that.

+1 on CKAN datastore API support, or even a CKAN extension that uses Dat instead of CKAN's datastore.

@smotornyuk great idea. Sounds like an easy fix to bring that 13% down to 1%.