Skip to content
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

How to configure Impala to use SSL? #1381

Closed
sbradwell opened this issue Oct 20, 2016 · 1 comment
Closed

How to configure Impala to use SSL? #1381

sbradwell opened this issue Oct 20, 2016 · 1 comment
Labels
#bug:cant-reproduce Bugs that cannot be reproduced

Comments

@sbradwell
Copy link

sbradwell commented Oct 20, 2016

Hi, trying to work with secure impala connection, works fine against non secure, but when trying to connect using the extra field, getting "principal" not supported. Anyone configure SSL connection with kerberos principal on impala before?

{
    "metadata_params": {},
    "engine_params": {
        "connect_args": {
            "use_ssl" : "1",
                        "principal" : "impala/hostname.XXX.XXX@XXX.XXX.XXX",
            "user" : "user",
            "password" : "pass"
        }
    }
}
@mistercrunch mistercrunch changed the title Impala SSL How to configure Impala to use SSL? Oct 20, 2016
@mistercrunch mistercrunch added question #bug:cant-reproduce Bugs that cannot be reproduced labels Oct 20, 2016
@sbradwell
Copy link
Author

Got it, in case anyone is looking to do this, principal not required here. Used the following:

{
"metadata_params": {},
"engine_params": {
"connect_args": {
"use_ssl" : "true",
"auth_mechanism": "PLAIN",
"user" : "user",
"password" : "pass"
}
}
}

zhaoyongjie pushed a commit to zhaoyongjie/incubator-superset that referenced this issue Nov 17, 2021
…che#1381)

* Add a cumulative option to make a cumulative histogram

* also add in percentile in the hover popup

* fix: add precision to percentile label

* fix: formatting ES lint issues
zhaoyongjie pushed a commit to zhaoyongjie/incubator-superset that referenced this issue Nov 24, 2021
…che#1381)

* Add a cumulative option to make a cumulative histogram

* also add in percentile in the hover popup

* fix: add precision to percentile label

* fix: formatting ES lint issues
zhaoyongjie pushed a commit to zhaoyongjie/incubator-superset that referenced this issue Nov 25, 2021
…che#1381)

* Add a cumulative option to make a cumulative histogram

* also add in percentile in the hover popup

* fix: add precision to percentile label

* fix: formatting ES lint issues
zhaoyongjie pushed a commit to zhaoyongjie/incubator-superset that referenced this issue Nov 26, 2021
…che#1381)

* Add a cumulative option to make a cumulative histogram

* also add in percentile in the hover popup

* fix: add precision to percentile label

* fix: formatting ES lint issues
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
#bug:cant-reproduce Bugs that cannot be reproduced
Projects
None yet
Development

No branches or pull requests

2 participants