-
Notifications
You must be signed in to change notification settings - Fork 3k
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
fix(lineage): Fix issue where large lineage fetches trigger 414 URI too long #2462
fix(lineage): Fix issue where large lineage fetches trigger 414 URI too long #2462
Conversation
-Djava.security.auth.login.config=$CONF_DIR/jaas.conf | ||
-Dlogback.configurationFile=$CURRENT_DIR/logback.xml | ||
-Dlogback.debug=true | ||
-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
intentionally committing this file to ease debug dev experience from now on.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you!
…FixLineageOverloadingGMS
// not called | ||
} | ||
|
||
private static int batchSize = 25; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not configurable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall looks fine!
I would like to see that batch size configurable though. Is there some way to accomplish that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Issue here: #2447
Ideally, we could send these ids as post data. However, restli client does not currently support this. As a temporary solution we can batch get our entity ids in size-limited batches.
Checklist