Hi, On 17.03.18 18:32, William Markmann wrote:
1) Is it necessary to do the above in two steps, or can a Node be created and checked in with the VersionManager in one shot?
Yes, this is necessary. The JCR specification defines a checkin as a workspace operation, which can only operate on saved changes. That is, you must first save the node and only then you can check it in.
4) Is there anything inherent in the SegmentNodeStore that would decrease in performance as the repository grows?
I'm not exactly sure how your deployment looks like, but you may be storing the binary data in the tar files written by the SegmentNodeStore as well. This has an adverse effect on data locality and the general recommendation is to configure a separate DataStore for binary data.
Regards Marcel
