Github user karanmehta93 commented on the issue:
https://github.com/apache/phoenix/pull/315
> Isn't this as simple as changing QueryServer#main(String[]) to use
HBaseFactoryProvider.getConfigurationFactory().getConfiguration(); instead of
HBaseConfiguration.create()?
Yes I want to do that for sure here, and was also planning to file a Jira
for that, but seems like I get the change done here.
You also want me to set the value of `phoenix.client.metrics.tag` to `PQS`
right? For that to happen, I will need a factory, because no matter what conf
we pass to the tool, that one is not propagated to phoenix-core.
`QueryServicesOptions.withDefaults()` always asks the
`HBaseFactoryProvider.getConfigurationFactory().getConfiguration()` for the
values. Am I missing something here?
---