dongma commented on issue #2291: URL: https://github.com/apache/incubator-hugegraph/issues/2291#issuecomment-1687364080
> @DanGuge could take a look for it? Better to make the vertex/edge ID length configurable Thanks for your reply, I had resolved this problem last night [憨笑] . The reason why failed to write record to hugegraph server is the Text(String) type property value length was limit to 65535. After check my data rows, one property value' length of few rows is over that 65535, after limit property length, the write operation is success. Below is the full logic to check property value length : <img width="1065" alt="image" src="https://github.com/apache/incubator-hugegraph/assets/24204526/f831ff53-a3b0-4e66-aa1c-fab2baec2896"> <img width="821" alt="image" src="https://github.com/apache/incubator-hugegraph/assets/24204526/7e693373-8d79-49d2-998c-613324d6d7fb"> <img width="1049" alt="image" src="https://github.com/apache/incubator-hugegraph/assets/24204526/599f1349-704c-4ebf-884f-5bee6c1ea26f"> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
