info
info

Reputation: 21

R character strings are limited to 2^31-1 bytes

I am working with neo4r library in R. When i use this function

call_neo4j(con, type = "graph")

I get the error

Fehler in readBin(content, character()) :  R character strings are limited to 2^31-1 bytes

Anyone have any idea about it?

Upvotes: 2

Views: 5412

Answers (1)

Biblot
Biblot

Reputation: 705

As the error would suggest, you reached the limit on the size of character strings. From the documentation:

The number of bytes in a character string is limited to 2^31 - 1 ~ 2*10^9, which is also the limit on each dimension of an array.

Without more information, we can't help you solve this problem. See here to create a minimal reproducible example that could help us solve your problem.

Upvotes: 0

Related Questions