-
Notifications
You must be signed in to change notification settings - Fork 284
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
Multiple steampipe cli executions share environment information #4155
Comments
This is not ideal, but is a side effect of a design decision we made for ease of use. Internally there are two parts to the Steampipe CLI - a client and a server. When you run When you run
This approach makes steampipe query easy to use and allows you to run multiple clients in parallel. The negative effect is that the "temporary service" configuration is based on the first client to start it. This is what you are seeing. If you are using multiple AWS profiles I highly recommend you set them up as different connections in steampipe - then you can reuse the same service and query both of them by just changing the search path - https://steampipe.io/docs/guides/search-path But, as a workaround if you really want environment variable based control, you can use the |
This is perfectly understandable once you know how the product works. But for the user who doesn't know, or is concentrating on the work (rather than the tool) this behaviour is surprising and frustrating. As part of the core design, I recognize this will be hard to change, but if it can not be changed easily, then consider ways to make the behaviour more visibile. Potential ideas:
This last one especially resonates with my experience, as I troubleshot the inconsistent results for 2+ hours. The forgotten console was three hours old, and a 5m timeout on the backend server would have shut down the conflicting server before the behaviour even appeared. |
I think steampipe should listen to a random local socket on each execution by default for standalone queries. This solves a few issues:
|
Unfortunately @shaicoleman, running two instances of steampipe at the same time (e.g. on different ports) means running two postgres instances simultaneously. This is only possible with two separate installation directories to store all of the postgres data files, configuration, etc. Doing this on-demand will take time to setup and create a lot of noise / storage on the machine. Providing more feedback through the UI about reuse as @jlm0x017 suggests seems like the best option at this point I think? |
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 30 days. |
This issue was closed because it has been stalled for 90 days with no activity. |
Describe the bug
If I start a steampipe query session in one terminal window, it's environment is used by steampipe query executions in other terminals.
Steampipe version (
steampipe -v
)Steampipe v0.21.8
To reproduce
open two terminal windows.
from the first, execute
AWS_PROFILE=env1 steampipe query
; leave this openfrom the second terminal window execute
AWS_PROFILE=env2 steampipe query "select count(*) from aws_ec2_instance;"
. The instance count will be from env1.kill the client in window 1, and repeating the query in window 2 will now work.
Expected behavior
I would expect simultaneous steampipe runs to use their respective environment variables
Additional context
The second window will successfully execute
steampipe query "select count(*) from env1.aws_ec2_instance;"
, providing the count for env1. However, this is a mask to the problem and an inconvenient workaround. If I'm writing multiple joins, I'd like not to have to specify the environment on each table name; I'd instead like to rely on the local value of AWS_PROFILE to be honored.The text was updated successfully, but these errors were encountered: