[MarkLogic Dev General] Memory Exhausted while merging

2014-03-25 Thread judie pearline
All, While i was loading the data i got the following error XDMP-FORESTERR: Error in merge of forest proddata_forest: XDMP-MEMORY: Memory exhausted Then i tried to restart the forest and got the following error XDMP-FORESTERR: Error in startup of forest proddata_forest: SVC-MAPINI: Mapped

Re: [MarkLogic Dev General] Memory Exhausted while merging

2014-03-25 Thread Clark Richey
I think you are out of memory, not disk space. Clark Richey, CTO FactGem 240-252-7507tel:240-252-7507 cl...@factgem.commailto:cl...@factgem.com [cid:30676006-F7BA-4C7F-96A8-7EFEF5DDDE5B] Need immediate assistance? Please try: Cate Downing, Assistant

Re: [MarkLogic Dev General] number of triples

2014-03-25 Thread John Snelson
The easy way is to use cts:count() and item-frequency with cts:triples(). But it's not very fast. The more complicated way is to turn on the SPARQL Value Frequencies trace event, which will output something like this: 2014-03-21 17:29:10.386 Info: [Event:id=SPARQL Value Frequencies]

Re: [MarkLogic Dev General] number of triples

2014-03-25 Thread Clark Richey
Thanks! Clark Richey, CTO FactGem 240-252-7507tel:240-252-7507 cl...@factgem.commailto:cl...@factgem.com [cid:30676006-F7BA-4C7F-96A8-7EFEF5DDDE5B] Need immediate assistance? Please try: Cate Downing, Assistant c...@factgem.commailto:c...@factgem.com

Re: [MarkLogic Dev General] number of triples

2014-03-25 Thread John Snelson
To clarify - I forgot to mention that the trace event outputs to the log when a SPARQL query is executed. On 25/03/14 12:01, Clark Richey wrote: Thanks! Clark Richey, CTO FactGem 240-252-7507 tel:240-252-7507 cl...@factgem.com mailto:cl...@factgem.com Need

[MarkLogic Dev General] false match on cts:element-value-query

2014-03-25 Thread Gary Larsen
Hi, Getting a false match on: cts:element-value-query(xs:QName('modelPath'), 'Folders].[Orders].[OrderDate]') The value that it is matching on is: '[Folders].[Orders].[OrderDate]' (starting bracket) Any reason why the bracket is being ignored? (using version 6.0-4.1)

Re: [MarkLogic Dev General] false match on cts:element-value-query

2014-03-25 Thread Will Thompson
Do you have the element-value-positions index turned on (which, IIRC, may also require that word-positions and element-word-positions be enabled)? Depending on the structure of your documents, I think this may be necessary for completely accurate unfiltered queries. -W On Mar 25, 2014, at

Re: [MarkLogic Dev General] false match on cts:element-value-query

2014-03-25 Thread Michael Blakeley
Element-value queries are hash lookups, and I believe the hash is punctuation-insensitive. Have you tried adding the punctuation-sensitive or exact options? If that doesn't work, plan B is a range index: type=string, codepoint collation. The codepoint collation is both the fastest and the

Re: [MarkLogic Dev General] AWS S3 Function Library?

2014-03-25 Thread Joe Wicentowski
Such a wealth of AWS / S3 libraries! I had used Dennis Knochenwefel's XAWS libraries, originally developed for Zorba, formerly hosted on his xquery.me site (not available to me) but apparently now posted to GitHub: https://github.com/dknochen/xaws Joe On Mon, Mar 24, 2014 at 7:00 PM, Michael

[MarkLogic Dev General] (no subject)

2014-03-25 Thread Ben Tullis
benjamintul...@yahoo.com ___ General mailing list General@developer.marklogic.com http://developer.marklogic.com/mailman/listinfo/general

[MarkLogic Dev General] License Expiry

2014-03-25 Thread Gene Thomas
Expiry April 23, 2014    I have a customer with ML 4.2 Enterprise Edition with the above Expiry date. I am getting mixed information about what happens when the expiry date occurs. I believe those servers will stop functioning after that date. Does anyone have experience with license expiry

Re: [MarkLogic Dev General] License Expiry

2014-03-25 Thread Michael Blakeley
With 4.2 through ML6 I believe the server will run, but functionality will be sharply limited. The only thing you can count on doing is updating the license key at 8001. Other queries may not run, and updates will probably throw an error. ML7 is more relaxed, and merely warns you about the bad

Re: [MarkLogic Dev General] License Expiry

2014-03-25 Thread Gene Thomas
Thank you Mike. They are in the process of building out an ML 7.x environment now. It's my understanding the the custom app-servers that have been implemented in the 4.2 environment will stop working when the expiry date passes. Do you know if that's true or not?   Gene

Re: [MarkLogic Dev General] false match on cts:element-value-query

2014-03-25 Thread Gary Larsen
Tried some things and still have false matches: - 'exact' and 'punctuation-insensitive' options - 'filtered' or 'unfiltered' in cts:search() makes no difference Removed all brackets and still getting a match: 'Folders.Orders.OrderDate' matches on '[Folders].[Orders].[OrderDate]'