William Dutton
William Dutton
What's the Postgres supported version range that 2.10, 2.11 should now be supporting?
JSON data is a hard one due to the ability to have objects in objects and no idea on how the schema to flat table should be read. Are you...
So would these test cases be what your after for importing into the datastore? ```json [ {"Name": "Alice", "Age": 30, "Occupation": "Engineer"}, {"Name": "Bob", "Age": 25, "Occupation": "Designer"}, {"Name": "Charlie",...
When the datastore is used in a highly visible app, its better to keep the old datastore table then to have a broken table/datastore breaking downstream usage. The second reason...
Looking into this, this only affects the CLI Click commands. ```python @xloader.command() @click.argument(u'dataset-spec') @click.option('-y', is_flag=True, default=False, help='Always answer yes to questions') @click.option('--dry-run', is_flag=True, default=False, help='Don\'t actually submit any resources') @click.option('--queue',...
Hi @cgoldshtein, It may be needing to be in two parts. A hook in xloader (and possibly for parity inside datapusher also) and a new extension with proposal to have...
Hi @cgoldshtein , For your new plugin, please borrow the https://github.com/ckan/ckanext-xloader/blob/master/.github/workflows/publish.yml and setup pypi auto publish for yourself. You can use an org for the project and when public is...
based on your error code, did you include an extra ' in your api key config? are you doing a developer install or a pipy install? https://github.com/ckan/ckanext-xloader?tab=readme-ov-file#developer-installation
did you resovle your issue
Starting CKAN 2.10 you will need to set an API Token to be able to execute jobs against the server: ``` ckanext.xloader.api_token = ckan config-tool test.ini "ckanext.xloader.api_token=$(ckan -c test.ini user...