-
Notifications
You must be signed in to change notification settings - Fork 427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please work around limitation of 100 or 50 fields for the function parameters such as agtype_build_map and internally invoked CREATE #1840
Comments
@MironAtHome I can try to look into this tomorrow, time permitting. I recall something, somewhere, about this limit and creating a workaround. But, it's been a while. Edit: Related to PR #1001 |
@MironAtHome It looks like |
@MironAtHome PR #1901 will fix this for objects, but not for SET. It is currently in review. |
Just tried the fix. |
@MironAtHome This is only fixed for agtype_build_map in the branches and not for SET. The releases don't have the fix. You would need to build from one of the branches. |
Took changes from branch PG16. |
Have ran above scripts on the server with the build, which included fixes from branch PG16 and all completed successfully.
without having to split map building call into many - many "add_agtype(m, new_set)" calls. |
I have put together function |
@MironAtHome Unfortunately, there is nothing that I can do to change PG's limit on function parameters. The only reason that I was able to "fix" it for some Cypher commands is because the transform logic allows us to code around it, because we can control how to build the function parameter list. But, we still have to look at each case in order to do that. Using a function directly will always run up against that limit. |
I hope this function jsonb_to_agtype_map_worker for branch PG14 here is a good starting point to start adding functions that are able to add functionality, without running into function limitation `create extension if not exists age; SELECT jsonb_to_agtype_map(to_jsonb(t)) from ( |
Branch was updated with one more function
Please see if the two functions, datum_to_agtype_map and jsonb_to_agtype_map can be promoted to age master. |
This issue is stale because it has been open 60 days with no activity. Remove "Abondoned" label or comment or this will be closed in 14 days. |
This issue was closed because it has been stalled for further 14 days with no activity. |
Is your feature request related to a problem? Please describe.
When working with data having vertice property count in excess of 100 Postgres functions exhibit build - in limit of 100 arguments.
Examples:
function agtype_build_map treats each parameter as separate, map field name and map field value, hence, it limits input to 50 fields / call. To scale number of fields it can handle one has to continuously invoke constructs such as
agtype_add(
CypherInputParam_Var
, agtype_build_map(
/* 54 / field_name_54, field_value_54
/ 55 */ field_name_55, field_value_55
....
similarly when CREATE invoked subsequently in the context of call to cypher function and CypherInputParam_Var as an input parameter to overcome per call limit of parameters/properties requires to initially create subset of 50 fields and subsequently call constructs such as
CREATE (v:<vertice_name>
{... properties 1,2,3 ...
})
SET v += { properties 51... 100}
SET v += { properties 101... 150}
....
This limitation is grandfathered from functions servicing postgresql function check when using default build, as per Appendix K. PostgreSQL Limits document:
However, I am not 100% convinced that custom compilation of Postgres is the right approach in this case.
In an ideal world it would be nice if Age used under the hood an limit compatible with limit of Age, which I believe is 65,535 properties per vertice ( please correct me if I am wrong ).
Describe the solution you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: