Re: Re: How to Use Fuseki Backup API

2022-11-27 Thread Lorenz Buehmann
does it work with setting the encoding in curl maybe like with curl -H 'Accept-Encoding: gzip, deflate' ? On 27.11.22 22:21, Tim McIver wrote: Thanks Andy.  I probably won't have a large amount of data for some time but I can imagine getting a timeout or other error if there is a huge amount

Re: How to Use Fuseki Backup API

2022-11-27 Thread Tim McIver
Thanks Andy.  I probably won't have a large amount of data for some time but I can imagine getting a timeout or other error if there is a huge amount of data.  Can it be returned compressed? Tim On 11/27/22 13:53, Andy Seaborne wrote: On 27/11/2022 18:28, Tim McIver wrote: Thanks Bruno! 

Re: How to Use Fuseki Backup API

2022-11-27 Thread Andy Seaborne
On 27/11/2022 18:28, Tim McIver wrote: Thanks Bruno!  Yeah, that tracks since I know that LinkedDataHub and to be clear - provided by AtomGraph, not the Apache Jena project. uses the "no UI" version

Re: How to Use Fuseki Backup API

2022-11-27 Thread Martynas Jusevičius
On Sun, Nov 27, 2022 at 7:20 PM Bruno Kinoshita wrote: > > Ah, at the top of this page: > https://jena.apache.org/documentation/fuseki2/fuseki-main#fuseki-docker > > It says: "Fuseki main is a packaging of Fuseki as a triple store without a > UI for administration." The coupling between the UI

Re: How to Use Fuseki Backup API

2022-11-27 Thread Tim McIver
Thanks Bruno!  Yeah, that tracks since I know that LinkedDataHub uses the "no UI" version but I hadn't realized that it did not come with the admin functions. So a follow up question would be: can I still

Re: How to Use Fuseki Backup API

2022-11-27 Thread Bruno Kinoshita
Ah, at the top of this page: https://jena.apache.org/documentation/fuseki2/fuseki-main#fuseki-docker It says: "Fuseki main is a packaging of Fuseki as a triple store without a UI for administration." And further down: "The main server does not depend on any files on disk (other than for databases

Re: How to Use Fuseki Backup API

2022-11-27 Thread Bruno Kinoshita
I got the same result following the docs for the Docker compose installation: https://jena.apache.org/documentation/fuseki2/fuseki-main#fuseki-docker Adding --update didn't solve it. So there might be something that needs to be enabled in the dataset assembler configuration when you create the

Fwd: How to Use Fuseki Backup API

2022-11-27 Thread Tim McIver
It's not working for me.  I even tried doing it from the fuseki container.  It seems this image does not have curl so I tried wget using 'wget http://localhost:3030/$/backup/ds --post-data ""'. Again, I get a 404. Do the admin endpoints have to be specifically enabled?  Or could they have

Re: How to Use Fuseki Backup API

2022-11-27 Thread Bruno Kinoshita
Hi Tim, I am not using a container, but I just tested the latest version from Git on Eclipse, and tested the endpoints with curl to query and backup. Maybe your endpoint URL is missing something? 1. Create ds in-memory dataset 2. Load some dummy data 3. curl a query: $ curl

Re: How to Use Fuseki Backup API

2022-11-27 Thread Tim McIver
I should mention also that the Docker image that I'm using in this case comes from here . On 11/27/22 11:43, Tim McIver wrote: Hello, I'd like to backup my Fuseki data using the web API.  I found documentation about how to do that here

How to Use Fuseki Backup API

2022-11-27 Thread Tim McIver
Hello, I'd like to backup my Fuseki data using the web API.  I found documentation about how to do that here . But when I try use the listed endpoints, they all result in a 404.  I'm using curl from a container