Bowen Ding
Bowen Ding
@cgivre Does Drill support connections from IPv6 sockets? Is it enabled by default or do I have to toggle some configuration items? The "protocol family unavailable" error could be due...
The `connection rejected: /127.0.0.1:31011` failure was because sometimes Drill does not bind to the default ports (`31010, 31011, 31012`). It can bind to later ports like `31013, 31014, 31015`, hence...
> @dbw9580 I believe Drill does support connections from IPv6 sockets. There was a recent PR for this in fact: (#1857) but I'm not sure if that is directly relevant....
@cgivre I tried to set the ports to their default values in c090a43, but it did not seem to do the trick. Why is that?
We cannot remove this right now. 1. the client relies on the master to retrieve a list of live workers; 2. the master considers a worker to be alive if...
This is blocked by https://github.com/Alluxio/alluxio/pull/17736.
> Fetched failed when checking encryption key the decryptor was trying to fetch and decrypt a file located at `${gallery_url}/static/keycheck.txt`, to determine whether the password provided by the user is...
I just saw this PR https://github.com/Alluxio/alluxio/pull/15511. Do you think it make sense to add an option to this commmand that controls whether to output file ids or paths? I can...
Same issue here. It seems to fail to differentiate between zh-CN(Simplified Chinese) and zh-TW(Traditional Chinese).
> the issue is because the variable is being appended with += instead of being set with = Yes, replacing `+=` with `=` won't cause the error to occur. I...