Re: [MarkLogic Dev General] Visualization tools for Marklogic semantics

2017-01-12 Thread Geert Josten
Hi Durai, Any tool that accepts a sparql endpoint would work. LodLive is one example, and we also played with VisJS. For both we have an angular component: http://grtjn.github.io/ml-lodlive-ng/#/ https://github.com/patrickmcelwee/ml-visjs-graph-ng Keep in mind that these are community efforts,

[MarkLogic Dev General] Visualization tools for Marklogic semantics

2017-01-12 Thread PavadaiDurai.Aroul
Hello Team, Is there any open source or free visualization tools available to visualize the Marklogic semantics data? Any pointers would be helpful here. Thanks, Durai. This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential a

Re: [MarkLogic Dev General] Query: While inserting existing data again

2017-01-12 Thread Erik Hennum
Hi, Bushan: You can make a PATCH request to insert, replace, or delete nodes within an existing document: http://docs.marklogic.com/REST/PATCH/v1/documents Other write requests replace the entire document or its metadata or both. Hoping that clarifies, Erik Hennum _

[MarkLogic Dev General] Query: While inserting existing data again

2017-01-12 Thread Bhushan Suryawanshi
Hi Guys, I am using MarkLogic8 along with REST API. I already have a document a.xml in the database with some content, but when we re-insert a.xml with updated content. I have following questions 1) Will MarkLogic upload the existing document? 2) Will MarkLogic merge the existing do

Re: [MarkLogic Dev General] How to get the number of records ingested by a MLCP hit

2017-01-12 Thread Sam Mefford
the Data Movement SDK is also available via the Early Access program or via github: https://github.com/marklogic/java-client-api/tree/4.0.0-EA4 Sam Mefford Senior Engineer MarkLogic Corporation sam.meff...@marklogic.com Cell: +1 801 706 9731 www.marklogic.com This e-mai

Re: [MarkLogic Dev General] sort-order is not working as expected

2017-01-12 Thread Erik Hennum
Hi, Shiv: The "options" key should be in the object contained by the "search" key, not in the object contained by the "$query" key. To put it another way, the "options" key should be a peer to the "$query" key, not a child. The basic structure: {"search":{ "$query": {...},

Re: [MarkLogic Dev General] How to get the number of records ingested by a MLCP hit

2017-01-12 Thread Dave Cassel
An additional thought for the benefit of the list archive: in MarkLogic 9, you should be able to get this functionality through the Data Movement SDK (currently still in development). -- Dave Cassel, @dmcassel Technical Community Manager Mark

[MarkLogic Dev General] Help on the XDMP- TREECACHEFULL exception.

2017-01-12 Thread Katama Reddy
Hi Team, We are facing issue on executing queries, below is the details. Issue - expanded cache gets full, a query fails with an XDMP- TREECACHEFULL exception. on the version 8.0 We have tried tuning query and  with pagination, but still facing the issue. Can you help on the solution to resolve

Re: [MarkLogic Dev General] How to get the number of records ingested by a MLCP hit

2017-01-12 Thread David Lee
Depending on your use case and scenarios, mlcp is an application layer built on XCC and HDFS libraries, as well as application logic. If you like the feature set of mlcp and just want to call it from java then In would recommend as did Sam to call it as a sub process (Runtime.exec()). I do *no