Replies: 2 comments
-
@howie6879 Thanks for the suggestion! Would you mind to submit a pull request for that feature? We welcome any kinds of colloberation and contribution from the community! |
Beta Was this translation helpful? Give feedback.
0 replies
-
No problem, my pleasure |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is your feature request related to a problem? Please describe.
When I needed to connect to a remote k8s cluster, I found that GS had no configurable parameters to do so
In the script session.py, at line 572:
Let's look at the
new_client_from_config
function:k8s allows developers to pass in the config_file parameter, but GS hides this parameter.
Describe the solution you'd like
I think the parameters of the function
new_client_from_config
can be configured by the developer in the Session class, just like:This allows us to easily load the k8s configuration:
Describe alternatives you've considered
Additional context
My current solution is to configure the environment variables as follows:
This way of writing causes that environment variables must be declared before the graphscope is imported, which is very inelegant.
Beta Was this translation helpful? Give feedback.
All reactions